| 156 | } |
| 157 | |
| 158 | int CAuthManager::KeyLevel(int Slot) const |
| 159 | { |
| 160 | if(Slot < 0 || Slot >= (int)m_vKeys.size()) |
| 161 | return false; |
| 162 | return m_vKeys[Slot].m_pRole->Rank(); |
| 163 | } |
| 164 | |
| 165 | const char *CAuthManager::KeyIdent(int Slot) const |
| 166 | { |
no test coverage detected