diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-08-29 20:42:03 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-08-29 20:42:03 (GMT) |
commit | 08a89bd8dc87fb904d10a0b1718e7c61da725c12 (patch) | |
tree | 971e8f298073ec4d06d7d9864493bb89cf5bb704 /Source/ctest.h | |
parent | 8d681d47935089a64e13c30a4b2714a938c1ac91 (diff) | |
download | CMake-08a89bd8dc87fb904d10a0b1718e7c61da725c12.zip CMake-08a89bd8dc87fb904d10a0b1718e7c61da725c12.tar.gz CMake-08a89bd8dc87fb904d10a0b1718e7c61da725c12.tar.bz2 |
added regexp option
Diffstat (limited to 'Source/ctest.h')
-rw-r--r-- | Source/ctest.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/ctest.h b/Source/ctest.h index 9afe0b6..d017c56 100644 --- a/Source/ctest.h +++ b/Source/ctest.h @@ -60,7 +60,10 @@ public: /** * constructor */ - ctest() {} + ctest() {m_UseRegExp = false;} + + bool m_UseRegExp; + std::string m_RegExp; private: }; |