I'm tired of copy pasting the header into my cpp file then hacking at it until its in the correct form. Has anyone made a program to read a header file and make a corresponding cpp skeleton? I need something that is cross platform or bare minimum works on Linux. A vim plugin would also be acceptable.
Example
class A
{
public:
int DoSomething( int number );
}
Would produce the following file
int A::DoSomething( int number )
{
;
}