diff options
author | Brad King <brad.king@kitware.com> | 2007-05-28 17:32:17 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-05-28 17:32:17 (GMT) |
commit | 25db01d7c40199e82f84e87018bef53f62c3f9c8 (patch) | |
tree | a510c53987cc0cd09e0bfeb7634eef4129f7c867 /Source/cmSourceFile.h | |
parent | f9447119178ef75a6e5d43f8ad37720e5650906b (diff) | |
download | CMake-25db01d7c40199e82f84e87018bef53f62c3f9c8.zip CMake-25db01d7c40199e82f84e87018bef53f62c3f9c8.tar.gz CMake-25db01d7c40199e82f84e87018bef53f62c3f9c8.tar.bz2 |
ENH: Removed unused methods that should never be used anyway.
Diffstat (limited to 'Source/cmSourceFile.h')
-rw-r--r-- | Source/cmSourceFile.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/cmSourceFile.h b/Source/cmSourceFile.h index f25aa66..5a3da70 100644 --- a/Source/cmSourceFile.h +++ b/Source/cmSourceFile.h @@ -82,21 +82,18 @@ public: * The full path to the file. */ 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 this->SourceName;} - void SetSourceName(const char *name) {this->SourceName = name;} /** * The file extension associated with source file */ 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 |