forked from eoserv/eoserv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstdafx.h
46 lines (41 loc) · 824 Bytes
/
stdafx.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
41
42
43
44
45
46
/* stdafx.h
* EOSERV is released under the zlib license.
* See LICENSE.txt for more info.
*/
#ifndef STDAFX_H_INCLUDED
#define STDAFX_H_INCLUDED
#ifdef __cplusplus
#include <algorithm>
#include <array>
#include <cctype>
#include <cerrno>
#include <cmath>
#include <csignal>
#include <cstdarg>
#include <cstddef>
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <deque>
#include <exception>
#include <functional>
#include <initializer_list>
#include <iosfwd>
#include <istream>
#include <iterator>
#include <limits>
#include <list>
#include <map>
#include <memory>
#include <queue>
#include <set>
#include <stack>
#include <stdexcept>
#include <string>
#include <unordered_map>
#include <utility>
#include <vector>
#endif // __cplusplus
#endif // STDAFX_H_INCLUDED