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

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

いくつかのグローバル変数をProgram/Debuggerクラスにまとめた。

File size: 707 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>
[206]18
19//boost libraries
20#include <boost/foreach.hpp>
21
[299]22#include <jenga/include/common/String.h>
[322]23#include <jenga/include/common/File.h>
[457]24#include <jenga/include/common/CmdLine.h>
[465]25#include <jenga/include/common/Path.h>
[299]26
[206]27#include "../BasicCompiler_Common/common.h"
[461]28#include "../BasicCompiler_Common/BasicFixed.h"
[288]29
[353]30#include <Hashmap.h>
31#include <Program.h>
[288]32#include <Compiler.h>
[467]33#include <Debugger.h>
Note: See TracBrowser for help on using the repository browser.