| 38 | |
| 39 | |
| 40 | std::string toLower(std::string str) |
| 41 | { |
| 42 | for(unsigned int i = 0; i < str.length(); i++) |
| 43 | { |
| 44 | str[i] = tolower(str[i]); |
| 45 | } |
| 46 | |
| 47 | return str; |
| 48 | } |
| 49 | //end util functions |
| 50 | |
| 51 | InputConfig::InputConfig(int deviceId) : mDeviceId(deviceId) |
no outgoing calls
no test coverage detected