summaryrefslogtreecommitdiffstats
path: root/src/classdef.h
diff options
context:
space:
mode:
authorAdrian Negreanu <groleo@gmail.com>2017-09-25 12:44:20 (GMT)
committerAdrian Negreanu <groleo@gmail.com>2017-09-25 13:35:17 (GMT)
commit5df4341210ec2374b8b7c09f5df3cd8f4ff60f65 (patch)
treec05d14bc4383d98a1cdc5a4bc94ae738c133f65b /src/classdef.h
parent47d679b67952949d639ea9a206535e97a6154bb5 (diff)
downloadDoxygen-5df4341210ec2374b8b7c09f5df3cd8f4ff60f65.zip
Doxygen-5df4341210ec2374b8b7c09f5df3cd8f4ff60f65.tar.gz
Doxygen-5df4341210ec2374b8b7c09f5df3cd8f4ff60f65.tar.bz2
const-ify
Diffstat (limited to 'src/classdef.h')
-rw-r--r--src/classdef.h4
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.