diff options
Diffstat (limited to 'src/entry.h')
-rw-r--r-- | src/entry.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/entry.h b/src/entry.h index 12bd897..1cca6f8 100644 --- a/src/entry.h +++ b/src/entry.h @@ -244,13 +244,13 @@ class Entry void setFileDef(FileDef *fd); FileDef *fileDef() const { return m_fileDef; } - public: - // identification int section; //!< entry type (see Sections); QCString type; //!< member type QCString name; //!< member name - TagInfo *tagInfo; //!< tag file info + bool hasTagInfo; //!< is tag info valid + TagInfo tagInfoData; //!< tag file info data + const TagInfo *tagInfo() const { return hasTagInfo ? &tagInfoData : 0; } // content Protection protection; //!< class protection |