Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/gui.git] / src / LightApp / LightApp.h
1 // Copyright (C) 2005  OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA R&D
2 // 
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either 
6 // version 2.1 of the License.
7 // 
8 // This library is distributed in the hope that it will be useful 
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public  
14 // License along with this library; if not, write to the Free Software 
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 // File:      LightApp.h
20 // Created:   June, 2005
21 // Author:    OCC team
22
23
24 // The following ifdef block is the standard way of creating macros which make exporting 
25 // from a DLL simpler. All files within this DLL are compiled with the LightApp_EXPORTS
26 // symbol defined on the command line. this symbol should not be defined on any project
27 // that uses this DLL. This way any other project whose source files include this file see 
28 // LightApp_API functions as being imported from a DLL, wheras this DLL sees symbols
29 // defined with this macro as being exported.
30 #ifdef WNT
31
32 #ifdef LIGHTAPP_EXPORTS
33 #define LIGHTAPP_EXPORT __declspec(dllexport)
34 #else
35 #define LIGHTAPP_EXPORT __declspec(dllimport)
36 #endif
37
38 #pragma warning ( disable:4251 )
39 #pragma warning ( disable:4786 )
40 #pragma warning ( disable:4503 )
41
42 #else
43 #define LIGHTAPP_EXPORT
44 #endif               //WNT
45
46 #define APP_VERSION "0.1"