.Simulation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
stdafx.h
1 // stdafx.h
2 // Project DataVisualizerGUI
3 #ifndef __PrecompiledHeader_H__
4 #define __PrecompiledHeader_H__
5 #define WIN32_LEAN_AND_MEAN
6 
7 // Qt
8 #include <QWidget>
9 
10 // C++
11 #include <map>
12 #include <queue>
13 #include <cmath>
14 #include <ctime>
15 #include <string>
16 #include <vector>
17 #include <cstring>
18 #include <sstream>
19 #include <numeric>
20 #include <stdio.h>
21 #include <fstream>
22 #include <iostream>
23 #include <algorithm>
24 
25 // JSON Parser
26 #include <rapidjson/document.h>
27 #include <rapidjson/filereadstream.h>
28 #include <rapidjson/filewritestream.h>
29 #include <rapidjson/prettywriter.h>
30 #include <rapidjson/rapidjson.h>
31 
32 // Included for drawing plots and graphs.
33 #include "qcustomplot.h"
34 
35 // Undefine max
36 #undef max
37 
38 #endif