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

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

構成管理を大幅に改良。

File size: 863 bytes
RevLine 
[215]1#pragma once
[214]2
[322]3#include <map>
[206]4#include <string>
5#include <vector>
6#include <fstream>
[467]7#include <iostream>
[206]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>
[467]17#include <process.h>
[472]18#include <fcntl.h>
19#include <io.h>
[206]20
21//boost libraries
22#include <boost/foreach.hpp>
23
[477]24#include <jenga/include/common/CmdLine.h>
25#include <jenga/include/common/Environment.h>
[322]26#include <jenga/include/common/File.h>
[465]27#include <jenga/include/common/Path.h>
[477]28#include <jenga/include/common/String.h>
[299]29
[477]30#include <abdev/ab_common/Environment.h>
31
[206]32#include "../BasicCompiler_Common/common.h"
[461]33#include "../BasicCompiler_Common/BasicFixed.h"
[288]34
[353]35#include <Hashmap.h>
[477]36#include <Configuration.h>
[353]37#include <Program.h>
[288]38#include <Compiler.h>
[467]39#include <Debugger.h>
Note: See TracBrowser for help on using the repository browser.