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

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

・ブレークポイントが正常に動作しない不具合を修正。
・と同時に、ブレークポイント周りのコードをリファクタリング

File size: 1.2 KB
Line 
1#pragma once
2
3#include <map>
4#include <string>
5#include <vector>
6#include <fstream>
7#include <iostream>
8#include <iomanip>
9#include <ios>
10#include <streambuf>
11#include <sstream>
12
13#include <windows.h>
14#include <stdio.h>
15#include <string.h>
16#include <math.h>
17#include <commctrl.h>
18#include <time.h>
19#include <limits.h>
20#include <shlobj.h>
21#include <process.h>
22#include <fcntl.h>
23#include <io.h>
24#include <shlwapi.h>
25#include <tchar.h>
26#include <stdarg.h>
27
28//boost libraries
29#include <boost/foreach.hpp>
30#include <boost/serialization/serialization.hpp>
31#include <boost/serialization/nvp.hpp>
32#include <boost/serialization/export.hpp>
33
34#include <jenga/include/jenga.h>
35
36#include <option.h>
37
38#include <abdev/ab_common/include/ab_common.h>
39
40using namespace ActiveBasic::Common::Lexical;
41
42#include "../BasicCompiler_Common/common.h"
43
44#include <Exception.h>
45#include <Enum.h>
46#include <logger.h>
47#include <Configuration.h>
48#include <CodeGenerator.h>
49#include <Messenger.h>
50#include <ErrorCode.h>
51#include <Linker.h>
52#include <Compiler.h>
53#include <Debugger.h>
54#include <Program.h>
55#include <LexicalAnalyzer.h>
56#include <VtblGenerator.h>
57#include <ProcedureGenerator.h>
58#include <DataTableGenerator.h>
59#include <BreakPoint.h>
Note: See TracBrowser for help on using the repository browser.