mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-17 19:09:07 +00:00
56 lines
2.5 KiB
C++
56 lines
2.5 KiB
C++
/********************************************************************************
|
|
* *
|
|
* This file is part of IfcOpenShell. *
|
|
* *
|
|
* IfcOpenShell is free software: you can redistribute it and/or modify *
|
|
* it under the terms of the Lesser GNU General Public License as published by *
|
|
* the Free Software Foundation, either version 3.0 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
* IfcOpenShell is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* Lesser GNU General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the Lesser GNU General Public License *
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
|
* *
|
|
********************************************************************************/
|
|
|
|
#include "../../tree_plugin.h"
|
|
#include "tree_backends.h"
|
|
|
|
#include <boost/dll/alias.hpp>
|
|
|
|
namespace ifcopenshell {
|
|
namespace geom {
|
|
namespace trees {
|
|
namespace opencascade_trianglebvh_tree_plugin {
|
|
|
|
plugin::abi_info plugin_abi() {
|
|
return plugin::host_abi();
|
|
}
|
|
|
|
plugin::metadata plugin_metadata() {
|
|
return tree_plugin_metadata("opencascade.trianglebvh");
|
|
}
|
|
|
|
abstract_tree* create_tree() {
|
|
return new opencascade_tree_backends::trianglebvh_tree();
|
|
}
|
|
|
|
void register_plugin(tree_registry& registry, const plugin::module& module) {
|
|
tree_info info;
|
|
info.backend_id = "opencascade.trianglebvh";
|
|
registry.bind(info, create_tree, module);
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
BOOST_DLL_ALIAS(ifcopenshell::geom::trees::opencascade_trianglebvh_tree_plugin::plugin_abi, ifcopenshell_plugin_abi_v1)
|
|
BOOST_DLL_ALIAS(ifcopenshell::geom::trees::opencascade_trianglebvh_tree_plugin::plugin_metadata, ifcopenshell_plugin_metadata_v1)
|
|
BOOST_DLL_ALIAS(ifcopenshell::geom::trees::opencascade_trianglebvh_tree_plugin::register_plugin, ifcopenshell_register_tree_plugin_v1)
|