diff options
Diffstat (limited to 'src/classdef.h')
-rw-r--r-- | src/classdef.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/classdef.h b/src/classdef.h index 524bb96..23c5c5c 100644 --- a/src/classdef.h +++ b/src/classdef.h @@ -122,7 +122,7 @@ class ClassDef : public Definition bool isLocal() const; /** returns the classes nested into this class */ - ClassSDict *getClassSDict(); + ClassSDict *getClassSDict() const; /** returns TRUE if this class has documentation */ bool hasDocumentation() const; @@ -244,7 +244,7 @@ class ClassDef : public Definition * available, or 0 otherwise. * @param name The name of the nested compound */ - virtual Definition *findInnerCompound(const char *name); + virtual Definition *findInnerCompound(const char *name) const; /** Returns the template parameter lists that form the template * declaration of this class. |