summaryrefslogtreecommitdiffstats
path: root/Source/cmUseMangledMesaCommand.h
diff options
context:
space:
mode:
authorGabor Bencze <b.gabor98@gmail.com>2019-08-21 17:53:29 (GMT)
committerGabor Bencze <b.gabor98@gmail.com>2019-08-25 12:29:25 (GMT)
commit524d72151449acf5d76e55172174552b83a74f61 (patch)
tree2e0eb4cdb54690fe731451b5d3715443bc3eb841 /Source/cmUseMangledMesaCommand.h
parent2a1be178de5f12d55ec486609f4512e6b2b9d168 (diff)
downloadCMake-524d72151449acf5d76e55172174552b83a74f61.zip
CMake-524d72151449acf5d76e55172174552b83a74f61.tar.gz
CMake-524d72151449acf5d76e55172174552b83a74f61.tar.bz2
cmCommand refactor: cmUseMangledMesaCommand
Diffstat (limited to 'Source/cmUseMangledMesaCommand.h')
-rw-r--r--Source/cmUseMangledMesaCommand.h20
1 files changed, 2 insertions, 18 deletions
diff --git a/Source/cmUseMangledMesaCommand.h b/Source/cmUseMangledMesaCommand.h
index 1c01596..215e4a3 100644
--- a/Source/cmUseMangledMesaCommand.h
+++ b/Source/cmUseMangledMesaCommand.h
@@ -8,25 +8,9 @@
#include <string>
#include <vector>
-#include "cm_memory.hxx"
-
-#include "cmCommand.h"
-
class cmExecutionStatus;
-class cmUseMangledMesaCommand : public cmCommand
-{
-public:
- std::unique_ptr<cmCommand> Clone() override
- {
- return cm::make_unique<cmUseMangledMesaCommand>();
- }
- bool InitialPass(std::vector<std::string> const& args,
- cmExecutionStatus& status) override;
-
-protected:
- void CopyAndFullPathMesaHeader(const std::string& source,
- const std::string& outdir);
-};
+bool cmUseMangledMesaCommand(std::vector<std::string> const& args,
+ cmExecutionStatus& status);
#endif