Add string decode/encode api

This commit is contained in:
Thomas Krijnen
2026-08-22 13:12:36 +02:00
parent a5e94cf0d8
commit 87bc6bfbab
8 changed files with 55 additions and 5 deletions
+1 -5
View File
@@ -67,10 +67,6 @@ class IFC_PARSE_API character_decoder {
std::string get(size_t& offset);
};
} // namespace ifcopenshell
namespace ifcopenshell {
class IFC_PARSE_API character_encoder {
private:
std::u32string str_;
@@ -80,6 +76,6 @@ class IFC_PARSE_API character_encoder {
operator std::string();
};
} // namespace IfcWrite
} // namespace ifcopenshell
#endif