diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2002-06-30 18:58:53 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2002-06-30 18:58:53 (GMT) |
commit | 977ad9d3ec7dff388b8be849ae4a596ae5cd3ad4 (patch) | |
tree | 0b5acf9f52c1beacbf70e4bd2060a1b7d4d832b7 /src/definition.h | |
parent | 54bcd31ff103383c6c75ed87b00f846ec29b8040 (diff) | |
download | Doxygen-977ad9d3ec7dff388b8be849ae4a596ae5cd3ad4.zip Doxygen-977ad9d3ec7dff388b8be849ae4a596ae5cd3ad4.tar.gz Doxygen-977ad9d3ec7dff388b8be849ae4a596ae5cd3ad4.tar.bz2 |
Release-1.2.16-20020630
Diffstat (limited to 'src/definition.h')
-rw-r--r-- | src/definition.h | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/src/definition.h b/src/definition.h index 3ea3f56..91ebfd7 100644 --- a/src/definition.h +++ b/src/definition.h @@ -30,6 +30,7 @@ class MemberSDict; class MemberDef; class GroupDef; class GroupList; +class ListItemInfo; /*! The common base class of all entity definitions found in the sources. */ class Definition @@ -103,15 +104,17 @@ class Definition void addSourceReferencedBy(MemberDef *d); void addSourceReferences(MemberDef *d); - void setRefItems(int todoId,int testId,int bugId) - { - if (todoId!=0) m_todoId=todoId; - if (testId!=0) m_testId=testId; - if (bugId!=0) m_bugId=bugId; - } - int todoId() const { return m_todoId; } - int testId() const { return m_testId; } - int bugId() const { return m_bugId; } + //{ + // if (todoId!=0) m_todoId=todoId; + // if (testId!=0) m_testId=testId; + // if (bugId!=0) m_bugId=bugId; + //} + //int todoId() const { return m_todoId; } + //int testId() const { return m_testId; } + //int bugId() const { return m_bugId; } + void setRefItems(const QList<ListItemInfo> *sli); + int getSpecialListId(const char *listName) const; + const QList<ListItemInfo> *specialListItems() const; /*! returns the file in which this definition was found */ QCString getDefFileName() const { return m_defFileName; } @@ -165,7 +168,7 @@ class Definition QCString m_docFile; int m_briefLine; QCString m_briefFile; - + QList<ListItemInfo> *m_specialListItems; }; class DefinitionList : public QList<Definition> |