diff options
Diffstat (limited to 'src/classdef.h')
-rw-r--r-- | src/classdef.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/classdef.h b/src/classdef.h index b82e603..418b3b7 100644 --- a/src/classdef.h +++ b/src/classdef.h @@ -290,6 +290,7 @@ class ClassDef : public Definition //QCString getTemplateArgumentMapping(const char *formal) const; ClassDef *insertTemplateInstance(const QCString &fileName,int startLine, const QCString &templSpec,bool &freshInstance); + ClassDef *getVariableInstance(const char *templSpec); void setTemplateBaseClassNames(QDict<int> *templateNames); QDict<int> *getTemplateBaseClassNames() const; void setTemplateMaster(ClassDef *tm) { m_templateMaster=tm; } @@ -416,6 +417,12 @@ class ClassDef : public Definition */ QDict<ClassDef> *m_templateInstances; + /*! Template instances that exists of this class, as defined by variables. + * We do NOT want to document these individually. The key in the + * dictionary is the template argument list. + */ + QDict<ClassDef> *m_variableInstances; + QDict<int> *m_templBaseClassNames; /*! The class this class is an instance of. */ |