/** * A common header for global includes */ #pragma once // 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;