diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-08-26 14:15:46 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-08-26 14:15:46 (GMT) |
commit | c822eb3d9ce727dd69954661edcabcad479c1481 (patch) | |
tree | 9acee8d8d8b91289eb8173fd93a8f16891fc2a92 /src/classdef.h | |
parent | 2f7902073680b977b74f3faeada95119ec767eb3 (diff) | |
download | Doxygen-c822eb3d9ce727dd69954661edcabcad479c1481.zip Doxygen-c822eb3d9ce727dd69954661edcabcad479c1481.tar.gz Doxygen-c822eb3d9ce727dd69954661edcabcad479c1481.tar.bz2 |
Release-1.2.10
Diffstat (limited to 'src/classdef.h')
-rw-r--r-- | src/classdef.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/classdef.h b/src/classdef.h index 51d0112..d31d99b 100644 --- a/src/classdef.h +++ b/src/classdef.h @@ -270,6 +270,7 @@ class ClassDef : public Definition void setTemplateMaster(ClassDef *tm) { m_templateMaster=tm; } void addMembersToTemplateInstance(ClassDef *cd,const char *templSpec); void setClassIsArtificial() { m_artificial = TRUE; } + void setIsStatic(bool b) { m_isStatic=b; } /*! Creates a new compound definition. * \param outerScope class, file or namespace in which this class is @@ -401,6 +402,9 @@ class ClassDef : public Definition bool m_isAbstract; QCString m_className; + + /*! Is the class part of an unnamed namespace? */ + bool m_isStatic; }; /*! \brief Class that contains information about a usage relation. |