zenilib  0.5.3.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
zeni.h
Go to the documentation of this file.
1 /* This file is part of the Zenipex Library (zenilib).
2  * Copyright (C) 2011 Mitchell Keith Bloch (bazald).
3  *
4  * zenilib is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * zenilib is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public License
15  * along with zenilib. If not, see <http://www.gnu.org/licenses/>.
16  */
17 
18 #ifndef ZENI_H
19 #define ZENI_H
20 
21 #ifdef _MSC_VER
22 #define NOMINMAX
23 #define WIN32_LEAN_AND_MEAN
24 #ifndef _WINDOWS
25 #define _WINDOWS
26 #endif
27 #if defined(_WIN64) && !defined(X64)
28 #define X64
29 #endif
30 #endif
31 
32 #ifndef ZENI_DLL
33 #define ZENI_DLL __declspec(dllimport)
34 #endif
35 #ifndef ZENI_EXT
36 #define ZENI_EXT extern
37 #endif
38 
39 #ifdef _WINDOWS
40 #define _CRTDBG_MAP_ALLOC
41 #include <stdlib.h>
42 #include <crtdbg.h>
43 #endif
44 
45 #include <Zeni/Android.h>
46 #include <Zeni/Camera.h>
47 #include <Zeni/Chronometer.h>
48 #include <Zeni/Collision.h>
49 #include <Zeni/Color.h>
50 #include <Zeni/Colors.h>
51 #include <Zeni/Coordinate.h>
52 #include <Zeni/Database.h>
53 #include <Zeni/File_Ops.h>
54 #include <Zeni/Hash_Map.h>
55 #include <Zeni/Matrix4f.h>
56 #include <Zeni/Quaternion.h>
57 #include <Zeni/Quit_Event.h>
58 #include <Zeni/Random.h>
59 #include <Zeni/Resource.h>
60 #include <Zeni/Serialization.h>
61 #include <Zeni/String.h>
62 #include <Zeni/Timer_HQ.h>
63 #include <Zeni/Vector3f.h>
64 #include <Zeni/XML.h>
65 
66 #include <Zeni/Camera.hxx>
67 #include <Zeni/Collision.hxx>
68 #include <Zeni/Color.hxx>
69 #include <Zeni/Coordinate.hxx>
70 #include <Zeni/Matrix4f.hxx>
71 #include <Zeni/Quaternion.hxx>
72 #include <Zeni/Resource.hxx>
73 #include <Zeni/Timer_HQ.hxx>
74 #include <Zeni/Vector2f.hxx>
75 #include <Zeni/Vector3f.hxx>
76 
77 #endif