Automatically generate C++ file from header?
I have a bunch of C++ header files with various class and function declarations. So far, when I've been writing the C++ source file implementations of the declared classes and functions, I've been manually: Copying the declarations from the header file to the corresponding source file. Deleting "class classname {" and the matching "};" Adding "classname::" onto the names of all the class functions. Replacing the semicolons after the function declarations with "{}". Deleting the keywords "virtual" and "static". Only after all that work, which doesn't really do anything, can I actually go about