| 522 | } |
| 523 | |
| 524 | SINT64 Config::getInt(unsigned int key) const |
| 525 | { |
| 526 | if (key >= MAX_CONFIG_KEY) |
| 527 | return 0; |
| 528 | return getInt(static_cast<ConfigKey>(key)); |
| 529 | } |
| 530 | |
| 531 | const char* Config::getString(unsigned int key) const |
| 532 | { |
no test coverage detected