From 1c2f53717fb5c4a901506fd4576236df257905e5 Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 29 Oct 2011 01:59:11 +0300 Subject: UTF8 support. Minor Config changes --- client/Config.h | 23 ++++++++++++++++++++--- 1 file changed, 20 insertions(+), 3 deletions(-) (limited to 'client/Config.h') diff --git a/client/Config.h b/client/Config.h index ad30ebf..9d9e9eb 100644 --- a/client/Config.h +++ b/client/Config.h @@ -55,18 +55,35 @@ public: * @brief Get list of cities in particular country without states
* (generic proxy records only) * @param country name of country to get list of states for - * @return Alphabetically sorted vector with unique city names
+ * @return Alphabetically sorted vector with unique city names */ std::vector GetCities(std::string &country); /** * @brief Get list of cities in particular country and state
* (generic proxy records only) - * @param country name of country to get list of states for - * @param state name state to get list of proxies for
+ * @param country name of country to get list of cities for + * @param state name of state to get list of cities for * @return Alphabetically sorted vector with unique city names */ std::vector GetCities(std::string &country, std::string &state); + + /* + * @brief Get list of proxy server addresses in particular country and city (without states)
+ * (generic proxy records only) + * @param country name of country to get list of proxies for + * @param city name of city to get list of proxies for + */ + std::vector GetProxies(std::string &country, std::string &city); + + /* + * @brief Get list of proxy server addresses in particular country, state and city
+ * (generic proxy records only) + * @param country name of country to get list of proxies for + * @param state name of state to get list of proxies for + * @param city name of city to get list of proxies for + */ + std::vector GetProxies(std::string &country, std::string &state, std::string &city); protected: Config(); private: -- cgit v1.2.3