Salome HOME
Parametric API high level for the primitive "Box".
[modules/shaper.git] / src / PrimitivesAPI / PrimitivesAPI.h
diff --git a/src/PrimitivesAPI/PrimitivesAPI.h b/src/PrimitivesAPI/PrimitivesAPI.h
new file mode 100644 (file)
index 0000000..5ef0b78
--- /dev/null
@@ -0,0 +1,20 @@
+// Copyright (C) 2014-2016 CEA/DEN, EDF R&D
+
+#ifndef PRIMITIVESAPI_H
+#define PRIMITIVESAPI_H
+
+#if defined PRIMITIVESAPI_EXPORTS
+#if defined WIN32
+#define PRIMITIVESAPI_EXPORT __declspec( dllexport )
+#else
+#define PRIMITIVESAPI_EXPORT
+#endif
+#else
+#if defined WIN32
+#define PRIMITIVESAPI_EXPORT __declspec( dllimport )
+#else
+#define PRIMITIVESAPI_EXPORT
+#endif
+#endif
+
+#endif