mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-26 00:00:39 -05:00
c1de0976f8
Make sure that all classes have a public inherited constructor, protected data members for the arguments, followed by other private virtual functions. The intention is to make following changes to have a smaller diff.
31 lines
724 B
C++
31 lines
724 B
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#pragma once
|
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
#include "cmCTestHandlerCommand.h"
|
|
|
|
class cmCTestGenericHandler;
|
|
class cmCommand;
|
|
|
|
class cmCTestConfigureCommand : public cmCTestHandlerCommand
|
|
{
|
|
public:
|
|
using cmCTestHandlerCommand::cmCTestHandlerCommand;
|
|
|
|
protected:
|
|
void BindArguments() override;
|
|
std::string Options;
|
|
|
|
private:
|
|
std::unique_ptr<cmCommand> Clone() override;
|
|
|
|
std::string GetName() const override { return "ctest_configure"; }
|
|
|
|
std::unique_ptr<cmCTestGenericHandler> InitializeHandler() override;
|
|
};
|