]> Dogcows Code - chaz/yoink/blob - src/moof/precompile.hh
pch support
[chaz/yoink] / src / moof / precompile.hh
1
2 /*] Copyright (c) 2009-2011, Charles McGarvey [*****************************
3 **] All rights reserved.
4 *
5 * Distributable under the terms and conditions of the 2-clause BSD license;
6 * see the file COPYING for a complete text of the license.
7 *
8 *****************************************************************************/
9
10 #ifndef _MOOF_PRECOMPILE_HH_
11 #define _MOOF_PRECOMPILE_HH_
12
13 /**
14 * \file precompile.hh
15 * PCH includes for quicker compiles.
16 */
17
18 #include <algorithm>
19 #include <bitset>
20 #include <cerrno>
21 #include <cmath>
22 #include <cstdio>
23 #include <cstdlib>
24 #include <cstring>
25 #include <ctime>
26 #include <deque>
27 #include <exception>
28 #include <fstream>
29 #include <functional>
30 #include <iomanip>
31 #include <iostream>
32 #include <limits>
33 #include <list>
34 #include <map>
35 #include <set>
36 #include <sstream>
37 #include <stack>
38 #include <stdexcept>
39 #include <stdint.h>
40 #include <stddef.h>
41 #include <string>
42 #include <utility>
43 #include <vector>
44
45 #include <boost/algorithm/string.hpp>
46 #include <boost/bind.hpp>
47 #include <boost/function.hpp>
48 #include <boost/noncopyable.hpp>
49 #include <boost/shared_ptr.hpp>
50 #include <boost/shared_array.hpp>
51 #include <boost/weak_ptr.hpp>
52 #include <lua.hpp>
53 #include <png.h>
54 #include <SDL/SDL.h>
55 #include <SDL/SDL_opengl.h>
56 #include <zlib.h>
57
58 #endif // _MOOF_PRECOMPILE_HH_
59
This page took 0.030299 seconds and 4 git commands to generate.