CMake/Source/cmOutputRequiredFilesCommand.h
Brad King 0b33aee48b Use C++11 override instead of CM_OVERRIDE
We now require C++11 support including `override`.  Drop use of
the old compatibility macro.  Convert references as follows:

    git grep -l CM_OVERRIDE -- '*.h' '*.hxx' '*.cxx' |
      xargs sed -i 's/CM_OVERRIDE/override/g'
2017-09-15 10:06:41 -04:00

34 lines
883 B
C++

/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#ifndef cmOutputRequiredFilesCommand_h
#define cmOutputRequiredFilesCommand_h
#include "cmConfigure.h" // IWYU pragma: keep
#include <set>
#include <stdio.h>
#include <string>
#include <vector>
#include "cmCommand.h"
class cmDependInformation;
class cmExecutionStatus;
class cmOutputRequiredFilesCommand : public cmCommand
{
public:
cmCommand* Clone() override { return new cmOutputRequiredFilesCommand; }
bool InitialPass(std::vector<std::string> const& args,
cmExecutionStatus& status) override;
void ListDependencies(cmDependInformation const* info, FILE* fout,
std::set<cmDependInformation const*>* visited);
private:
std::string File;
std::string OutputFile;
};
#endif