diff options
Diffstat (limited to 'src/classdef.h')
-rw-r--r-- | src/classdef.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/classdef.h b/src/classdef.h index 7b5ce86..fcb8d4c 100644 --- a/src/classdef.h +++ b/src/classdef.h @@ -267,6 +267,8 @@ class ClassDef : public Definition QCString anchor() const; bool isEmbeddedInGroupDocs() const; + SrcLangExt getLanguage() const; + //----------------------------------------------------------------------------------- // --- setters ---- //----------------------------------------------------------------------------------- @@ -286,8 +288,8 @@ class ClassDef : public Definition void addInnerCompound(Definition *d); ClassDef *insertTemplateInstance(const QCString &fileName,int startLine, const QCString &templSpec,bool &freshInstance); - void addUsedClass(ClassDef *cd,const char *accessName); - void addUsedByClass(ClassDef *cd,const char *accessName); + void addUsedClass(ClassDef *cd,const char *accessName,Protection prot); + void addUsedByClass(ClassDef *cd,const char *accessName,Protection prot); void setIsStatic(bool b); void setLanguage(SrcLangExt lang); void setCompoundType(CompoundType t); |