diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2017-01-08 22:47:29 (GMT) |
---|---|---|
committer | Regina Pfeifer <regina@mailbox.org> | 2019-08-06 09:42:25 (GMT) |
commit | 64f987c174691982e1f01eadb2c76693ea674e52 (patch) | |
tree | 164f68489cdf5d6e4f39ea7624caf25c94ac4c99 /Source/cmFileCopier.h | |
parent | 53fc083d3744555600a6a20d9bbdc0712a46cce0 (diff) | |
download | CMake-64f987c174691982e1f01eadb2c76693ea674e52.zip CMake-64f987c174691982e1f01eadb2c76693ea674e52.tar.gz CMake-64f987c174691982e1f01eadb2c76693ea674e52.tar.bz2 |
cmFileCommand: port to cmExecutionStatus
Diffstat (limited to 'Source/cmFileCopier.h')
-rw-r--r-- | Source/cmFileCopier.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmFileCopier.h b/Source/cmFileCopier.h index a79a60b..263a365 100644 --- a/Source/cmFileCopier.h +++ b/Source/cmFileCopier.h @@ -12,19 +12,19 @@ #include <string> #include <vector> -class cmFileCommand; +class cmExecutionStatus; class cmMakefile; // File installation helper class. struct cmFileCopier { - cmFileCopier(cmFileCommand* command, const char* name = "COPY"); + cmFileCopier(cmExecutionStatus& status, const char* name = "COPY"); virtual ~cmFileCopier(); bool Run(std::vector<std::string> const& args); protected: - cmFileCommand* FileCommand; + cmExecutionStatus& Status; cmMakefile* Makefile; const char* Name; bool Always; |