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

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

FileManager周りをリファクタリング

File size: 1.4 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
[519]37#include <jenga/include/jenga.h>
[475]38
[515]39#include <abdev/ab_common/include/ab_common.h>
[477]40
[499]41#ifdef THETEXT
42#include "../res_TheText/resource.h"
43#else
[493]44#include "../res/resource.h"
[499]45#endif
[493]46
[489]47#include <WindowComponents/BaseWindow.h>
48#include <WindowComponents/MdiChild.h>
49#include <WindowComponents/MdiWindow.h>
50#include <WindowComponents/DockingWindow.h>
51#include <WindowComponents/TextView.h>
52#include <WindowCollection.h>
53#include <WindowAreaManager.h>
54#include <MainFrame.h>
[475]55#include <Program.h>
[615]56#include <ProjectManager/WindowManager.h>
[655]57#include <ProjectManager/FileManager.h>
[609]58
59#include "Common.h"
[613]60
[615]61#include <ProjectManager/ProjectManager.h>
Note: See TracBrowser for help on using the repository browser.