]> SALOME platform Git repositories - plugins/netgenplugin.git/commitdiff
Salome HOME
Export classes for right compilation on Win32 platform
authorabd <abd@opencascade.com>
Mon, 27 Oct 2008 11:51:16 +0000 (11:51 +0000)
committerabd <abd@opencascade.com>
Mon, 27 Oct 2008 11:51:16 +0000 (11:51 +0000)
src/GUI/Makefile.am
src/GUI/NETGENPluginGUI.h [new file with mode: 0755]
src/GUI/NETGENPluginGUI_HypothesisCreator.h
src/GUI/NETGENPluginGUI_SimpleCreator.h

index c2170cea6e0b26bce55db78c9ba4bdc87f613af3..89248ca49e3529a54638b3d841d7da797b374bcd 100644 (file)
@@ -33,6 +33,7 @@ lib_LTLIBRARIES = libNETGENPluginGUI.la
 
 dist_libNETGENPluginGUI_la_SOURCES = \
        NETGENPluginGUI.cxx \
+       NETGENPluginGUI.h \
        NETGENPluginGUI_HypothesisCreator.h \
        NETGENPluginGUI_HypothesisCreator.cxx \
        NETGENPluginGUI_SimpleCreator.h \
diff --git a/src/GUI/NETGENPluginGUI.h b/src/GUI/NETGENPluginGUI.h
new file mode 100755 (executable)
index 0000000..8835cdb
--- /dev/null
@@ -0,0 +1,36 @@
+//  NETGENPlugin GUI: GUI for plugged-in mesher NETGENPlugin
+//
+//  Copyright (C) 2003  CEA
+// 
+//  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   : NETGENPluginGUI.h
+//  Author : Alexander A. BORODIN
+//  Module : NETGENPlugin
+//  $Header: 
+
+#ifdef WIN32
+  #ifdef NETGENPLUGIN_GUI_EXPORTS
+    #define NETGENPLUGIN_GUI_EXPORT __declspec( dllexport )
+  #else
+    #define NETGENPLUGIN_GUI_EXPORT __declspec( dllimport )
+  #endif
+#else
+  #define NETGENPLUGIN_GUI_EXPORT
+#endif
index 90678bcdc6c1a3db6771ec3d55444556a6f91161..8eaefe0f90a58a782a0ae0b4ef3bcc4bf0ab8c4b 100644 (file)
 #ifndef NETGENPLUGINGUI_HypothesisCreator_HeaderFile
 #define NETGENPLUGINGUI_HypothesisCreator_HeaderFile
 
-#ifdef WIN32
-  #ifdef NETGENPLUGIN_GUI_EXPORTS
-    #define NETGENPLUGIN_GUI_EXPORT __declspec( dllexport )
-  #else
-    #define NETGENPLUGIN_GUI_EXPORT __declspec( dllimport )
-  #endif
-#else
-  #define NETGENPLUGIN_GUI_EXPORT
-#endif
+#include "NETGENPluginGUI.h"
 
 #include <SMESHGUI_Hypotheses.h>
 
index 483bb4ee41e8dbafc1f5c8b67581514d6bada815..d4ca93b832a13c1e994122cc87b49a26060855a1 100644 (file)
@@ -24,8 +24,9 @@
 #ifndef NETGENPluginGUI_SimpleCreator_H
 #define NETGENPluginGUI_SimpleCreator_H
 
+
+#include "NETGENPluginGUI.h"
 // SMESH includes
-#include "NETGENPlugin_Defs.hxx"
 #include <SMESHGUI_Hypotheses.h>
 
 class  QCheckBox;
@@ -34,7 +35,8 @@ class  QRadioButton;
 class  QtxIntSpinBox;
 class  SMESHGUI_SpinBox;
 
-class NETGENPLUGIN_EXPORT NETGENPluginGUI_SimpleCreator : public SMESHGUI_GenericHypothesisCreator
+class NETGENPLUGIN_GUI_EXPORT NETGENPluginGUI_SimpleCreator :
+  public SMESHGUI_GenericHypothesisCreator
 {
   Q_OBJECT