#ifndef COUNTRY_H #define COUNTRY_H #include #include #include /// /// \brief The Country class /// A map of (city name, city structure) /// class Country { public: QMap Cities; double minX, minY, maxX, maxY; Country() {} bool readInfoFromJSON(QString fileName); void topLeft(QString &st, DoublePoint &p ); void limits(); QMap getCities() { return Cities;} //~Country() { delete Cities; } }; #endif // COUNTRY_H