summaryrefslogtreecommitdiffstats
path: root/Source/cmLoadCacheCommand.h
diff options
context:
space:
mode:
authorRegina Pfeifer <regina@mailbox.org>2019-09-18 15:35:37 (GMT)
committerRegina Pfeifer <regina@mailbox.org>2019-09-21 03:12:54 (GMT)
commit9c521088df3c45764fd9bfc1c10c9bfe63b63e78 (patch)
tree9f8019bf2cebfdcd121a4494a2b73fdc501351d0 /Source/cmLoadCacheCommand.h
parentfcfec154acea01518aa436d76f576d7cfea65fa2 (diff)
downloadCMake-9c521088df3c45764fd9bfc1c10c9bfe63b63e78.zip
CMake-9c521088df3c45764fd9bfc1c10c9bfe63b63e78.tar.gz
CMake-9c521088df3c45764fd9bfc1c10c9bfe63b63e78.tar.bz2
cmLoadCacheCommand: Port away from cmCommand
Diffstat (limited to 'Source/cmLoadCacheCommand.h')
-rw-r--r--Source/cmLoadCacheCommand.h37
1 files changed, 2 insertions, 35 deletions
diff --git a/Source/cmLoadCacheCommand.h b/Source/cmLoadCacheCommand.h
index 37f0372..7cee663 100644
--- a/Source/cmLoadCacheCommand.h
+++ b/Source/cmLoadCacheCommand.h
@@ -5,45 +5,12 @@
#include "cmConfigure.h" // IWYU pragma: keep
-#include <set>
#include <string>
#include <vector>
-#include <cm/memory>
-
-#include "cmCommand.h"
-
class cmExecutionStatus;
-/** \class cmLoadCacheCommand
- * \brief load a cache file
- *
- * cmLoadCacheCommand loads the non internal values of a cache file
- */
-class cmLoadCacheCommand : public cmCommand
-{
-public:
- /**
- * This is a virtual constructor for the command.
- */
- std::unique_ptr<cmCommand> Clone() override
- {
- return cm::make_unique<cmLoadCacheCommand>();
- }
-
- /**
- * This is called when the command is first encountered in
- * the CMakeLists.txt file.
- */
- bool InitialPass(std::vector<std::string> const& args,
- cmExecutionStatus& status) override;
-
-protected:
- std::set<std::string> VariablesToRead;
- std::string Prefix;
-
- bool ReadWithPrefix(std::vector<std::string> const& args);
- void CheckLine(const char* line);
-};
+bool cmLoadCacheCommand(std::vector<std::string> const& args,
+ cmExecutionStatus& status);
#endif