#include #include #include int main(void) { rude::Config config; // Determine which country should be highlighted // Within the select list // std::string selectedCountryCode="US"; // Load the countries into the config object // if(config.load("countrycodes.ini")) { // Start the SELECT section // std::cout << ""; } else { std::cout << "Error opening country codes file: " << config.getError() << "\n"; } return 0; }