| 56 | } |
| 57 | |
| 58 | const char *CConsole::CResult::GetString(unsigned Index) const |
| 59 | { |
| 60 | if(Index >= m_NumArgs) |
| 61 | return ""; |
| 62 | return m_apArgs[Index]; |
| 63 | } |
| 64 | |
| 65 | int CConsole::CResult::GetInteger(unsigned Index) const |
| 66 | { |
no outgoing calls
no test coverage detected