summaryrefslogtreecommitdiffstats
path: root/addon/xmlparse/doxmlintf.h
diff options
context:
space:
mode:
Diffstat (limited to 'addon/xmlparse/doxmlintf.h')
-rw-r--r--addon/xmlparse/doxmlintf.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/addon/xmlparse/doxmlintf.h b/addon/xmlparse/doxmlintf.h
index cfff948..1af6a60 100644
--- a/addon/xmlparse/doxmlintf.h
+++ b/addon/xmlparse/doxmlintf.h
@@ -4,6 +4,8 @@
#include <qlist.h>
#include <qstring.h>
+class IMember;
+
class IParam
{
public:
@@ -15,6 +17,14 @@ class IParam
virtual QString defaultValue() const = 0;
};
+class IMemberReference
+{
+ public:
+ virtual IMember *getMember() const = 0;
+ virtual QString getMemberName() const = 0;
+ virtual int getLineNumber() const = 0;
+};
+
class IMember
{
public: