Tyro/src/common.h

18 lines
251 B
C
Raw Normal View History

/**
* A common header for global includes
*/
#ifndef TYRO_COMMON_H
#define TYRO_COMMON_H
2015-04-06 15:42:05 -04:00
#include <iostream>
2015-04-08 11:06:24 -04:00
#include <iomanip>
2015-04-10 15:11:15 -04:00
#include <algorithm>
#include <string>
#include <vector>
#include <map>
using namespace std;
#endif // TYRO_COMMON_H