libjmmcg  release_579_6_g8cffd
A C++ library containing an eclectic mix of useful, advanced components.
stdafx.h
Go to the documentation of this file.
1 /******************************************************************************
2 ** Copyright © 2011 by J.M.McGuiness, isimud@hussar.me.uk
3 **
4 ** This library is free software; you can redistribute it and/or
5 ** modify it under the terms of the GNU Lesser General Public
6 ** License as published by the Free Software Foundation; either
7 ** version 2.1 of the License, or (at your option) any later version.
8 **
9 ** This library 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 GNU
12 ** Lesser General Public License for more details.
13 **
14 ** You should have received a copy of the GNU Lesser General Public
15 ** License along with this library; if not, write to the Free Software
16 ** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 */
18 
19 // stdafx.h : include file for standard system include files,
20 // or project specific include files that are used frequently, but
21 // are changed infrequently
22 //
23 
24 #pragma once
25 
26 #define BOOST_MPL_CFG_NO_PREPROCESSED_HEADERS
27 #define BOOST_MPL_LIMIT_LIST_SIZE 50
28 
29 #define WINVER 0x0501
30 #define _WIN32_WINNT 0x0501
31 
32 #define _CRT_SECURE_NO_WARNINGS
33 
34 #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
35 #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
36 
37 #include "core/debug_defines.hpp"
38 #include "core/non_copyable.hpp"
39 
40 #include <boost/bind/bind.hpp>
41 #include <boost/mpl/list.hpp>
42 #include <boost/typeof/std/utility.hpp>
43 
44 #include <algorithm>
45 #include <functional>
46 #include <limits>
47 #include <map>
48 #include <vector>