12345678910111213141516171819202122232425262728293031323334353637383940 |
- #ifndef cmConfigureFileCommand_h
- #define cmConfigureFileCommand_h
- #include "cmConfigure.h"
- #include <string>
- #include <vector>
- #include "cmCommand.h"
- #include "cmNewLineStyle.h"
- class cmExecutionStatus;
- class cmConfigureFileCommand : public cmCommand
- {
- public:
- cmCommand* Clone() override { return new cmConfigureFileCommand; }
-
- bool InitialPass(std::vector<std::string> const& args,
- cmExecutionStatus& status) override;
- private:
- int ConfigureFile();
- cmNewLineStyle NewLineStyle;
- std::string InputFile;
- std::string OutputFile;
- bool CopyOnly;
- bool EscapeQuotes;
- bool AtOnly;
- };
- #endif
|