Build Comment Web Pages And C++
-
As you will all surely know C# has this cool interface where you can put XML into the comment blocks of your code, and have it automatically generated as a web page of comments (especially using a tool like NDoc.) This gives you a nice class documentation web page heirarchy. I have a bunch of code that uses DOxygen style coding for inserting similar stuff into my C++ code, however, I want to use the same techinques in C++ that I do in C#. Specifically, I want to be able to type in the comments directly when I use the class view to insert code, and I want to be able to use NDoc to generate the pages. I know about DOxygen, in fact I use it, however, I want to get on the same page as C# with my C++ code for consistency and simplicity (and by way of the fact that surely future versions of Visual Studio will head that direction.) I suppose I want to use NDoc with C++. any thoughts or suggestions.