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

Last change on this file since 681 was 681, checked in by dai_9181, 16 years ago

・TinyXMLをabdevプロジェクトで使えるようにした。
・コードハイライターを汎用的に実装しなおした。syntaxファイルを読み込む仕様とした。

File size: 1.5 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 <stdio.h>
11#include <string.h>
12#include <math.h>
13#include <commctrl.h>
14#include <time.h>
15#include <limits.h>
16#include <shlobj.h>
17#include <process.h>
18#include <fcntl.h>
19#include <io.h>
20
21#include <atlbase.h>
22#include <atlcom.h>
23#include <atlhost.h>
24#include <atlapp.h>
25#include <atlframe.h>
26#include <atlcrack.h>
27#include <atlmisc.h>
28#include <atlctrls.h>
29
30//boost libraries
31#include <boost/foreach.hpp>
32#include <boost/serialization/serialization.hpp>
33#include <boost/serialization/nvp.hpp>
34#include <boost/serialization/export.hpp>
35#include <boost/thread/thread.hpp>
36
37// tinyxml
38#include <tinyxml/tinyxml.h>
39
40#include <jenga/include/jenga.h>
41
42#include <abdev/ab_common/include/ab_common.h>
43
44#ifdef THETEXT
45#include "../res_TheText/resource.h"
46#else
47#include "../res/resource.h"
48#endif
49
50#include <WindowComponents/CodeEditor/Syntax.h>
51#include <WindowComponents/BaseWindow.h>
52#include <WindowComponents/MdiChild.h>
53#include <WindowComponents/MdiWindow.h>
54#include <WindowComponents/DockingWindow.h>
55#include <WindowComponents/TextView.h>
56#include <WindowCollection.h>
57#include <WindowAreaManager.h>
58#include <MainFrame.h>
59#include <Program.h>
60#include <ProjectManager/WindowManager.h>
61#include <ProjectManager/FileManager.h>
62
63#include "Common.h"
64
65#include <ProjectManager/ProjectManager.h>
Note: See TracBrowser for help on using the repository browser.