summaryrefslogtreecommitdiff
path: root/src/classdef.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/classdef.h')
-rw-r--r--src/classdef.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/classdef.h b/src/classdef.h
index 23c5c5c..14f9fc8 100644
--- a/src/classdef.h
+++ b/src/classdef.h
@@ -200,7 +200,7 @@ class ClassDef : public Definition
MemberDef *getMemberByName(const QCString &) const;
/** Returns TRUE iff \a bcd is a direct or indirect base class of this
- * class. This function will recusively traverse all branches of the
+ * class. This function will recursively traverse all branches of the
* inheritance tree.
*/
bool isBaseClass(ClassDef *bcd,bool followInstances,int level=0);
@@ -266,6 +266,9 @@ class ClassDef : public Definition
/** Returns TRUE if this class is implemented in Objective-C */
bool isObjectiveC() const;
+ /** Returns TRUE if this class is implemented in Fortran */
+ bool isFortran() const;
+
/** Returns TRUE if this class is implemented in C# */
bool isCSharp() const;
@@ -333,6 +336,7 @@ class ClassDef : public Definition
QCString getMemberListFileName() const;
bool subGrouping() const;
+ bool isSliceLocal() const;
//-----------------------------------------------------------------------------------
// --- setters ----
@@ -373,6 +377,8 @@ class ClassDef : public Definition
void setTagLessReference(ClassDef *cd);
void setName(const char *name);
+ void setMetaData(const char *md);
+
//-----------------------------------------------------------------------------------
// --- actions ----
//-----------------------------------------------------------------------------------
@@ -426,6 +432,7 @@ class ClassDef : public Definition
void writeDetailedDescription(OutputList &ol,const QCString &pageType,bool exampleFlag,
const QCString &title,const QCString &anchor=QCString());
void writeIncludeFiles(OutputList &ol);
+ void writeIncludeFilesForSlice(OutputList &ol);
//void writeAllMembersLink(OutputList &ol);
void writeInheritanceGraph(OutputList &ol);
void writeCollaborationGraph(OutputList &ol);