source: dev/trunk/ab5.0/abdev/abdev/stdafx.h@ 828

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

egtraブランチの内容をマージ。

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