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

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

ab_common.hを追加。
TypeMisc.hを追加。

File size: 1.4 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
29//boost libraries
30#include <boost/foreach.hpp>
31#include <boost/serialization/serialization.hpp>
32#include <boost/serialization/nvp.hpp>
33#include <boost/serialization/export.hpp>
34
35#include <jenga/include/common/CmdLine.h>
36#include <jenga/include/common/Environment.h>
37#include <jenga/include/common/File.h>
38#include <jenga/include/common/Path.h>
39#include <jenga/include/common/String.h>
40
41#include <abdev/ab_common/Environment.h>
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 "Common.h"
51
52#include <WindowComponents/BaseWindow.h>
53#include <WindowComponents/MdiChild.h>
54#include <WindowComponents/MdiWindow.h>
55#include <WindowComponents/DockingWindow.h>
56#include <WindowComponents/TextView.h>
57#include <WindowCollection.h>
58#include <WindowAreaManager.h>
59#include <MainFrame.h>
60#include <Program.h>
Note: See TracBrowser for help on using the repository browser.