summaryrefslogtreecommitdiffstats
path: root/Source/cmMakeDepend.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/cmMakeDepend.h
parent609af5c969be6edf087498f983ccd7d3ac818a48 (diff)
downloadCMake-3d96e522617647665d7e99919ba71d34b1db870c.zip
CMake-3d96e522617647665d7e99919ba71d34b1db870c.tar.gz
CMake-3d96e522617647665d7e99919ba71d34b1db870c.tar.bz2
STYLE: some m_ to this-> cleanup
Diffstat (limited to 'Source/cmMakeDepend.h')
-rw-r--r--Source/cmMakeDepend.h37
1 files changed, 19 insertions, 18 deletions
diff --git a/Source/cmMakeDepend.h b/Source/cmMakeDepend.h
index 1ac529f..2bf7adf 100644
--- a/Source/cmMakeDepend.h
+++ b/Source/cmMakeDepend.h
@@ -34,40 +34,40 @@ public:
* Construct with dependency generation marked not done; instance
* not placed in cmMakefile's list.
*/
- cmDependInformation(): m_DependDone(false), m_cmSourceFile(0) {}
+ cmDependInformation(): DependDone(false), cmSourceFile(0) {}
/**
* The set of files on which this one depends.
*/
- typedef std::set<cmDependInformation*> DependencySet;
- DependencySet m_DependencySet;
+ typedef std::set<cmDependInformation*> DependencySetType;
+ DependencySetType DependencySet;
/**
* This flag indicates whether dependency checking has been
* performed for this file.
*/
- bool m_DependDone;
+ bool DependDone;
/**
* If this object corresponds to a cmSourceFile instance, this points
* to it.
*/
- const cmSourceFile *m_cmSourceFile;
+ const cmSourceFile *cmSourceFile;
/**
* Full path to this file.
*/
- std::string m_FullPath;
+ std::string FullPath;
/**
* Full path not including file name.
*/
- std::string m_PathOnly;
+ std::string PathOnly;
/**
* Name used to #include this file.
*/
- std::string m_IncludeName;
+ std::string IncludeName;
/**
* This method adds the dependencies of another file to this one.
@@ -155,16 +155,17 @@ protected:
*/
std::string FullPath(const char *filename, const char *extraPath);
- cmMakefile* m_Makefile;
- bool m_Verbose;
- cmsys::RegularExpression m_IncludeFileRegularExpression;
- cmsys::RegularExpression m_ComplainFileRegularExpression;
- std::vector<std::string> m_IncludeDirectories;
- typedef std::map<cmStdString, cmStdString> FileToPathMap;
- typedef std::map<cmStdString, FileToPathMap> DirectoryToFileToPathMap;
- typedef std::map<cmStdString, cmDependInformation*> DependInformationMap;
- DependInformationMap m_DependInformationMap;
- DirectoryToFileToPathMap m_DirectoryToFileToPathMap;
+ cmMakefile* Makefile;
+ bool Verbose;
+ cmsys::RegularExpression IncludeFileRegularExpression;
+ cmsys::RegularExpression ComplainFileRegularExpression;
+ std::vector<std::string> IncludeDirectories;
+ typedef std::map<cmStdString, cmStdString> FileToPathMapType;
+ typedef std::map<cmStdString, FileToPathMapType>
+ DirectoryToFileToPathMapType;
+ typedef std::map<cmStdString, cmDependInformation*> DependInformationMapType;
+ DependInformationMapType DependInformationMap;
+ DirectoryToFileToPathMapType DirectoryToFileToPathMap;
};
#endif