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

Last change on this file since 701 was 701, checked in by dai_9181, 16 years ago
  • [700]の一部を差し戻し。
    • 差し戻し内容
      • strlenSSE2へのdefineを差し戻し。
      • _TermOpeを差し戻し。

!!!注意
コミット時は、下記の事項を守ること。

  • ライブラリのリビルドが正常に行えることを確認すること。
  • 最低限のテストケース(現状ではSimpleTestCase)がリリース版で正常に動作することを確認すること。
  • コンパイラ・デバッガ関連のコード修正時は、上記2点について、x86/x64の双方にて確認すること。
  • 「まとめてコミット」はなるべく避けること。何のためのコミットなのかをログと対にして確認できるようにすること。
File size: 594 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
21//boost libraries
22#include <boost/foreach.hpp>
23#include <boost/serialization/serialization.hpp>
24#include <boost/serialization/nvp.hpp>
25#include <boost/serialization/export.hpp>
26
27#include <jenga/include/jenga.h>
28
29#include "include/ab_common.h"
30
Note: See TracBrowser for help on using the repository browser.