]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/kernel/marTypes.h
e0e57dedf468f9951cfec0b357c60783d31ba5d5
[creaMaracasVisu.git] / lib / maracasVisuLib / src / kernel / marTypes.h
1 /*=========================================================================
2
3   Program:   wxMaracas
4   Module:    $RCSfile: marTypes.h,v $
5   Language:  C++
6   Date:      $Date: 2008/11/14 15:57:12 $
7   Version:   $Revision: 1.3 $
8
9   Copyright: (c) 2002, 2003
10   License:
11   
12      This software is distributed WITHOUT ANY WARRANTY; without even 
13      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
14      PURPOSE.  See the above copyright notice for more information.
15
16 =========================================================================*/
17
18 #ifndef __MAR__KERNEL__TYPES__HXX__
19 #define __MAR__KERNEL__TYPES__HXX__
20
21 /*! /def MAR_KERNEL_EXPORT
22  *  \brief Library export type.
23  *
24  *  Use this constant to define your class, function or variable link type.
25  *  Ex.: class MAR_KERNEL_EXPORT myClass { ... };
26  *  This is defined by means of other constants:
27  *       - MAR_KERNEL_MAKING_DLL (compilation of a dll).
28  *       - MAR_KERNEL_USING_DLL  (linking, ie, using the dll).
29  *  Note that if you want to build a static library, you should forget all
30  *  this fairy tale :-).
31  */
32
33 //JHCL - Start
34 //If we're using windows
35 #if defined(WIN32)
36 //If we're using a dynamic library
37 # ifdef maracasVisuLib_BUILD_SHARED
38 #   define MARACASVISULIB_EXPORTS __declspec( dllexport )
39 # else
40 #   define MARACASVISULIB_EXPORTS //__declspec( dllimport )
41 # endif //maracasvisulib_EXPORTS
42 #else
43 #   define MARACASVISULIB_EXPORTS 
44 #endif
45 //JHCL - End
46
47 #if defined(WIN32) //&& defined(MARACAS_BUILD_SHARED_LIBS)
48 //guerapa0
49 # ifdef MaracasKernel_EXPORTS
50 //querapa1
51 #   define MAR_KERNEL_EXPORT __declspec( dllexport )
52 # else
53 #   define MAR_KERNEL_EXPORT //__declspec( dllimport )
54 # endif //MaracasKernel_EXPORTS
55
56 # ifdef MaracasInterfaceWX_EXPORTS
57 #   define MAR_INTERFACEWX_EXPORT __declspec( dllexport )
58 # else
59 #   define MAR_INTERFACEWX_EXPORT //__declspec( dllimport )
60 # endif //MaracasInterfaceWX_EXPORTS
61
62 #else
63
64 # define MAR_KERNEL_EXPORT
65 # define MAR_INTERFACEWX_EXPORT
66
67 #endif //WIN32
68 // Other ridiculous constants and typedefs. Just for fun!
69 #define MAR_DEFAULT_FILE_PARAMETERS      "params.dat"
70 #define MAR_DEFAULT_FILE_DICTIONARY      "marDict.txt"
71 #define MAR_DEFAULT_FILE_EXT_EXPERIMENT  ".exp"
72
73
74 /*! \file kgfo_typ.hxx
75  *  \brief General constants, types, enums, structs.
76  *
77  *  This file is included by all project files.
78  */
79 typedef unsigned char  uchar;  /*!< unsigned char redefintion. */
80 typedef unsigned int   uint;   /*!< unsigned int redefintion. */
81 typedef unsigned long  ulong;  /*!< unsigned long redefintion. */
82 typedef unsigned short ushort; /*!< unsigned short redefintion. */
83
84 // Is this compilation using LibIDO?
85
86 //#define KGFO_USE_IDO  // JPRx : Do NOT use LibIDO
87
88 // Is this compilation using VTK?
89 #define KGFO_USE_VTK
90
91 #ifdef _MSC_VER
92 #pragma warning ( disable : 4018 )
93 // 'this' : used in base member initializer list ... so what !
94 #pragma warning ( disable : 4355 )
95 #endif //_MSC_VER
96
97 #endif // __MAR__KERNEL__TYPES__HXX__
98
99 // eof - marTypes.h