Click here to Skip to main content
15,884,472 members
Articles / Desktop Programming / MFC

Documenting Header Files

Rate me:
Please Sign up or sign in to vote.
2.95/5 (14 votes)
16 Sep 2003CPOL6 min read 63.7K   846   24  
This tool will turn a header file into an XML and/or HTML file for documentation purposes. The output may be merged with previously created or edited XML files.
// Helperfile for scanning the XML input

#if !defined(_MARKUPHELPERS_INCLUDED_)
#define _MARKUPHELPERS_INCLUDED_

#include "ModulHelpers.h"
#include "Markup.h"

// scan for the module part
void ScanXMLForModule(CMarkup& xmlMarkup, SModul* smModule);
void ScanXMLForGlobalVariables(CMarkup& xmlMarkup, SModul* smModule);
void ScanXMLForGlobalFunctions(CMarkup& xmlMarkup, SModul* smModule);
void ScanXMLForClasses(CMarkup& xmlMarkup, SModul* smModule);
#endif //_MARKUPHELPERS_INCLUDED_

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions