cmLoadCommandCommand.h 718 B

12345678910111213141516171819202122232425
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #ifndef cmLoadCommandCommand_h
  4. #define cmLoadCommandCommand_h
  5. #include <cmConfigure.h>
  6. #include <string>
  7. #include <vector>
  8. #include "cmCommand.h"
  9. #include "cmTypeMacro.h"
  10. class cmExecutionStatus;
  11. class cmLoadCommandCommand : public cmCommand
  12. {
  13. public:
  14. cmCommand* Clone() CM_OVERRIDE { return new cmLoadCommandCommand; }
  15. bool InitialPass(std::vector<std::string> const& args,
  16. cmExecutionStatus& status) CM_OVERRIDE;
  17. std::string GetName() const CM_OVERRIDE { return "load_command"; }
  18. cmTypeMacro(cmLoadCommandCommand, cmCommand);
  19. };
  20. #endif