summaryrefslogtreecommitdiff
path: root/Source/cmSourceFile.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2007-05-28 13:32:17 -0400
committerBrad King <brad.king@kitware.com>2007-05-28 13:32:17 -0400
commit25db01d7c40199e82f84e87018bef53f62c3f9c8 (patch)
treea510c53987cc0cd09e0bfeb7634eef4129f7c867 /Source/cmSourceFile.h
parentf9447119178ef75a6e5d43f8ad37720e5650906b (diff)
downloadcmake-25db01d7c40199e82f84e87018bef53f62c3f9c8.tar.gz
ENH: Removed unused methods that should never be used anyway.
Diffstat (limited to 'Source/cmSourceFile.h')
-rw-r--r--Source/cmSourceFile.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/cmSourceFile.h b/Source/cmSourceFile.h
index f25aa66b33..5a3da70814 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