summaryrefslogtreecommitdiffstats
path: root/addon/xmlparse/doxmlintf.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2001-11-18 14:52:40 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2001-11-18 14:52:40 (GMT)
commitb89fdced7a88c9222faa0d646923bd09fb1765f8 (patch)
tree066b0bffed86445dbe3d494eaf31515f5b743e8c /addon/xmlparse/doxmlintf.h
parentf11235dce05843401bccaae6dfcee8f65ac9da1d (diff)
downloadDoxygen-b89fdced7a88c9222faa0d646923bd09fb1765f8.zip
Doxygen-b89fdced7a88c9222faa0d646923bd09fb1765f8.tar.gz
Doxygen-b89fdced7a88c9222faa0d646923bd09fb1765f8.tar.bz2
Release-1.2.12
Diffstat (limited to 'addon/xmlparse/doxmlintf.h')
-rw-r--r--addon/xmlparse/doxmlintf.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/addon/xmlparse/doxmlintf.h b/addon/xmlparse/doxmlintf.h
index 50acb79..cfff948 100644
--- a/addon/xmlparse/doxmlintf.h
+++ b/addon/xmlparse/doxmlintf.h
@@ -51,6 +51,20 @@ class IDoxygen
* of compounds found in the project.
*/
virtual QListIterator<ICompound> getCompoundIterator() const = 0;
+
+ /*! Returns a compound given its unique \a id. If you have a
+ * compound id this function is much more efficient than iterating
+ * over the compound list. Returns 0 if the id is not valid.
+ */
+ virtual ICompound *getCompoundById(const QString &id) const = 0;
+
+ /*! Returns a compound given its name (including the scope).
+ * Returns 0 if the name is not found in the project.
+ */
+ virtual ICompound *getCompoundByName(const QString &name) const = 0;
+
+ virtual IMember *getMemberById(const QString &id) const = 0;
+ virtual QList<IMember> *getMemberByName(const QString &name) const = 0;
};
/*! Factory method that creates an object model given an XML file generated