forked from vladon/sqlproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstdafx.h
More file actions
29 lines (25 loc) · 494 Bytes
/
stdafx.h
File metadata and controls
29 lines (25 loc) · 494 Bytes
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
#pragma once
#ifdef _WIN32
#include <SDKDDKVer.h>
#include <tchar.h>
#endif
// C Lib
#include <csignal>
#include <cstdint>
#include <cstdio>
// STL
#include <algorithm>
#include <array>
#include <iostream>
#include <memory>
#include <mutex>
#include <queue>
#include <string>
#include <type_traits>
#include <vector>
// Boost
#include <boost/asio.hpp>
#include <boost/asio/spawn.hpp>
#include <boost/program_options.hpp>
#include <boost/thread.hpp>
#include <boost/lockfree/spsc_queue.hpp>