Export templates

This commit is contained in:
Thomas Krijnen
2026-04-21 11:55:04 +02:00
parent 046ceb452a
commit 325db2e57f
2 changed files with 9 additions and 9 deletions
+4 -4
View File
@@ -311,11 +311,11 @@ std::string character_decoder<Reader>::get(size_t& ptr) {
return s;
}
template class character_decoder<file_reader<full_buffer_impl>>;
template class character_decoder<file_reader<paged_file_impl>>;
template class character_decoder<file_reader<pushed_sequential_impl>>;
template class IFC_PARSE_API character_decoder<file_reader<full_buffer_impl>>;
template class IFC_PARSE_API character_decoder<file_reader<paged_file_impl>>;
template class IFC_PARSE_API character_decoder<file_reader<pushed_sequential_impl>>;
#ifdef USE_MMAP
template class character_decoder<file_reader<mmap_impl>>;
template class IFC_PARSE_API character_decoder<file_reader<mmap_impl>>;
#endif
character_encoder::character_encoder(const std::string& input)
+5 -5
View File
@@ -411,11 +411,11 @@ token spf_lexer<Reader>::next() {
}
}
template class spf_lexer<file_reader<full_buffer_impl>>;
template class spf_lexer<file_reader<paged_file_impl>>;
template class spf_lexer<file_reader<pushed_sequential_impl>>;
template class IFC_PARSE_API spf_lexer<file_reader<full_buffer_impl>>;
template class IFC_PARSE_API spf_lexer<file_reader<paged_file_impl>>;
template class IFC_PARSE_API spf_lexer<file_reader<pushed_sequential_impl>>;
#ifdef USE_MMAP
template class spf_lexer<file_reader<mmap_impl>>;
template class IFC_PARSE_API spf_lexer<file_reader<mmap_impl>>;
#endif
bool token::is_operator() {
@@ -1745,7 +1745,7 @@ std::optional<std::tuple<size_t, const ifcopenshell::declaration*, std::shared_p
return return_value;
}
template class ifcopenshell::instance_streamer<file_reader<full_buffer_impl>>;
template class IFC_PARSE_API ifcopenshell::instance_streamer<file_reader<full_buffer_impl>>;
template <typename Reader>
void ifcopenshell::impl::in_memory_file_storage::read_from_stream(Reader* s, const ifcopenshell::schema_definition*& schema, unsigned int& max_id, const std::set<std::string>& typed_to_bypass) {