| 84 | |
| 85 | template <typename T> |
| 86 | std::basic_string<T> string_as(const std::string& string) { |
| 87 | std::basic_string<T> result; |
| 88 | result.assign(string.begin(), string.end()); |
| 89 | return result; |
| 90 | } |
| 91 | |
| 92 | template <typename T> |
| 93 | void json_message(T& out, const IfcUtil::IfcBaseClass* current_product, Logger::Severity type, const std::string& message, const IfcUtil::IfcBaseInterface* instance) { |