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

c++ - Convert big endian to little endian when reading from a binary file -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

unicode - Are email addresses allowed to contain non-alphanumeric characters? -