Creating .cpp files from .h files visual studio

后端 未结 5 927
-上瘾入骨i
-上瘾入骨i 2020-12-03 10:34

I am using Visual Studio 2008, and I was wondering if it was possible to create the .cpp files given the header files.

So if I have a .h files with a class and fun

5条回答
  •  隐瞒了意图╮
    2020-12-03 10:59

    Try my AtomineerUtils addin.

    It won't do an entire header, but can convert a single method's header declaration into an implementation in the related source file. It adds in the class name/namespaces as required, fills in a default implementation where possible (e.g. return(NULL)) and adds a Doxygen or DocXml doc-comment, incorporating and word-wrapping the comment from the header as the brief description if available.

提交回复
热议问题