]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
Issue 0019981: integrate patch for compilation with cmake (from E.Adam)
authorvsr <vsr@opencascade.com>
Wed, 15 Oct 2008 10:19:36 +0000 (10:19 +0000)
committervsr <vsr@opencascade.com>
Wed, 15 Oct 2008 10:19:36 +0000 (10:19 +0000)
src/TestContainer/SALOME_TestComponent.hxx [new file with mode: 0644]
src/TestContainer/SALOME_TestComponent_i.hxx

diff --git a/src/TestContainer/SALOME_TestComponent.hxx b/src/TestContainer/SALOME_TestComponent.hxx
new file mode 100644 (file)
index 0000000..17d96b6
--- /dev/null
@@ -0,0 +1,39 @@
+// SALOME TestContainer : test of container creation and its life cycle
+//
+// Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
+// 
+// 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. 
+// 
+// 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   : SALOME_TestComponent.hxx
+// Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
+//
+
+#ifndef SALOME_TESTCOMPONENT_HXX
+#define SALOME_TESTCOMPONENT_HXX
+
+#ifdef WIN32
+# if defined TESTCONTAINER_EXPORTS
+#  define TESTCONTAINER_EXPORT __declspec( dllexport )
+# else
+#  define TESTCONTAINER_EXPORT __declspec( dllimport )
+# endif
+#else
+# define TESTCONTAINER_EXPORT
+#endif
+
+#endif // SALOME_TESTCOMPONENT_HXX
index 8bac7eecbee69f1fea77fa2a08dd67810de90c54..fb59ed478ae23f6b000d9e2b6acc0e06be3d5ac9 100644 (file)
@@ -29,6 +29,8 @@
 #ifndef _SALOME_TESTCOMPONENT_I_HXX_
 #define _SALOME_TESTCOMPONENT_I_HXX_
 
+#include "SALOME_TestComponent.hxx"
+
 #include <iostream>
 
 #include "SALOME_Component_i.hxx"
@@ -36,7 +38,7 @@
 #include <SALOMEconfig.h>
 #include CORBA_SERVER_HEADER(SALOME_TestComponent)
 
-class Engines_TestComponent_i: 
+class TESTCONTAINER_EXPORT Engines_TestComponent_i: 
   public POA_Engines::TestComponent,
   public Engines_Component_i 
 {