diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-12-09 20:40:34 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-12-09 20:40:34 (GMT) |
commit | 414d7b3bbfad8ec16237c3708af188ecaee62886 (patch) | |
tree | bbe6210f1426dabef9dcedc0d7d025f79fae6225 /src/entry.h | |
parent | cce8b9505201c95443798341d3d6176922db9253 (diff) | |
download | Doxygen-414d7b3bbfad8ec16237c3708af188ecaee62886.zip Doxygen-414d7b3bbfad8ec16237c3708af188ecaee62886.tar.gz Doxygen-414d7b3bbfad8ec16237c3708af188ecaee62886.tar.bz2 |
Doxygen-1.2.12-20011209
Diffstat (limited to 'src/entry.h')
-rw-r--r-- | src/entry.h | 54 |
1 files changed, 28 insertions, 26 deletions
diff --git a/src/entry.h b/src/entry.h index 3646d40..08ed956 100644 --- a/src/entry.h +++ b/src/entry.h @@ -254,10 +254,8 @@ class Entry QCString bitfields; //!< member's bit fields ArgumentList *argList; //!< member arguments as a list QList<ArgumentList> *tArgLists; //!< template argument declarations - //ArgumentList *tArgList; //!< template argument lists (for each scope) - //ArgumentList *mtArgList; //!< member template argument list - QCString scopeSpec; //!< template specialization of the scope - QCString memberSpec; //!< template specialization of the member + //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) @@ -281,32 +279,36 @@ class Entry int bugId; //!< id of the bug list item of this entry TagInfo *tagInfo; //!< tag file info static int num; //!< counts the total number of entries - enum { - GROUPDOC_NORMAL, //<! @defgroup - GROUPDOC_ADD, //<! @addgroup - GROUPDOC_WEAK //<! @weakgroup - } groupdoctype; //!< kind of group + enum + { + GROUPDOC_NORMAL, //<! defgroup + GROUPDOC_ADD, //<! addgroup + GROUPDOC_WEAK //<! weakgroup + } groupDocType; //!< kind of group /// return the command name used to define GROUPDOC_SEC - const char *groupdoccmd() const + const char *groupDocCmd() const { - switch( this->groupdoctype ) { - case GROUPDOC_NORMAL: return "\\defgroup"; break; - case GROUPDOC_ADD: return "\\addgroup"; break; - case GROUPDOC_WEAK: return "\\weakgroup"; break; - default: return "unknown group command"; - } + switch( groupDocType ) + { + case GROUPDOC_NORMAL: return "\\defgroup"; break; + case GROUPDOC_ADD: return "\\addgroup"; break; + case GROUPDOC_WEAK: return "\\weakgroup"; break; + default: return "unknown group command"; + } } - Grouping::GroupPri_t groupingpri() const + Grouping::GroupPri_t groupingPri() const { - if( this->section != GROUPDOC_SEC ) { - return Grouping::GROUPING_LOWEST; - } - switch( this->groupdoctype ) { - case GROUPDOC_NORMAL: return Grouping::GROUPING_AUTO_DEF; break; - case GROUPDOC_ADD: return Grouping::GROUPING_AUTO_ADD; break; - case GROUPDOC_WEAK: return Grouping::GROUPING_AUTO_WEAK; break; - default: return Grouping::GROUPING_LOWEST; - } + if( section != GROUPDOC_SEC ) + { + return Grouping::GROUPING_LOWEST; + } + switch( groupDocType ) + { + case GROUPDOC_NORMAL: return Grouping::GROUPING_AUTO_DEF; break; + case GROUPDOC_ADD: return Grouping::GROUPING_AUTO_ADD; break; + case GROUPDOC_WEAK: return Grouping::GROUPING_AUTO_WEAK; break; + default: return Grouping::GROUPING_LOWEST; + } } private: Entry &operator=(const Entry &); |