Now works end to end :) DoxygenTranslator restructured and placed into SWIG, Changes to java.cxx and

lang.cxx to accomodate this



git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2008-cherylfoil@10761 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Cheryl Foil 2008-08-15 23:36:18 +00:00
commit 4f2a579d6d
39 changed files with 5101 additions and 58 deletions

View file

@ -0,0 +1,18 @@
#include <list>
#include <string>
#include "DoxygenEntity.h"
#ifndef JAVADOCCONVERTER_H_
#define JAVADOCCONVERTER_H_
class JavaDocConverter
{
public:
JavaDocConverter();
string convertToJavaDoc(list <DoxygenEntity> entityList);
~JavaDocConverter();
void printSortedTree(list <DoxygenEntity> &entityList);
};
#endif /*JAVADOCCONVERTER_H_*/