formatting fixes after running make beautify plus a few manual formatting fixes
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2008-cherylfoil@11699 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
ad9eb0e0bb
commit
19d90026ef
17 changed files with 1805 additions and 1729 deletions
|
|
@ -15,20 +15,20 @@
|
|||
/*
|
||||
* A class to translate doxygen comments into JavaDoc style comments.
|
||||
*/
|
||||
class JavaDocConverter : public DoxygenTranslator
|
||||
{
|
||||
class JavaDocConverter : public DoxygenTranslator {
|
||||
public:
|
||||
JavaDocConverter() : debug( false ){}
|
||||
JavaDocConverter() : debug(false) {
|
||||
}
|
||||
virtual bool getDocumentation(Node *node, String *&documentation);
|
||||
|
||||
|
||||
protected:
|
||||
std::string formatCommand(std::string unformattedLine, int indent);
|
||||
std::string translateEntity(DoxygenEntity &doxyEntity);
|
||||
std::string javaDocFormat(DoxygenEntity &doxygenEntity);
|
||||
std::string translateSubtree( DoxygenEntity &doxygenEntity);
|
||||
|
||||
std::string translateEntity(DoxygenEntity & doxyEntity);
|
||||
std::string javaDocFormat(DoxygenEntity & doxygenEntity);
|
||||
std::string translateSubtree(DoxygenEntity & doxygenEntity);
|
||||
|
||||
private:
|
||||
bool debug;
|
||||
};
|
||||
|
||||
#endif /*JAVADOCCONVERTER_H_*/
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue