source: dev/trunk/abdev/BasicCompiler32/stdafx.h@ 215

Last change on this file since 215 was 215, checked in by dai_9181, 17 years ago

BoostSerializationSupportのクラステンプレートインスタンスを明示的に生成するようにした(コンパイル時間の短縮)

File size: 418 bytes
Line 
1#pragma once
2
3#include <string>
4#include <vector>
5#include <fstream>
6
7#include <windows.h>
8#include <stdio.h>
9#include <string.h>
10#include <math.h>
11#include <commctrl.h>
12#include <time.h>
13#include <limits.h>
14#include <shlobj.h>
15
16//boost libraries
17#pragma warning(push)
18#pragma warning(disable : 4996)
19#include <boost/foreach.hpp>
20#pragma warning(pop)
21
22#include "../BasicCompiler_Common/common.h"
Note: See TracBrowser for help on using the repository browser.