c++ - Generate Doxygen Comments -


i generating large amount of code, , need make match specific coding standard. looking command line program pass file, , it'll automatically add doxygen style comments parameters , return values, etc.

int dosomething(int p1, int p2, int p3) {     return 42; } 

would become like

/**     @param p1     @param p2     @param p3     @return */ int dosomething(int p1, int p2, int p3) {     return 42; } 

any suggestions? know many ides automatically if type /** , hit enter, on whole code base @ once.


Comments

Popular posts from this blog

php - Calling a template part from a post -

Firefox SVG shape not printing when it has stroke -

How to mention the localhost in android -