]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/kernel/marTypes.h
*** empty log message ***
[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/24 10:47:12 $
7   Version:   $Revision: 1.4 $
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
34 //JHCL - Start
35 //If we're using windows
36 #if defined(WIN32)
37         //If we're using a dynamic library
38         #ifdef creaMaracasVisu_BUILD_SHARED
39                 #define MARACASVISULIB_EXPORTS __declspec( dllexport )
40         #else
41                 #define MARACASVISULIB_EXPORTS //__declspec( dllimport )
42         #endif //maracasvisulib_EXPORTS
43 #else
44         #define MARACASVISULIB_EXPORTS 
45 #endif
46 //JHCL - End
47
48
49 /*
50 #if defined(WIN32) //&& defined(MARACAS_BUILD_SHARED_LIBS)
51 # ifdef MaracasKernel_EXPORTS
52 #   define MAR_KERNEL_EXPORT __declspec( dllexport )
53 # else
54 #   define MAR_KERNEL_EXPORT //__declspec( dllimport )
55 # endif //MaracasKernel_EXPORTS
56
57 # ifdef MaracasInterfaceWX_EXPORTS
58 #   define MAR_INTERFACEWX_EXPORT __declspec( dllexport )
59 # else
60 #   define MAR_INTERFACEWX_EXPORT //__declspec( dllimport )
61 # endif //MaracasInterfaceWX_EXPORTS
62
63 #else
64
65 # define MAR_KERNEL_EXPORT
66 # define MAR_INTERFACEWX_EXPORT
67
68 #endif //WIN32
69 */
70
71 // Other ridiculous constants and typedefs. Just for fun!
72 #define MAR_DEFAULT_FILE_PARAMETERS      "params.dat"
73 #define MAR_DEFAULT_FILE_DICTIONARY      "marDict.txt"
74 #define MAR_DEFAULT_FILE_EXT_EXPERIMENT  ".exp"
75
76
77 /*! \file kgfo_typ.hxx
78  *  \brief General constants, types, enums, structs.
79  *
80  *  This file is included by all project files.
81  */
82 typedef unsigned char  uchar;  /*!< unsigned char redefintion. */
83 typedef unsigned int   uint;   /*!< unsigned int redefintion. */
84 typedef unsigned long  ulong;  /*!< unsigned long redefintion. */
85 typedef unsigned short ushort; /*!< unsigned short redefintion. */
86
87 // Is this compilation using LibIDO?
88
89 //#define KGFO_USE_IDO  // JPRx : Do NOT use LibIDO
90
91 // Is this compilation using VTK?
92 #define KGFO_USE_VTK
93
94 #ifdef _MSC_VER
95 #pragma warning ( disable : 4018 )
96 // 'this' : used in base member initializer list ... so what !
97 #pragma warning ( disable : 4355 )
98 #endif //_MSC_VER
99
100 #endif // __MAR__KERNEL__TYPES__HXX__
101
102 // eof - marTypes.h