Skip to content
Snippets Groups Projects
Commit ab742613 authored by Fabian Reister's avatar Fabian Reister
Browse files

xml/Reader: default arg

parent 6128ed04
No related branches found
No related tags found
1 merge request!268aron code generation: explicitly specifying include paths
......@@ -50,8 +50,8 @@ namespace armarx::aron::typereader::xml
public:
Reader() = default;
void parseFile(const std::string& filename, const std::vector<std::filesystem::path>& includePaths) override;
void parseFile(const std::filesystem::path& file, const std::vector<std::filesystem::path>& includePaths) override;
void parseFile(const std::string& filename, const std::vector<std::filesystem::path>& includePaths = {}) override;
void parseFile(const std::filesystem::path& file, const std::vector<std::filesystem::path>& includePaths = {}) override;
private:
void parse(const RapidXmlReaderPtr& node, const std::filesystem::path& filePath, const std::vector<std::filesystem::path>& includePaths);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment