0023284: Using 'memcpy' on class that contains a virtual method
[occt.git] / samples / qt / Graphic3dDemo / inc / global.h
1 #ifndef GLOBAL_H
2 #define GLOBAL_H
3
4 #include <qobject.h>
5 #include <qstring.h>
6
7 #if defined WNT
8 #ifdef _DEBUG
9 #include <assert.h>
10 #define verify(a)   assert(a)
11 #else
12 #define verify(a) a
13 #endif
14 #else
15 #define verify(a)   a;
16 #endif
17
18 #ifndef WNT
19 #define true TRUE
20 #define false FALSE
21 #endif
22
23 #endif