Tyro/src/common.h

23 lines
389 B
C
Raw Normal View History

/**
* A common header for global includes
*/
2016-01-13 09:29:09 -05:00
#pragma once
2015-04-22 21:06:35 -04:00
// C++ Standard Lib includes
2015-04-06 15:42:05 -04:00
#include <iostream>
2015-04-08 11:06:24 -04:00
#include <iomanip>
2015-04-14 08:09:11 -04:00
#include <fstream>
2015-04-10 15:11:15 -04:00
#include <algorithm>
#include <string>
#include <vector>
#include <map>
2015-04-22 21:06:35 -04:00
// JSON
#include <json/json.h>
using namespace std;
2015-04-22 21:06:35 -04:00
2015-06-24 14:12:05 -04:00
// Typedef some common templates
typedef map<string, int> StringConstMap;
typedef map<string, string> StringMap;