12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #ifndef cmVariableWatchCommand_h
- #define cmVariableWatchCommand_h
- #include "cmConfigure.h"
- #include <set>
- #include <string>
- #include <vector>
- #include "cmCommand.h"
- class cmExecutionStatus;
- class cmVariableWatchCommand : public cmCommand
- {
- public:
-
- cmCommand* Clone() override { return new cmVariableWatchCommand; }
-
- cmVariableWatchCommand();
-
- ~cmVariableWatchCommand() override;
-
- bool InitialPass(std::vector<std::string> const& args,
- cmExecutionStatus& status) override;
-
- bool HasFinalPass() const override { return true; }
- protected:
- std::set<std::string> WatchedVariables;
- };
- #endif
|