summaryrefslogtreecommitdiffstats
path: root/Source/ctest.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/ctest.h')
-rw-r--r--Source/ctest.h15
1 files changed, 12 insertions, 3 deletions
diff --git a/Source/ctest.h b/Source/ctest.h
index eef6b28..60065a1 100644
--- a/Source/ctest.h
+++ b/Source/ctest.h
@@ -36,10 +36,19 @@ public:
/**
* constructor
*/
- ctest() {m_UseRegExp = false;}
+ ctest() {
+ m_UseIncludeRegExp = false;
+ m_UseExcludeRegExp = false;
+ m_UseExcludeRegExpFirst = false;
+ }
+
+ bool m_UseIncludeRegExp;
+ std::string m_IncludeRegExp;
+
+ bool m_UseExcludeRegExp;
+ bool m_UseExcludeRegExpFirst;
+ std::string m_ExcludeRegExp;
- bool m_UseRegExp;
- std::string m_RegExp;
std::string m_ConfigType;
private:
};