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

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

Hashmapクラスをjengaプロジェクトに移動。

File size: 1011 bytes
Line 
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#include <shlwapi.h>
21
22//boost libraries
23#include <boost/foreach.hpp>
24#include <boost/serialization/serialization.hpp>
25#include <boost/serialization/nvp.hpp>
26#include <boost/serialization/export.hpp>
27
28#include <jenga/include/jenga.h>
29
30#include <abdev/ab_common/include/ab_common.h>
31
32using namespace ActiveBasic::Common::Lexical;
33
34#include "../BasicCompiler_Common/common.h"
35#include "../BasicCompiler_Common/BasicFixed.h"
36
37#include <Configuration.h>
38#include <Type.h>
39#include <Method.h>
40#include <Interface.h>
41#include <Class.h>
42#include <Procedure.h>
43#include <LexicalAnalyzer.h>
44#include <Program.h>
45#include <Compiler.h>
46#include <Debugger.h>
Note: See TracBrowser for help on using the repository browser.