source: dev/branches/egtra/ab5.0/abdev/abdev/stdafx.h@ 804

Last change on this file since 804 was 804, checked in by イグトランス (egtra), 13 years ago

ライブラリからの警告を抑制するpragmaを追加

File size: 1.7 KB
Line 
1#pragma once
2#define _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES 1
3
4#include <map>
5#include <string>
6#include <vector>
7#include <fstream>
8#include <iostream>
9
10#include <windows.h>
11#include <windowsx.h>
12#include <stdio.h>
13#include <string.h>
14#include <math.h>
15#include <commctrl.h>
16#include <time.h>
17#include <limits.h>
18#include <shlobj.h>
19#include <process.h>
20#include <fcntl.h>
21#include <io.h>
22#include <assert.h>
23
24#include <atlbase.h>
25#include <atlstr.h>
26#include <atlcom.h>
27#include <atlhost.h>
28#pragma warning(push)
29#pragma warning(disable: 6011 6246 6255 6269 6387)
30#include <atlapp.h>
31#include <atlframe.h>
32#include <atlcrack.h>
33#include <atlmisc.h>
34#include <atlctrls.h>
35#pragma warning(pop)
36
37//boost libraries
38#include <boost/foreach.hpp>
39#include <boost/serialization/serialization.hpp>
40#include <boost/serialization/nvp.hpp>
41#include <boost/serialization/export.hpp>
42#include <boost/thread/thread.hpp>
43
44// tinyxml
45#pragma warning(push)
46#pragma warning(disable: 6011)
47#include <tinyxml/tinyxml.h>
48#pragma warning(pop)
49
50#include <jenga/include/jenga.h>
51
52#include <abdev/ab_common/include/ab_common.h>
53
54#ifdef THETEXT
55#include "../res_TheText/resource.h"
56#else
57#include "../res/resource.h"
58#endif
59
60#include <WindowComponents/CodeEditor/Syntax.h>
61#include <WindowComponents/BaseWindow.h>
62#include <WindowComponents/MdiChild.h>
63#include <WindowComponents/MdiWindow.h>
64#include <WindowComponents/DockingWindow.h>
65#include <WindowComponents/TextView.h>
66#include <WindowCollection.h>
67#include <WindowAreaManager.h>
68#include <MainFrame.h>
69#include <Program.h>
70#include <ProjectManager/WindowManager.h>
71#include <ProjectManager/FileManager.h>
72
73#include "Common.h"
74
75#include <ProjectManager/ProjectManager.h>
76
Note: See TracBrowser for help on using the repository browser.