]> git.sesse.net Git - casparcg/blob - modules/bluefish/StdAfx.h
set svn:eol-style native on .h and .cpp files
[casparcg] / modules / bluefish / StdAfx.h
1 /*
2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>
3 *
4 * This file is part of CasparCG (www.casparcg.com).
5 *
6 * CasparCG is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * CasparCG is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with CasparCG. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * Author: Robert Nagy, ronag89@gmail.com
20 */
21
22 #pragma once
23
24 #ifdef _DEBUG
25 #include <crtdbg.h>
26 #endif
27
28 #define NOMINMAX
29
30 #include <Windows.h>
31
32 #include <memory>
33 #include <array>
34 #include <functional>
35 #include <algorithm>
36 #include <vector>
37 #include <deque>
38 #include <queue>
39 #include <string>
40 #include <math.h>
41
42 #include <common/utf.h>
43 #include <common/memory.h>
44 //#include "../common/executor.h" // Can't include this due to MSVC lambda bug
45
46 #include <common/log.h>
47 #include <common/except.h>
48
49 #include <assert.h>