diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2002-02-03 10:42:52 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2002-02-03 10:42:52 (GMT) |
commit | ac16b765b390a835d3f455691a2e3f6a0e94bd78 (patch) | |
tree | c6e72204c112ad8646d737990b93aa290c61c34c /src/entry.h | |
parent | 75fa97fc3cac911c348d177c98057dc68c61771b (diff) | |
download | Doxygen-ac16b765b390a835d3f455691a2e3f6a0e94bd78.zip Doxygen-ac16b765b390a835d3f455691a2e3f6a0e94bd78.tar.gz Doxygen-ac16b765b390a835d3f455691a2e3f6a0e94bd78.tar.bz2 |
Release-1.2.13-20020203
Diffstat (limited to 'src/entry.h')
-rw-r--r-- | src/entry.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/entry.h b/src/entry.h index 3e52b82..4020a96 100644 --- a/src/entry.h +++ b/src/entry.h @@ -254,15 +254,17 @@ class Entry QCString bitfields; //!< member's bit fields ArgumentList *argList; //!< member arguments as a list QList<ArgumentList> *tArgLists; //!< template argument declarations - //QCString scopeSpec; //!< template specialization of the scope - //QCString memberSpec; //!< template specialization of the member QCString program; //!< the program text QCString initializer; //!< initial value (for variables) QCString includeFile; //!< include file (2 arg of \class, must be unique) QCString includeName; //!< include name (3 arg of \class) QCString doc; //!< documentation block (partly parsed) - QCString relates; //!< related class (doc block) + int docLine; //!< line number at which the documentation was found + QCString docFile; //!< file in which the documentation was found QCString brief; //!< brief description (doc block) + int briefLine; //!< line number at which the brief desc. was found + QCString briefFile; //!< file in which the brief desc. was found + QCString relates; //!< related class (doc block) QCString inside; //!< name of the class in which documents are found QCString exception; //!< throw specification int bodyLine; //!< line number of the definition in the source |