| 58 | |
| 59 | |
| 60 | AString cSignEntity::GetLine(int a_Index) const |
| 61 | { |
| 62 | if ((a_Index < 0) || (a_Index >= (int)ARRAYCOUNT(m_Line))) |
| 63 | { |
| 64 | LOGWARNING("%s: requesting a non-existent line %d", __FUNCTION__, a_Index); |
| 65 | return ""; |
| 66 | } |
| 67 | return m_Line[a_Index]; |
| 68 | } |
| 69 | |
| 70 | |
| 71 |
no outgoing calls
no test coverage detected