28 #pragma warning (disable: 4512 4514 4625 4626 4640 4710 4711 4738 4820 4986)
44 #ifdef CEE_STATIC_LIBS
45 #define CEE_CORE_EXPORT
47 #ifdef CEE_CORE_BUILD_DLL_EXPORT
48 #define CEE_CORE_EXPORT __declspec(dllexport)
50 #define CEE_CORE_EXPORT __declspec(dllimport)
52 #endif // CEE_STATIC_LIBS
54 #define CEE_CORE_EXPORT
60 #if defined WIN32 && !defined NOMINMAX
67 #define CEE_DISALLOW_COPY_AND_ASSIGN(Class) \
68 Class(const Class&); \
69 void operator=(const Class&)
74 #define CEE_UNUSED(EXPR) (void)(EXPR);
76 #define CEE_UNUSED(EXPR) (void)sizeof(EXPR);
82 # define CEE_GCC_VER (__GNUC__*10000 + __GNUC_MINOR__*100 + __GNUC_PATCHLEVEL__)
105 #include "CeeCore/Pimpl.h"
Namespace cee contains all functionality and structures under the Core component. ...
Definition: AppLogging.cpp:20
const float UNDEFINED_FLOAT
Undefined value for float.
Definition: Base.h:97
const double UNDEFINED_FLOAT_THRESHOLD
Undefined threshold for float.
Definition: Base.h:99
const double UNDEFINED_DOUBLE_THRESHOLD
Undefined threshold for double.
Definition: Base.h:95
const size_t UNDEFINED_SIZE_T
Undefined value for size_t.
Definition: Base.h:91
const double UNDEFINED_DOUBLE
Undefined value for double.
Definition: Base.h:93
const int UNDEFINED_INT
Undefined value for int.
Definition: Base.h:89