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

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

Windows 7タスクバーへの対応を実装。
(#245)

File size: 1.6 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#include <atlapp.h>
29#include <atlframe.h>
30#include <atlcrack.h>
31#include <atlmisc.h>
32#include <atlctrls.h>
33
34//boost libraries
35#include <boost/foreach.hpp>
36#include <boost/serialization/serialization.hpp>
37#include <boost/serialization/nvp.hpp>
38#include <boost/serialization/export.hpp>
39#include <boost/thread/thread.hpp>
40
41// tinyxml
42#include <tinyxml/tinyxml.h>
43
44#include <jenga/include/jenga.h>
45
46#include <abdev/ab_common/include/ab_common.h>
47
48#ifdef THETEXT
49#include "../res_TheText/resource.h"
50#else
51#include "../res/resource.h"
52#endif
53
54#include <WindowComponents/CodeEditor/Syntax.h>
55#include <WindowComponents/BaseWindow.h>
56#include <WindowComponents/MdiChild.h>
57#include <WindowComponents/MdiWindow.h>
58#include <WindowComponents/DockingWindow.h>
59#include <WindowComponents/TextView.h>
60#include <WindowCollection.h>
61#include <WindowAreaManager.h>
62#include <MainFrame.h>
63#include <Program.h>
64#include <ProjectManager/WindowManager.h>
65#include <ProjectManager/FileManager.h>
66
67#include "Common.h"
68
69#include <ProjectManager/ProjectManager.h>
70
Note: See TracBrowser for help on using the repository browser.