/** * A common header for global includes */ #ifndef TYRO_COMMON_H #define TYRO_COMMON_H // C++ Standard Lib includes #include #include #include #include #include #include #include using namespace std; // JSON #include typedef Json::Value JsonValue; typedef Json::Reader JsonReader; typedef Json::Writer JsonWriter; // Typedef some common templates typedef map StringConstMap; typedef map StringMap; typedef vector StringVector; #endif // TYRO_COMMON_H