summaryrefslogtreecommitdiff
path: root/Source/cmTest.h
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-03-15 11:02:08 -0500
committerKen Martin <ken.martin@kitware.com>2006-03-15 11:02:08 -0500
commit3d96e522617647665d7e99919ba71d34b1db870c (patch)
tree2ec6cf41cc61aad79b94cff9b2aa321f2c8b686e /Source/cmTest.h
parent609af5c969be6edf087498f983ccd7d3ac818a48 (diff)
downloadcmake-3d96e522617647665d7e99919ba71d34b1db870c.tar.gz
STYLE: some m_ to this-> cleanup
Diffstat (limited to 'Source/cmTest.h')
-rw-r--r--Source/cmTest.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/Source/cmTest.h b/Source/cmTest.h
index ac1087f921..2f1283522f 100644
--- a/Source/cmTest.h
+++ b/Source/cmTest.h
@@ -34,13 +34,13 @@ public:
///! Set the test name
void SetName(const char* name);
- const char* GetName() const { return m_Name.c_str(); }
+ const char* GetName() const { return this->Name.c_str(); }
void SetCommand(const char* command);
- const char* GetCommand() const { return m_Command.c_str(); }
+ const char* GetCommand() const { return this->Command.c_str(); }
void SetArguments(const std::vector<cmStdString>& args);
const std::vector<cmStdString>& GetArguments() const
{
- return m_Args;
+ return this->Args;
}
/**
@@ -54,14 +54,14 @@ public:
bool GetPropertyAsBool(const char *prop) const;
const std::map<cmStdString,cmStdString>& GetProperties() const
{
- return m_Properties;
+ return this->Properties;
}
private:
- std::map<cmStdString,cmStdString> m_Properties;
- cmStdString m_Name;
- cmStdString m_Command;
- std::vector<cmStdString> m_Args;
+ std::map<cmStdString,cmStdString> Properties;
+ cmStdString Name;
+ cmStdString Command;
+ std::vector<cmStdString> Args;
};
#endif