Wrap more classes into ifcopenshell:: namespace

This commit is contained in:
Thomas Krijnen
2026-08-08 13:58:39 +02:00
parent 2c47c9d4fa
commit 02481b3247
149 changed files with 678 additions and 627 deletions
+2 -2
View File
@@ -8,7 +8,7 @@
#include <string>
#include <vector>
class SERIALIZERS_API RocksDbSerializer : public serializer {
class SERIALIZERS_API RocksDbSerializer : public ifcopenshell::geom::serializer {
private:
std::string input_filename_;
std::string rocksdb_filename_;
@@ -16,7 +16,7 @@ private:
void write_streaming_();
public:
RocksDbSerializer(const std::string& input_filename, const std::string& rocksdb_filename, const std::vector<std::string>& skip_supertypes = {}, ::logger* logger = nullptr);
RocksDbSerializer(const std::string& input_filename, const std::string& rocksdb_filename, const std::vector<std::string>& skip_supertypes = {}, ifcopenshell::logger* logger = nullptr);
virtual ~RocksDbSerializer() {}