diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-02-27 21:48:55 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-02-27 21:48:55 (GMT) |
commit | a91e3b515866b594930a2c91495cb2f6ff8d6a5c (patch) | |
tree | f9bcad4475ecfda9772b0a30b4b52eb64c140d40 | |
parent | 2bba34959c536a8820424c96dddb419bc3aa8f28 (diff) | |
download | CMake-a91e3b515866b594930a2c91495cb2f6ff8d6a5c.zip CMake-a91e3b515866b594930a2c91495cb2f6ff8d6a5c.tar.gz CMake-a91e3b515866b594930a2c91495cb2f6ff8d6a5c.tar.bz2 |
added wrap exclude ivar
-rw-r--r-- | Source/cmClassFile.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmClassFile.h b/Source/cmClassFile.h index e0e4d50..cb0f50b 100644 --- a/Source/cmClassFile.h +++ b/Source/cmClassFile.h @@ -36,6 +36,7 @@ public: m_AbstractClass = false; m_HeaderFileOnly = false; m_IsExecutable = false; + m_WrapExclude = false; } /** @@ -64,6 +65,11 @@ public: bool m_AbstractClass; /** + * Indicate whether the class should not be wrapped + */ + bool m_WrapExclude; + + /** * Indicate whether this class is defined with only the header file. */ bool m_HeaderFileOnly; |