-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinclude_s.h
40 lines (38 loc) · 1.01 KB
/
include_s.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/**********************************************************
* File£º include_s.h
*
* Author£º shenglong ([email protected])
*
* Description£ºthis file contains several head file of namespace std,
* It should include this file which need std components.
*
* State : handling.
*
*
*
*/
#ifndef INCLUDE_S_H
#define INCLUDE_S_H
#ifndef UNIX_MAX
#define UNIX_MAX 4096
#endif
#ifndef AUTO_CMD
#define AUTO_CMD
#endif
#include "stdafx.h"
// std headers.
#include <new> // for ::operator new(),
// ::operator delete(),
// set_new_handler.
#include <cstddef> // for malloc and free.
#include <cctype> // for
#include <typeinfo> //
#include <cassert> // for assert().
#include <cstdlib> // for max and min.
#include <iostream> // for cout and endl.
#include <exception> // for std::exception.
#include <stdexcept> //
#include <numeric> //
#include <algorithm> // for copy and transform.
#include <string> // for string.
#endif // INCLUDE_S_H