mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-06 18:26:22 +03:00
24 lines
293 B
C
Executable File
24 lines
293 B
C
Executable File
#ifndef GLOBAL_H
|
|
#define GLOBAL_H
|
|
|
|
#include <qobject.h>
|
|
#include <qstring.h>
|
|
|
|
#if defined WNT
|
|
#ifdef _DEBUG
|
|
#include <assert.h>
|
|
#define verify(a) assert(a)
|
|
#else
|
|
#define verify(a) a
|
|
#endif
|
|
#else
|
|
#define verify(a) a;
|
|
#endif
|
|
|
|
#ifndef WNT
|
|
#define true TRUE
|
|
#define false FALSE
|
|
#endif
|
|
|
|
#endif
|