| #include "Configuration.h" |
| Configuration::Compare(const Configuration& that) const |
| n = locale.compare(that.locale); |
| n = vendor.compare(that.vendor); |
| n = orientation.compare(that.orientation); |
| n = density.compare(that.density); |
| n = touchscreen.compare(that.touchscreen); |
| n = keyboard.compare(that.keyboard); |
| n = navigation.compare(that.navigation); |
| n = screenSize.compare(that.screenSize); |
| Configuration::ToString() const |
| if (locale.length() > 0) { |
| split_locale(const string& in, string* language, string* region) |
| const int len = in.length(); |
| if (isalpha(in[0]) && isalpha(in[1])) { |
| if (isalpha(in[0]) && isalpha(in[1]) && (in[2] == '_' || in[2] == '-') |
| && isalpha(in[3]) && isalpha(in[4])) { |
| language->assign(in.c_str(), 2); |
| region->assign(in.c_str()+3, 2); |