-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstdafx.hpp
71 lines (50 loc) · 978 Bytes
/
stdafx.hpp
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
* stdafx.hpp
*
* Created on: Nov 9, 2012
* Author: chjd
*/
#ifndef STDAFX_HPP_
#define STDAFX_HPP_
#include <string>
using std::string;
using std::u16string;
#include <cstdlib>
#include <cctype>
using std::isdigit;
#include <cstddef>
// use nullptr
#include <iostream>
using std::cout;
using std::cerr;
using std::endl;
using std::ostream;
#include <iomanip>
using std::setw;
#include <fstream>
using std::ifstream;
using std::ofstream;
#include <stdio.h>
// using C-style file operation
#include <vector>
using std::vector;
#include <array>
using std::array;
#include <list>
using std::list;
#include <unordered_map>
using std::unordered_map;
#include <utility>
using std::pair;
using std::make_pair;
#include <functional>
using std::function;
#include <complex>
using std::complex;
typedef complex<double> Cplx;
#include <cmath>
using std::sin;
#include <cassert>
#include <stdarg.h>
// to use variable length param
#endif /* STDAFX_HPP_ */