Files
IfcOpenShell/src/ifcgeom/abstract_mapping.h
T

15 lines
267 B
C++
Raw Normal View History

2019-08-04 09:36:31 +02:00
#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;
};
}
}