Added handling of query-driver target and using default driver for '.'

This commit is contained in:
Bartek Kryza
2023-05-07 16:32:55 +02:00
parent d31f282816
commit 16ca3bd50a
5 changed files with 53 additions and 8 deletions

View File

@@ -35,13 +35,18 @@ public:
void execute();
void extract_target(const std::string &output);
void extract_system_include_paths(const std::string &output);
const std::vector<std::string> &system_include_paths() const;
const std::string &target() const;
private:
const std::string command_;
const std::string language_;
std::string target_;
std::vector<std::string> system_include_paths_;
};
} // namespace clanguml::util