2016-09-27 19:01:08 +00:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2002-08-21 15:58:48 +00:00
|
|
|
#ifndef cmLoadCommandCommand_h
|
|
|
|
#define cmLoadCommandCommand_h
|
|
|
|
|
2016-10-19 06:54:18 +00:00
|
|
|
#include <cmConfigure.h>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2002-08-21 15:58:48 +00:00
|
|
|
#include "cmCommand.h"
|
2016-10-19 06:54:18 +00:00
|
|
|
|
|
|
|
class cmExecutionStatus;
|
2002-08-21 15:58:48 +00:00
|
|
|
|
|
|
|
class cmLoadCommandCommand : public cmCommand
|
|
|
|
{
|
|
|
|
public:
|
2016-06-27 19:25:27 +00:00
|
|
|
cmCommand* Clone() CM_OVERRIDE { return new cmLoadCommandCommand; }
|
|
|
|
bool InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus& status) CM_OVERRIDE;
|
|
|
|
std::string GetName() const CM_OVERRIDE { return "load_command"; }
|
2002-08-21 15:58:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|