summaryrefslogtreecommitdiffstats
path: root/Source/cmSourceFile.h
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2006-03-15 16:02:08 (GMT)
committerKen Martin <ken.martin@kitware.com>2006-03-15 16:02:08 (GMT)
commit3d96e522617647665d7e99919ba71d34b1db870c (patch)
tree2ec6cf41cc61aad79b94cff9b2aa321f2c8b686e /Source/cmSourceFile.h
parent609af5c969be6edf087498f983ccd7d3ac818a48 (diff)
downloadCMake-3d96e522617647665d7e99919ba71d34b1db870c.zip
CMake-3d96e522617647665d7e99919ba71d34b1db870c.tar.gz
CMake-3d96e522617647665d7e99919ba71d34b1db870c.tar.bz2
STYLE: some m_ to this-> cleanup
Diffstat (limited to 'Source/cmSourceFile.h')
-rw-r--r--Source/cmSourceFile.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/Source/cmSourceFile.h b/Source/cmSourceFile.h
index c8ad1dd..656d5f0 100644
--- a/Source/cmSourceFile.h
+++ b/Source/cmSourceFile.h
@@ -34,7 +34,7 @@ public:
*/
cmSourceFile()
{
- m_CustomCommand = 0;
+ this->CustomCommand = 0;
}
~cmSourceFile()
{
@@ -54,8 +54,8 @@ public:
* Get the list of the custom commands for this source file
*/
const cmCustomCommand *GetCustomCommand() const
- {return m_CustomCommand;}
- cmCustomCommand *GetCustomCommand() {return m_CustomCommand;}
+ {return this->CustomCommand;}
+ cmCustomCommand *GetCustomCommand() {return this->CustomCommand;}
void SetCustomCommand(cmCustomCommand *cc);
/**
@@ -79,27 +79,27 @@ public:
/**
* The full path to the file.
*/
- const std::string &GetFullPath() const {return m_FullPath;}
- void SetFullPath(const char *name) {m_FullPath = name;}
+ const std::string &GetFullPath() const {return this->FullPath;}
+ void SetFullPath(const char *name) {this->FullPath = name;}
/**
* The file name associated with stripped off directory and extension.
* (In most cases this is the name of the class.)
*/
- const std::string &GetSourceName() const {return m_SourceName;}
- void SetSourceName(const char *name) {m_SourceName = name;}
+ const std::string &GetSourceName() const {return this->SourceName;}
+ void SetSourceName(const char *name) {this->SourceName = name;}
/**
* The file extension associated with source file
*/
- const std::string &GetSourceExtension() const {return m_SourceExtension;}
- void SetSourceExtension(const char *name) {m_SourceExtension = name;}
+ const std::string &GetSourceExtension() const {return this->SourceExtension;}
+ void SetSourceExtension(const char *name) {this->SourceExtension = name;}
/**
* Return the vector that holds the list of dependencies
*/
- const std::vector<std::string> &GetDepends() const {return m_Depends;}
- std::vector<std::string> &GetDepends() {return m_Depends;}
+ const std::vector<std::string> &GetDepends() const {return this->Depends;}
+ std::vector<std::string> &GetDepends() {return this->Depends;}
/**
* Get the source name without last extension
@@ -107,13 +107,13 @@ public:
const std::string& GetSourceNameWithoutLastExtension();
private:
- std::map<cmStdString,cmStdString> m_Properties;
- cmCustomCommand *m_CustomCommand;
- std::string m_FullPath;
- std::string m_SourceName;
- std::string m_SourceExtension;
- std::vector<std::string> m_Depends;
- std::string m_SourceNameWithoutLastExtension;
+ std::map<cmStdString,cmStdString> Properties;
+ cmCustomCommand *CustomCommand;
+ std::string FullPath;
+ std::string SourceName;
+ std::string SourceExtension;
+ std::vector<std::string> Depends;
+ std::string SourceNameWithoutLastExtension;
};
#endif