mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-18 22:33:33 +00:00
15 lines
267 B
C++
15 lines
267 B
C++
|
|
#include "../ifcparse/IfcBaseClass.h"
|
||
|
|
#include "../ifcgeom/taxonomy.h"
|
||
|
|
|
||
|
|
namespace ifcopenshell {
|
||
|
|
|
||
|
|
namespace geometry {
|
||
|
|
|
||
|
|
class abstract_mapping {
|
||
|
|
public:
|
||
|
|
virtual ifcopenshell::geometry::taxonomy::item* map(const IfcUtil::IfcBaseClass*) = 0;
|
||
|
|
};
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|