views:

32

answers:

2

Is there a tool, macro or plugin that can generate a method or function body automatically from a declaration in a header file? I have tried Intellisense and Refactor! 3.0.5 which both only seem to work with C#.

+4  A: 

You could use Visual Assist. But it is a commercial tool.

Cătălin Pitiș
+1 for *Visual Assist X*
mosg
A: 

If your header file format is regular enough (run it through a formatter), it should be two global search and replaces, then run it through the formatter.

Pete Kirkham