1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #ifndef cmLoadCacheCommand_h
- #define cmLoadCacheCommand_h
- #include "cmConfigure.h"
- #include <set>
- #include <string>
- #include <vector>
- #include "cmCommand.h"
- class cmExecutionStatus;
- class cmLoadCacheCommand : public cmCommand
- {
- public:
-
- cmCommand* Clone() override { return new cmLoadCacheCommand; }
-
- 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);
- };
- #endif
|