diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2019-05-22 08:18:00 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2019-05-22 08:57:10 (GMT) |
commit | 5b53cfda247f7d688a058f358628639a431313a8 (patch) | |
tree | 2f2f29b749a3e60f76d73d7727da06b8e81a7038 /Source/cmSystemTools.h | |
parent | 9c576a88d95b302882bcb0a021dcf03982a40902 (diff) | |
download | CMake-5b53cfda247f7d688a058f358628639a431313a8.zip CMake-5b53cfda247f7d688a058f358628639a431313a8.tar.gz CMake-5b53cfda247f7d688a058f358628639a431313a8.tar.bz2 |
cmSystemTools: Remove cmSystemToolsFileTime interface
This removes the C style cmSystemToolsFileTime interface in cmSystemTools.
It was replaced by the RAII based cmFileTimes class.
Diffstat (limited to 'Source/cmSystemTools.h')
-rw-r--r-- | Source/cmSystemTools.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h index d145d47..fefa413 100644 --- a/Source/cmSystemTools.h +++ b/Source/cmSystemTools.h @@ -15,8 +15,6 @@ #include <string> #include <vector> -class cmSystemToolsFileTime; - /** \class cmSystemTools * \brief A collection of useful functions for CMake. * @@ -470,18 +468,6 @@ public: static void EnsureStdPipes(); - /** Copy the file create/access/modify times from the file named by - the first argument to that named by the second. */ - static bool CopyFileTime(const std::string& fromFile, - const std::string& toFile); - - /** Save and restore file times. */ - static cmSystemToolsFileTime* FileTimeNew(); - static void FileTimeDelete(cmSystemToolsFileTime*); - static bool FileTimeGet(const std::string& fname, cmSystemToolsFileTime* t); - static bool FileTimeSet(const std::string& fname, - const cmSystemToolsFileTime* t); - /** Random seed generation. */ static unsigned int RandomSeed(); |