|
-
August 13th, 2008, 03:56 AM
#1
Need something like Doxygen but with additional tags
I have the following situation: I have a lot of C++ sources with embedded documentation that is LIKE to .NET MS standard. It uses tags <summary>, <param>, <returns>:
/// <class name=MyClass>
/// <summary>
/// The class does ....
/// </summary>
/// </class>
class MyClass
{
/// <summary>
/// This is description of the function f1
/// </summary>
/// <param name="arg1">
/// This is description of the argument arg1
/// </param>
/// <returns>
/// This is description of value returned by function f1
/// </returns>
bool f1(bool arg1)
{
...
}
...
}
I need some documentation system that could scan the sources anf generate documenation (in HTML format). Doxygen cannot do this - it recognizes only <summary> and does not recognize <param>, <returns>. Sandcastle could do that if it was .NET; but this is C++.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|