Add change config file and run config file

This commit is contained in:
Timofey 2022-08-11 16:43:53 +03:00
parent 77a2ee9989
commit 51188e9f8e
9 changed files with 273 additions and 22 deletions

View file

@ -14,6 +14,9 @@ class Clippy {
using TargetPtr = std::unique_ptr<clippy::targets::Target>;
private:
TargetPtr TryExecuteClippyCommand(const std::vector<std::string>& args);
TargetPtr GetScriptTarget(const std::vector<std::string>& args);
ProjectList projects_;
void LoadProjects();
std::optional<ProjectList> projects_;
};