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

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

WindowInfosクラスを追加。

File size: 1.3 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>
28
[475]29//boost libraries
30#include <boost/foreach.hpp>
[515]31#include <boost/serialization/serialization.hpp>
32#include <boost/serialization/nvp.hpp>
33#include <boost/serialization/export.hpp>
[475]34
[519]35#include <jenga/include/jenga.h>
[475]36
[515]37#include <abdev/ab_common/include/ab_common.h>
[477]38
[499]39#ifdef THETEXT
40#include "../res_TheText/resource.h"
41#else
[493]42#include "../res/resource.h"
[499]43#endif
[493]44
[489]45#include <WindowComponents/BaseWindow.h>
46#include <WindowComponents/MdiChild.h>
47#include <WindowComponents/MdiWindow.h>
48#include <WindowComponents/DockingWindow.h>
49#include <WindowComponents/TextView.h>
50#include <WindowCollection.h>
51#include <WindowAreaManager.h>
52#include <MainFrame.h>
[475]53#include <Program.h>
[615]54#include <ProjectManager/WindowManager.h>
[609]55
56#include "Common.h"
[613]57
[615]58#include <ProjectManager/ProjectManager.h>
Note: See TracBrowser for help on using the repository browser.