| 79 | }; |
| 80 | |
| 81 | class cmInstallCommandFileSetArguments : public cmInstallCommandArguments |
| 82 | { |
| 83 | public: |
| 84 | cmInstallCommandFileSetArguments(std::string defaultComponent, |
| 85 | cmMakefile& makefile); |
| 86 | |
| 87 | void Parse(std::vector<std::string> args, |
| 88 | std::vector<std::string>* unconsumedArgs); |
| 89 | |
| 90 | std::string const& GetFileSet() const { return this->FileSet; } |
| 91 | |
| 92 | private: |
| 93 | std::string FileSet; |
| 94 | }; |
no outgoing calls
no test coverage detected
searching dependent graphs…