Progress towards a working pydoc implementation.

- Nodes are now passed to the documentation translator so that type information can be looked up and used in parameter comments.
- Class comments are now inserted as well as some method information,


git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2008-cherylfoil@10838 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Jamie Kirkpatrick 2008-09-12 11:17:39 +00:00
commit 0db7edfa63
11 changed files with 314 additions and 23 deletions

View file

@ -1,15 +1,17 @@
#include <list>
#include <string>
#include "DoxygenEntity.h"
#ifndef JAVADOCCONVERTER_H_
#define JAVADOCCONVERTER_H_
#include <list>
#include <string>
#include "swig.h"
#include "DoxygenEntity.h"
class JavaDocConverter
{
public:
JavaDocConverter();
string convertToJavaDoc(list <DoxygenEntity> entityList);
string convertToJavaDoc(Node *n, list <DoxygenEntity> entityList);
~JavaDocConverter();
void printSortedTree(list <DoxygenEntity> &entityList);
};