diff options
author | Brad King <brad.king@kitware.com> | 2002-09-13 20:38:35 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2002-09-13 20:38:35 (GMT) |
commit | 0815091e26718d078dd2b2b26984825beb47bac1 (patch) | |
tree | bbade4c91341ff3f1ee20c8ef2da43563f6b8a9c /Source/cmSystemTools.h | |
parent | ee592e9b9854f06d492cd5865678e6b67ca56c94 (diff) | |
download | CMake-0815091e26718d078dd2b2b26984825beb47bac1.zip CMake-0815091e26718d078dd2b2b26984825beb47bac1.tar.gz CMake-0815091e26718d078dd2b2b26984825beb47bac1.tar.bz2 |
ENH: Added FileIsFullPath test method.
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 0ef9b6f..229232f 100644 --- a/Source/cmSystemTools.h +++ b/Source/cmSystemTools.h @@ -258,6 +258,9 @@ public: ///! return file name without its last (shortest) extension. static std::string GetFilenameWithoutLastExtension(const std::string&); + /** Return whether the path represents a full path (not relative). */ + static bool FileIsFullPath(const char*); + static long int ModifiedTime(const char* filename); /** |