]> git.sesse.net Git - casparcg/blob - core/StdAfx.h
git-svn-id: https://casparcg.svn.sourceforge.net/svnroot/casparcg/server/branches...
[casparcg] / core / StdAfx.h
1 /*\r
2 * copyright (c) 2010 Sveriges Television AB <info@casparcg.com>\r
3 *\r
4 *  This file is part of CasparCG.\r
5 *\r
6 *    CasparCG is free software: you can redistribute it and/or modify\r
7 *    it under the terms of the GNU General Public License as published by\r
8 *    the Free Software Foundation, either version 3 of the License, or\r
9 *    (at your option) any later version.\r
10 *\r
11 *    CasparCG is distributed in the hope that it will be useful,\r
12 *    but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14 *    GNU General Public License for more details.\r
15 \r
16 *    You should have received a copy of the GNU General Public License\r
17 *    along with CasparCG.  If not, see <http://www.gnu.org/licenses/>.\r
18 *\r
19 */\r
20  \r
21 // stdafx.h : include file for standard system include files,\r
22 //  or project specific include files that are used frequently, but\r
23 //      are changed infrequently\r
24 //\r
25 \r
26 #pragma once\r
27 \r
28 #include "../common/compiler/vs/disable_silly_warnings.h"\r
29 \r
30 #define NOMINMAX\r
31 \r
32 #if defined(_MSC_VER)\r
33 #       ifndef _SCL_SECURE_NO_WARNINGS\r
34 #               define _SCL_SECURE_NO_WARNINGS\r
35 #       endif\r
36 #       ifndef _CRT_SECURE_NO_WARNINGS\r
37 #               define _CRT_SECURE_NO_WARNINGS\r
38 #       endif\r
39 #endif\r
40 \r
41 #if !defined(AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_)\r
42 #define AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_\r
43 \r
44 #ifdef _DEBUG\r
45 #include <crtdbg.h>\r
46 #endif\r
47 \r
48 #include <winsock2.h>\r
49 #include <tchar.h>\r
50 #include <sstream>\r
51 #include <memory>\r
52 #include <array>\r
53 #include <functional>\r
54 #include <algorithm>\r
55 #include <vector>\r
56 #include <deque>\r
57 #include <queue>\r
58 #include <string>\r
59 #include <math.h>\r
60 \r
61 #include <tbb/atomic.h>\r
62 #include <tbb/concurrent_queue.h>\r
63 #include <tbb/concurrent_unordered_map.h>\r
64 #include <tbb/parallel_invoke.h>\r
65 #include <tbb/parallel_for.h>\r
66 #include <tbb/parallel_for_each.h>\r
67 \r
68 #include <boost/assign.hpp>\r
69 #include <boost/filesystem.hpp>\r
70 #include <boost/foreach.hpp>\r
71 #include <boost/range/algorithm.hpp>\r
72 \r
73 #include <GLee.h>\r
74 \r
75 #include <SFML/Window.hpp>\r
76 #include <SFML/Audio.hpp>\r
77 \r
78 #include "../common/utility/string.h"\r
79 #include "../common/memory/safe_ptr.h"\r
80 //#include "../common/concurrency/executor.h" // Can't include this due to MSVC lambda bug\r
81 \r
82 #include "../common/log/Log.h"\r
83 #include "../common/exception/exceptions.h"\r
84 #include "../common/exception/win32_exception.h"\r
85 \r
86 #include <assert.h>\r
87 \r
88 #endif\r