diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-08-06 15:11:00 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-08-06 15:11:00 (GMT) |
commit | ef99315d71b4b8e2c027033665bcc1244f43ca15 (patch) | |
tree | aa501b0916e827fee6032245628509acc64efbba /src/definition.h | |
parent | e139c0246413d3803028572dcafe9f065f4c9eab (diff) | |
download | Doxygen-ef99315d71b4b8e2c027033665bcc1244f43ca15.zip Doxygen-ef99315d71b4b8e2c027033665bcc1244f43ca15.tar.gz Doxygen-ef99315d71b4b8e2c027033665bcc1244f43ca15.tar.bz2 |
Release-1.2.0-20000806
Diffstat (limited to 'src/definition.h')
-rw-r--r-- | src/definition.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/definition.h b/src/definition.h index 232e632..cf59b0a 100644 --- a/src/definition.h +++ b/src/definition.h @@ -101,6 +101,10 @@ class Definition void writeSourceRefs(OutputList &ol,const char *scopeName); void addSourceReference(MemberDef *d); + void setRefItems(int todoId,int testId) { m_todoId=todoId; m_testId=testId; } + int todoId() const { return m_todoId; } + int testId() const { return m_testId; } + /*! returns the file in which this definition was found */ QCString getDefFileName() const { return defFileName; } /*! returns the line number at which the definition was found */ @@ -124,6 +128,8 @@ class Definition MemberList *sourceRefList; // list of entities that refer to this // entity in their definition MemberDict *sourceRefDict; + int m_testId; // id for test case + int m_todoId; // id for todo case }; |