123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef cmCMakePolicyCommand_h
- #define cmCMakePolicyCommand_h
- #include "cmConfigure.h"
- #include <string>
- #include <vector>
- #include "cmCommand.h"
- class cmExecutionStatus;
- class cmCMakePolicyCommand : public cmCommand
- {
- public:
-
- cmCommand* Clone() override { return new cmCMakePolicyCommand; }
-
- bool InitialPass(std::vector<std::string> const& args,
- cmExecutionStatus& status) override;
- private:
- bool HandleSetMode(std::vector<std::string> const& args);
- bool HandleGetMode(std::vector<std::string> const& args);
- bool HandleVersionMode(std::vector<std::string> const& args);
- };
- #endif
|