cmake/Source/cmUnexpectedCommand.h

38 lines
784 B
C
Raw Normal View History

2017-04-14 19:02:05 +02:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#ifndef cmUnexpectedCommand_h
#define cmUnexpectedCommand_h
2018-01-26 17:06:56 +01:00
#include "cmConfigure.h" // IWYU pragma: keep
2017-07-20 19:35:53 +02:00
2017-04-14 19:02:05 +02:00
#include <string>
#include <vector>
#include "cmCommand.h"
class cmExecutionStatus;
class cmUnexpectedCommand : public cmCommand
{
public:
cmUnexpectedCommand(std::string const& name, const char* error)
: Name(name)
, Error(error)
{
}
2018-01-26 17:06:56 +01:00
cmCommand* Clone() override
2017-04-14 19:02:05 +02:00
{
return new cmUnexpectedCommand(this->Name, this->Error);
}
bool InitialPass(std::vector<std::string> const& args,
2018-01-26 17:06:56 +01:00
cmExecutionStatus& status) override;
2017-04-14 19:02:05 +02:00
private:
std::string Name;
const char* Error;
};
#endif