source: dev/branches/egtra/ab5.0/abdev/abdev/stdafx.h@ 804

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

ライブラリからの警告を抑制するpragmaを追加

File size: 1.7 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>
[804]28#pragma warning(push)
29#pragma warning(disable: 6011 6246 6255 6269 6387)
[489]30#include <atlapp.h>
[515]31#include <atlframe.h>
[489]32#include <atlcrack.h>
33#include <atlmisc.h>
[651]34#include <atlctrls.h>
[804]35#pragma warning(pop)
[489]36
[475]37//boost libraries
38#include <boost/foreach.hpp>
[515]39#include <boost/serialization/serialization.hpp>
40#include <boost/serialization/nvp.hpp>
41#include <boost/serialization/export.hpp>
[655]42#include <boost/thread/thread.hpp>
[475]43
[681]44// tinyxml
[804]45#pragma warning(push)
46#pragma warning(disable: 6011)
[681]47#include <tinyxml/tinyxml.h>
[804]48#pragma warning(pop)
[681]49
[519]50#include <jenga/include/jenga.h>
[475]51
[515]52#include <abdev/ab_common/include/ab_common.h>
[477]53
[499]54#ifdef THETEXT
55#include "../res_TheText/resource.h"
56#else
[493]57#include "../res/resource.h"
[499]58#endif
[493]59
[681]60#include <WindowComponents/CodeEditor/Syntax.h>
[489]61#include <WindowComponents/BaseWindow.h>
62#include <WindowComponents/MdiChild.h>
63#include <WindowComponents/MdiWindow.h>
64#include <WindowComponents/DockingWindow.h>
65#include <WindowComponents/TextView.h>
66#include <WindowCollection.h>
67#include <WindowAreaManager.h>
68#include <MainFrame.h>
[475]69#include <Program.h>
[615]70#include <ProjectManager/WindowManager.h>
[655]71#include <ProjectManager/FileManager.h>
[609]72
73#include "Common.h"
[613]74
[615]75#include <ProjectManager/ProjectManager.h>
[772]76
Note: See TracBrowser for help on using the repository browser.