diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-11-25 18:56:18 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-11-25 18:56:18 (GMT) |
commit | cce8b9505201c95443798341d3d6176922db9253 (patch) | |
tree | 6643370adedf0cbaac88d674978bd44175ab1475 /addon/xmlparse/doxmlintf.h | |
parent | c736b03f16a88b6654ff9c1ae680e46b86e50218 (diff) | |
download | Doxygen-cce8b9505201c95443798341d3d6176922db9253.zip Doxygen-cce8b9505201c95443798341d3d6176922db9253.tar.gz Doxygen-cce8b9505201c95443798341d3d6176922db9253.tar.bz2 |
Release-1.2.12-20011125
Diffstat (limited to 'addon/xmlparse/doxmlintf.h')
-rw-r--r-- | addon/xmlparse/doxmlintf.h | 10 |
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: |