c++ - Any cross platform way to build cpp skeleton from a header? -
this question has answer here:
i'm tired of copy pasting header cpp file hacking @ until in correct form. has made program read header file , make corresponding cpp skeleton? need cross platform or bare minimum works on linux. vim plugin acceptable.
example
class { public: int dosomething( int number ); }
would produce following file
int a::dosomething( int number ) { ; }
Comments
Post a Comment