Dllimport/export for IfcGeom. Closes #77

This commit is contained in:
Stinkfist0
2016-07-11 21:36:12 +03:00
parent 17e153d0c5
commit 6bcabfd567
12 changed files with 86 additions and 39 deletions
+3 -3
View File
@@ -41,7 +41,7 @@ namespace IfcGeom {
namespace Representation {
class Representation {
class IFC_GEOM_API Representation {
Representation(const Representation&); //N/A
Representation& operator =(const Representation&); //N/A
protected:
@@ -54,7 +54,7 @@ namespace IfcGeom {
virtual ~Representation() {}
};
class BRep : public Representation {
class IFC_GEOM_API BRep : public Representation {
private:
unsigned int id;
const IfcGeom::IfcRepresentationShapeItems _shapes;
@@ -73,7 +73,7 @@ namespace IfcGeom {
const unsigned int& getId() const { return id; }
};
class Serialization : public Representation {
class IFC_GEOM_API Serialization : public Representation {
private:
int _id;
std::string _brep_data;