forked from Abc-Arbitrage/Disruptor-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstdafx.h
More file actions
38 lines (29 loc) · 729 Bytes
/
stdafx.h
File metadata and controls
38 lines (29 loc) · 729 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
30
31
32
33
34
35
36
37
38
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//
#pragma once
#include <boost/config.hpp>
// STL
#include <algorithm>
#include <chrono>
#include <cstdint>
#include <functional>
#include <future>
#include <memory>
#include <stdexcept>
#include <string>
#include <thread>
#include <typeinfo>
#include <unordered_map>
#include <vector>
// Boost.Test
#include "Disruptor/Pragmas.h"
DISRUPTOR_PRAGMA_PUSH
DISRUPTOR_PRAGMA_IGNORE_ALL
DISRUPTOR_PRAGMA_IGNORE_UNUSED_VARIABLES
#include <boost/test/results_reporter.hpp>
#include <boost/test/unit_test.hpp>
DISRUPTOR_PRAGMA_POP
// Google Mock
#include <gmock/gmock.h>