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 ) {     ; } 

http://www.vim.org/scripts/script.php?script_id=2624


Comments

Popular posts from this blog

List<T>().Add problem C# -

Javascript natural sort array/object and maintain index association -