From a91e3b515866b594930a2c91495cb2f6ff8d6a5c Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Tue, 27 Feb 2001 16:48:55 -0500 Subject: [PATCH] added wrap exclude ivar --- Source/cmClassFile.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Source/cmClassFile.h b/Source/cmClassFile.h index e0e4d5039..cb0f50b67 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; } /** @@ -63,6 +64,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. */