Parameter naming

This commit is contained in:
Thomas Krijnen
2026-03-31 18:23:13 +02:00
parent a07f56db6f
commit 20ccf2b455
24 changed files with 619 additions and 605 deletions
+3 -3
View File
@@ -77,11 +77,11 @@ class IFC_PARSE_API spf_lexer {
// void TokenString(size_t offset, std::string& result);
};
IFC_PARSE_API std::vector<express::Base> traverse(const express::Base& instance, int max_level = -1);
IFC_PARSE_API std::vector<express::Base> traverse(const express::Base& instance, int max_depth = -1);
IFC_PARSE_API std::vector<express::Base> traverse_breadth_first(const express::Base& instance, int max_level = -1);
IFC_PARSE_API std::vector<express::Base> traverse_breadth_first(const express::Base& instance, int max_depth = -1);
} // namespace ifcopenshell
IFC_PARSE_API std::ostream& operator<<(std::ostream& out, const ifcopenshell::file& file);
IFC_PARSE_API std::ostream& operator<<(std::ostream& stream, const ifcopenshell::file& file);
#endif