-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPch.h
More file actions
37 lines (32 loc) · 767 Bytes
/
Pch.h
File metadata and controls
37 lines (32 loc) · 767 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
//
// FormulaEngine Project
// By Mike Lewis - 2015
//
// Precompiled header
//
// Commonly used but rarely changed headers can be included
// here for more optimal build times. See your compiler's
// documentation on precompiled headers for details on how
// this works and how to port it around to new compilers.
//
#pragma once
// C++ standard library includes
#include <vector>
#include <string>
#include <map>
#include <sstream>
#include <cctype>
#include <iostream>
#include <fstream>
#include <cassert>
#include <random>
#include <atomic>
#include <thread>
#include <chrono>
#include <unordered_map>
#include <deque>
// Third party library includes
#include "Shared/PicoJSON.h"
// Utility includes
#include "Shared/Utilities.h"
#include "Shared/ValueT.h"