diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-06-17 19:53:53 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2004-06-17 19:53:53 (GMT) |
commit | d3c3bbd02543280d12a763d82aa5b54ce516c57f (patch) | |
tree | e215fcacfb74cc58f4d27e30b9722efd930d7a7a /src/classdef.cpp | |
parent | f309c3c0e7c1cf29df6b850e19d647e93a30ce28 (diff) | |
download | Doxygen-d3c3bbd02543280d12a763d82aa5b54ce516c57f.zip Doxygen-d3c3bbd02543280d12a763d82aa5b54ce516c57f.tar.gz Doxygen-d3c3bbd02543280d12a763d82aa5b54ce516c57f.tar.bz2 |
Release-1.3.7-20040617
Diffstat (limited to 'src/classdef.cpp')
-rw-r--r-- | src/classdef.cpp | 45 |
1 files changed, 31 insertions, 14 deletions
diff --git a/src/classdef.cpp b/src/classdef.cpp index a30a774..31555b4 100644 --- a/src/classdef.cpp +++ b/src/classdef.cpp @@ -86,6 +86,7 @@ ClassDef::ClassDef( m_innerClasses = new ClassSDict(17); m_subGrouping=Config_getBool("SUBGROUPING"); m_templateInstances = 0; + m_variableInstances = 0; m_templateMaster =0; m_templBaseClassNames = 0; m_artificial = FALSE; @@ -123,6 +124,7 @@ ClassDef::~ClassDef() delete memberGroupSDict; delete m_innerClasses; delete m_templateInstances; + delete m_variableInstances; delete m_templBaseClassNames; delete m_tempArgs; } @@ -937,21 +939,16 @@ void ClassDef::writeDetailedDescription(OutputList &ol, const QCString &pageType // write all documentation for this class void ClassDef::writeDocumentation(OutputList &ol) { - // write title - QCString pageTitle=displayName().copy(); - QCString pageType; - QCString cType=compoundTypeString(); - //printf("ClassDef::writeDocumentation() cType=%s\n",cType.data()); - toupper(cType.at(0)); - pageType+=" "; - pageType+=cType; - pageTitle+=pageType+" Reference"; - if (m_tempArgs) pageTitle.prepend(" Template"); - startFile(ol,getOutputFileBase(),name(),pageTitle); + QCString pageType = " "; + pageType += compoundTypeString(); + toupper(pageType.at(1)); + QCString pageTitle = theTranslator->trCompoundReference(displayName(), + m_compType == Interface && m_isObjC ? Class : m_compType, + m_tempArgs != 0); + + startFile(ol,getOutputFileBase(),name(),pageTitle); startTitle(ol,getOutputFileBase()); - ol.parseText(theTranslator->trCompoundReference(displayName(), - m_isObjC && m_compType==Interface ? Class : m_compType, - m_tempArgs!=0)); + ol.parseText(pageTitle); addGroupListToTitle(ol,this); endTitle(ol,getOutputFileBase(),name()); @@ -2642,6 +2639,26 @@ ClassDef *ClassDef::insertTemplateInstance(const QCString &fileName, return templateClass; } +ClassDef *ClassDef::getVariableInstance(const char *templSpec) +{ + if (m_variableInstances==0) + { + m_variableInstances = new QDict<ClassDef>(17); + m_variableInstances->setAutoDelete(TRUE); + } + ClassDef *templateClass=m_variableInstances->find(templSpec); + if (templateClass==0) + { + Debug::print(Debug::Classes,0," New template variable instance class `%s'`%s'\n",name().data(),templSpec); + templateClass = new ClassDef("<code>",1,name()+templSpec, + ClassDef::Class,0,0,FALSE); + templateClass->addMembersToTemplateInstance( this, templSpec ); + templateClass->setTemplateMaster(this); + m_variableInstances->insert(templSpec,templateClass); + } + return templateClass; +} + void ClassDef::setTemplateBaseClassNames(QDict<int> *templateNames) { if (templateNames==0) return; |