Various small code fixes. Some unwanted code removed.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2012-doxygen@13551 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dmitry Kabak 2012-08-07 20:04:23 +00:00
commit cecc793782
7 changed files with 36 additions and 177 deletions

View file

@ -27,7 +27,7 @@ private:
/*
*Changes a std::string to all lower case
*/
std::string StringToLower(std::string stringToConvert);
std::string stringToLower(std::string &stringToConvert);
/*
* Finds out if a command exists (is a possible command)
@ -112,12 +112,6 @@ private:
* \n \\ \@ \& \$ \# \< \> \%
*/
int addSimpleCommand(std::string theCommand, std::list < DoxygenEntity > &doxyList);
/*
* NOT INCLUDED Simple Commands
* Format: @command
* Plain commands, such as newline etc, they contain no other data
*/
int ignoreSimpleCommand(std::string theCommand, std::list < DoxygenEntity > &doxyList);
/*
* CommandWord
* Format: @command <word>
@ -126,13 +120,6 @@ private:
* "relates", "namespace", "relatesalso","anchor", "dontinclude", "include", "includelineno"
*/
int addCommandWord(std::string theCommand, TokenList & tokList, std::list < DoxygenEntity > &doxyList);
/*
* NOT INCLUDED CommandWord
* Format: @command <word>
* Commands with a single WORD after then such as @b
* "copydoc", "copybrief", "copydetails", "verbinclude", "htmlinclude"
*/
int ignoreCommandWord(std::string theCommand, TokenList & tokList, std::list < DoxygenEntity > &doxyList);
/*
* CommandLine
* Format: @command (line)
@ -140,12 +127,6 @@ private:
* "addindex", "fn", "name", "line", "var", "skipline", "typedef", "skip", "until", "property"
*/
int addCommandLine(std::string theCommand, TokenList & tokList, std::list < DoxygenEntity > &doxyList);
/*
* NOT INCLUDED CommandLine
* Format: @command (line)
* Commands with a single LINE after then such as @var
*/
int ignoreCommandLine(std::string theCommand, TokenList & tokList, std::list < DoxygenEntity > &doxyList);
/*
* CommandParagraph
* Format: @command {paragraph}
@ -154,12 +135,6 @@ private:
* "deprecated", "date", "note", "warning", "version", "todo", "bug", "attention", "brief", "arg", "author"
*/
int addCommandParagraph(std::string theCommand, TokenList & tokList, std::list < DoxygenEntity > &doxyList);
/*
* CommandParagraph
* Format: @command {paragraph}
* Commands with a single LINE after then such as @var
*/
int ignoreCommandParagraph(std::string theCommand, TokenList & tokList, std::list < DoxygenEntity > &doxyList);
/*
* Command EndCommand
* Format: @command and ends at @endcommand
@ -207,9 +182,7 @@ private:
*/
int addCommandUnique(std::string theCommand, TokenList & tokList, std::list < DoxygenEntity > &doxyList);
/*
* The actual "meat" of the doxygen parser. This is not yet fully implemented
* with my current design- however the skeletal outline is contained in
* the file Skeleton
* The actual "meat" of the doxygen parser. Calls the correct addCommand* function
*/
int addCommand(std::string commandString, TokenList & tokList, std::list < DoxygenEntity > &doxyList);