source: dev/trunk/ab5.0/abdev/ab_common/stdafx.h@ 829

Last change on this file since 829 was 829, checked in by イグトランス (egtra), 12 years ago

svn:eol-styleとsvn:mime-type(文字コード指定含む)の設定

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/plain; charset=Shift_JIS
File size: 620 bytes
Line 
1#pragma once
2
3#include <map>
4#include <string>
5#include <vector>
6#include <fstream>
7#include <iostream>
8#include <algorithm>
9
10#include <windows.h>
11#include <stdio.h>
12#include <string.h>
13#include <stdlib.h>
14#include <math.h>
15#include <time.h>
16#include <limits.h>
17#include <shlobj.h>
18#include <assert.h>
19
20//boost libraries
21#pragma warning(push)
22#pragma warning(disable: 6326)
23#include <boost/foreach.hpp>
24#include <boost/serialization/serialization.hpp>
25#include <boost/serialization/nvp.hpp>
26#include <boost/serialization/export.hpp>
27#pragma warning(pop)
28
29#include <jenga/include/jenga.h>
30
31#include "include/ab_common.h"
Note: See TracBrowser for help on using the repository browser.