| 35 | namespace { |
| 36 | struct POSTFIX_SCHEMA(factory_t) { |
| 37 | JsonSerializer* operator()(IfcParse::IfcFile* file, const std::string& json_filename, JsonSerializer::Dialect dialect) const { |
| 38 | POSTFIX_SCHEMA(JsonSerializer)* s = new POSTFIX_SCHEMA(JsonSerializer)(file, json_filename, dialect); |
| 39 | s->setFile(file); |
| 40 | return s; |
| 41 | } |
| 42 | }; |
| 43 | } |
| 44 |
nothing calls this directly
no test coverage detected