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

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

下記メッセージをMainFrameクラスに実装しなおした
WM_TIMER
WM_DRAWCLIPBOARD
WM_MENUSELECT
WM_INITMENU
WM_MEASUREITEM
WM_DRAWITEM
WM_NOTIFY

File size: 1.2 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>
[492]22#include <atlcom.h> // ATL COMハ用wb_t@C
23#include <atlhost.h> // ATL Rei@\T|[gpwb_t@C
[489]24#include <atlapp.h>
[492]25#include <atlframe.h> // ATL Rei@\T|[gpwb_t@C
[489]26#include <atlcrack.h>
27#include <atlmisc.h>
28
[475]29//boost libraries
30#include <boost/foreach.hpp>
31
32#include <jenga/include/common/CmdLine.h>
33#include <jenga/include/common/Environment.h>
34#include <jenga/include/common/File.h>
35#include <jenga/include/common/Path.h>
36#include <jenga/include/common/String.h>
37
[477]38#include <abdev/ab_common/Environment.h>
39
[489]40#include <WindowComponents/BaseWindow.h>
41#include <WindowComponents/MdiChild.h>
42#include <WindowComponents/MdiWindow.h>
43#include <WindowComponents/DockingWindow.h>
44#include <WindowComponents/TextView.h>
45#include <WindowCollection.h>
46#include <WindowAreaManager.h>
47#include <MainFrame.h>
[475]48#include <Program.h>
[492]49
50#include "../res/resource.h"
51
52#include "Common.h"
Note: See TracBrowser for help on using the repository browser.