Gray C++ Libraries  0.0.2
A set of C++ libraries for MSVC, GNU on Windows, WinCE, Linux
GrayGUI.h
Go to the documentation of this file.
1 //
4 //
5 #ifndef _INC_GrayGUI_H
6 #define _INC_GrayGUI_H
7 #ifndef NO_PRAGMA_ONCE
8 #pragma once
9 #endif
10 
11 #if defined _MSC_VER && (_MSC_VER >= 1300)
12 #define USE_DX // MS DirectX support needed
13 //#define USE_DXM // DX Math
14 #endif
15 
16 #ifndef GRAYGUI_LINK
17 #if defined(_MFC_VER) || defined(GRAY_STATICLIB) // GRAY_STATICLIB or _MFC_VER can be defined to make Gray* all static lib
18 #define GRAYGUI_LINK
19 #else
20 #define GRAYGUI_LINK __DECL_IMPORT
21 #endif
22 #endif
23 
26 #include "Gray3D/include/Gray3D.h"
27 
28 namespace GrayGUI { using namespace Gray3D; using namespace GrayLib; using namespace Gray; };
29 
30 #endif
Definition: Gray3D.cpp:12
Definition: GrayGUI.cpp:11
Definition: cMesh.h:22
< The main namespace for all Core functions.
Definition: GrayCore.cpp:14