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

Last change on this file since 772 was 772, checked in by イグトランス (egtra), 15 years ago

Windows 7タスクバーへの対応を実装。
(#245)

File size: 1.6 KB
RevLine 
[475]1#pragma once
[772]2#define _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES 1
[475]3
4#include <map>
5#include <string>
6#include <vector>
7#include <fstream>
8#include <iostream>
9
10#include <windows.h>
[772]11#include <windowsx.h>
[475]12#include <stdio.h>
13#include <string.h>
14#include <math.h>
15#include <commctrl.h>
16#include <time.h>
17#include <limits.h>
18#include <shlobj.h>
19#include <process.h>
20#include <fcntl.h>
21#include <io.h>
[772]22#include <assert.h>
[475]23
[489]24#include <atlbase.h>
[772]25#include <atlstr.h>
[515]26#include <atlcom.h>
27#include <atlhost.h>
[489]28#include <atlapp.h>
[515]29#include <atlframe.h>
[489]30#include <atlcrack.h>
31#include <atlmisc.h>
[651]32#include <atlctrls.h>
[489]33
[475]34//boost libraries
35#include <boost/foreach.hpp>
[515]36#include <boost/serialization/serialization.hpp>
37#include <boost/serialization/nvp.hpp>
38#include <boost/serialization/export.hpp>
[655]39#include <boost/thread/thread.hpp>
[475]40
[681]41// tinyxml
42#include <tinyxml/tinyxml.h>
43
[519]44#include <jenga/include/jenga.h>
[475]45
[515]46#include <abdev/ab_common/include/ab_common.h>
[477]47
[499]48#ifdef THETEXT
49#include "../res_TheText/resource.h"
50#else
[493]51#include "../res/resource.h"
[499]52#endif
[493]53
[681]54#include <WindowComponents/CodeEditor/Syntax.h>
[489]55#include <WindowComponents/BaseWindow.h>
56#include <WindowComponents/MdiChild.h>
57#include <WindowComponents/MdiWindow.h>
58#include <WindowComponents/DockingWindow.h>
59#include <WindowComponents/TextView.h>
60#include <WindowCollection.h>
61#include <WindowAreaManager.h>
62#include <MainFrame.h>
[475]63#include <Program.h>
[615]64#include <ProjectManager/WindowManager.h>
[655]65#include <ProjectManager/FileManager.h>
[609]66
67#include "Common.h"
[613]68
[615]69#include <ProjectManager/ProjectManager.h>
[772]70
Note: See TracBrowser for help on using the repository browser.