diff options
author | Brad King <brad.king@kitware.com> | 2002-07-15 13:45:47 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2002-07-15 13:45:47 (GMT) |
commit | c5574e096beb6136eff364f1cc5d046e8abb9302 (patch) | |
tree | 4820424489a1ba6f8fded8c41e6f1675a5e65ca1 /Source/cmSystemTools.h | |
parent | 1e75dd121253b47c5d229936e80125e82bcd283e (diff) | |
download | CMake-c5574e096beb6136eff364f1cc5d046e8abb9302.zip CMake-c5574e096beb6136eff364f1cc5d046e8abb9302.tar.gz CMake-c5574e096beb6136eff364f1cc5d046e8abb9302.tar.bz2 |
ENH: Added GetFilenameWithoutLastExtension.
Diffstat (limited to 'Source/cmSystemTools.h')
-rw-r--r-- | Source/cmSystemTools.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h index b7f8911..0ef9b6f 100644 --- a/Source/cmSystemTools.h +++ b/Source/cmSystemTools.h @@ -255,6 +255,9 @@ public: ///! return file name without extension of a full filename. static std::string GetFilenameWithoutExtension(const std::string&); + ///! return file name without its last (shortest) extension. + static std::string GetFilenameWithoutLastExtension(const std::string&); + static long int ModifiedTime(const char* filename); /** |