]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Issue #385 issue with "thin" lines on debian resolved
authorsbh <sergey.belash@opencascade.com>
Tue, 27 Jan 2015 12:01:00 +0000 (15:01 +0300)
committersbh <sergey.belash@opencascade.com>
Tue, 27 Jan 2015 12:01:00 +0000 (15:01 +0300)
src/GeomAPI/CMakeLists.txt
src/GeomAPI/GeomAPI_ICustomPrs.cpp [new file with mode: 0644]
src/GeomAPI/GeomAPI_ICustomPrs.h

index 0de88e1edf91ef91631f56abee2b149da1e21ac6..ef0f5b1a97f453f5828c6242dce9486e1416f858 100644 (file)
@@ -52,6 +52,7 @@ SET(PROJECT_SOURCES
     GeomAPI_Curve.cpp
     GeomAPI_DataMapOfShapeShape.cpp
     GeomAPI_Vertex.cpp
+    GeomAPI_ICustomPrs.cpp
 )
 
 SET(PROJECT_LIBRARIES
diff --git a/src/GeomAPI/GeomAPI_ICustomPrs.cpp b/src/GeomAPI/GeomAPI_ICustomPrs.cpp
new file mode 100644 (file)
index 0000000..69bb68f
--- /dev/null
@@ -0,0 +1,12 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
+// File:        GeomAPI_ICustomPrs.cpp
+// Created:     11 Dec 2014
+// Author:      Vitaly SMETANNIKOV
+
+#include <GeomAPI_ICustomPrs.h>
+
+GeomAPI_ICustomPrs::~GeomAPI_ICustomPrs()
+{
+
+}
index cbed444b76919614476c2d0ea53f5a0068926f26..72c362d657e7e46787e30f3852cc878781de4e70 100644 (file)
@@ -7,6 +7,7 @@
 #ifndef GeomAPI_ICustomPrs_H
 #define GeomAPI_ICustomPrs_H
 
+#include "GeomAPI.h"
 #include "GeomAPI_AISObject.h"
 
 /**
 class GeomAPI_ICustomPrs
 {
 public:
+  GEOMAPI_EXPORT virtual ~GeomAPI_ICustomPrs();
+
   /// Modifies the given presentation in the custom way.
   virtual void customisePresentation(AISObjectPtr thePrs) = 0;
 };
 
 typedef std::shared_ptr<GeomAPI_ICustomPrs> GeomCustomPrsPtr;
 
-#endif
\ No newline at end of file
+#endif