| 17 | } |
| 18 | |
| 19 | void XmlSerializerFactory::Factory::bind(const std::string& schema_name, fn f) { |
| 20 | const std::string schema_name_lower = boost::to_lower_copy(schema_name); |
| 21 | this->insert(std::make_pair(schema_name_lower, f)); |
| 22 | } |
| 23 | |
| 24 | XmlSerializer* XmlSerializerFactory::Factory::construct(const std::string& schema_name, IfcParse::IfcFile* file, std::string xml_filename) { |
| 25 | const std::string schema_name_lower = boost::to_lower_copy(schema_name); |
no test coverage detected