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
RevLine 
[475]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
[489]21#include <atlbase.h>
[515]22#include <atlcom.h>
23#include <atlhost.h>
[489]24#include <atlapp.h>
[515]25#include <atlframe.h>
[489]26#include <atlcrack.h>
27#include <atlmisc.h>
[651]28#include <atlctrls.h>
[489]29
[475]30//boost libraries
31#include <boost/foreach.hpp>
[515]32#include <boost/serialization/serialization.hpp>
33#include <boost/serialization/nvp.hpp>
34#include <boost/serialization/export.hpp>
[655]35#include <boost/thread/thread.hpp>
[475]36
[681]37// tinyxml
38#include <tinyxml/tinyxml.h>
39
[519]40#include <jenga/include/jenga.h>
[475]41
[515]42#include <abdev/ab_common/include/ab_common.h>
[477]43
[499]44#ifdef THETEXT
45#include "../res_TheText/resource.h"
46#else
[493]47#include "../res/resource.h"
[499]48#endif
[493]49
[681]50#include <WindowComponents/CodeEditor/Syntax.h>
[489]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>
[475]59#include <Program.h>
[615]60#include <ProjectManager/WindowManager.h>
[655]61#include <ProjectManager/FileManager.h>
[609]62
63#include "Common.h"
[613]64
[615]65#include <ProjectManager/ProjectManager.h>
Note: See TracBrowser for help on using the repository browser.