12345678910111213141516171819202122232425262728293031323334353637 |
- #ifndef cmIncludeGuardCommand_h
- #define cmIncludeGuardCommand_h
- #include "cmConfigure.h"
- #include <string>
- #include <vector>
- #include "cmCommand.h"
- class cmExecutionStatus;
- class cmIncludeGuardCommand : public cmCommand
- {
- public:
-
- cmCommand* Clone() override { return new cmIncludeGuardCommand; }
-
- bool InitialPass(std::vector<std::string> const& args,
- cmExecutionStatus& status) override;
- };
- #endif
|