Salome HOME
updated copyright message
[samples/sierpinsky.git] / src / Sierpinsky / SIERPINSKY_Gen_i.hxx
index 5f1df1901b298ccc41c5140217e92b7350242d08..d9ac1cdd1b8603fe36b5fcf4435bf3219f21fed8 100644 (file)
@@ -1,10 +1,28 @@
+// Copyright (C) 2005-2023  OPEN CASCADE
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+
 ///////////////////////////////////////////////////////////
 // File    : SIERPINSKY_Gen_i.hxx
 // Author  : Vadim SANDLER (OCN)
 // Created : 13/07/05
-// Copyright (C) 2005 Open CASCADE
 ///////////////////////////////////////////////////////////
-
+//
 #ifndef __SIERPINSKY_GEN_I_HXX
 #define __SIERPINSKY_GEN_I_HXX
 
 
 #include <list>
 
+#ifdef WIN32
+ #if defined SIERPINSKYENGINE_EXPORTS || defined SIERPINSKYEngine_EXPORTS
+  #define SIERPINSKYENGINE_EXPORT __declspec( dllexport )
+ #else
+  #define SIERPINSKYENGINE_EXPORT __declspec( dllimport )
+ #endif
+#else
+ #define SIERPINSKYENGINE_EXPORT
+#endif
+
 struct MyPoint
 {
   double myX;
@@ -23,7 +51,7 @@ struct MyPoint
   MyPoint( const double x = 0., const double y = 0. ) : myX( x ), myY( y ) {}
 };
 
-class SIERPINSKY_Gen_i: public virtual POA_SIERPINSKY_ORB::SIERPINSKY,
+class SIERPINSKYENGINE_EXPORT SIERPINSKY_Gen_i: public virtual POA_SIERPINSKY_ORB::SIERPINSKY,
                         public virtual Engines_Component_i
 {
 public:
@@ -38,6 +66,9 @@ public:
   // Destructor
   ~SIERPINSKY_Gen_i();
   
+  // Version information
+  virtual char* getVersion();
+
   // Initializes engine with three reference points
   void Init( CORBA::Double theX1, CORBA::Double theY1, 
              CORBA::Double theX2, CORBA::Double theY2,