diff options
Diffstat (limited to 'Source/cmTest.cxx')
-rw-r--r-- | Source/cmTest.cxx | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/Source/cmTest.cxx b/Source/cmTest.cxx index bf999fe..ccef841 100644 --- a/Source/cmTest.cxx +++ b/Source/cmTest.cxx @@ -49,3 +49,38 @@ void cmTest::SetArguments(const std::vector<cmStdString>& args) m_Args = args; } +const char *cmTest::GetProperty(const char* prop) const +{ + std::map<cmStdString,cmStdString>::const_iterator i = + m_Properties.find(prop); + if (i != m_Properties.end()) + { + return i->second.c_str(); + } + return 0; +} + +bool cmTest::GetPropertyAsBool(const char* prop) const +{ + std::map<cmStdString,cmStdString>::const_iterator i = + m_Properties.find(prop); + if (i != m_Properties.end()) + { + return cmSystemTools::IsOn(i->second.c_str()); + } + return false; +} + +void cmTest::SetProperty(const char* prop, const char* value) +{ + if (!prop) + { + return; + } + if (!value) + { + value = "NOTFOUND"; + } + m_Properties[prop] = value; +} + |