diff options
Diffstat (limited to 'Source/cmClassFile.h')
-rw-r--r-- | Source/cmClassFile.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/Source/cmClassFile.h b/Source/cmClassFile.h index cb0f50b..006d35e 100644 --- a/Source/cmClassFile.h +++ b/Source/cmClassFile.h @@ -35,7 +35,6 @@ public: { m_AbstractClass = false; m_HeaderFileOnly = false; - m_IsExecutable = false; m_WrapExclude = false; } @@ -57,7 +56,7 @@ public: /** * Print the structure to std::cout. */ - void Print(); + void Print() const; /** * Indicate whether the class is abstract (non-instantiable). @@ -75,11 +74,6 @@ public: bool m_HeaderFileOnly; /** - * Indicate whether this class is an executable file - */ - bool m_IsExecutable; - - /** * The full path to the file. */ std::string m_FullPath; |