2 * copyright (c) 2010 Sveriges Television AB <info@casparcg.com>
\r
4 * This file is part of CasparCG.
\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
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
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
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
28 #include "../common/compiler/vs/disable_silly_warnings.h"
\r
32 #if defined(_MSC_VER)
\r
33 # ifndef _SCL_SECURE_NO_WARNINGS
\r
34 # define _SCL_SECURE_NO_WARNINGS
\r
36 # ifndef _CRT_SECURE_NO_WARNINGS
\r
37 # define _CRT_SECURE_NO_WARNINGS
\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
44 #define BOOST_PARAMETER_MAX_ARITY 7
\r
50 #include <winsock2.h>
\r
55 #include <functional>
\r
56 #include <algorithm>
\r
63 #include <tbb/atomic.h>
\r
64 #include <tbb/concurrent_queue.h>
\r
65 #include <tbb/concurrent_unordered_map.h>
\r
66 #include <tbb/parallel_invoke.h>
\r
67 #include <tbb/parallel_for.h>
\r
68 #include <tbb/parallel_for_each.h>
\r
70 #include <boost/assign.hpp>
\r
71 #include <boost/filesystem.hpp>
\r
72 #include <boost/foreach.hpp>
\r
73 #include <boost/range/algorithm.hpp>
\r
74 #include <boost/signals2.hpp>
\r
78 #include <SFML/Window.hpp>
\r
79 #include <SFML/Audio.hpp>
\r
81 #include "../common/utility/string.h"
\r
82 #include "../common/memory/safe_ptr.h"
\r
83 //#include "../common/concurrency/executor.h" // Can't include this due to MSVC lambda bug
\r
85 #include "../common/log/Log.h"
\r
86 #include "../common/exception/exceptions.h"
\r
87 #include "../common/exception/win32_exception.h"
\r