| 239 | } |
| 240 | |
| 241 | bool CASC_CSV::LoadNextLine() |
| 242 | { |
| 243 | bool bResult = false; |
| 244 | |
| 245 | // Only endless CSV handler can do this |
| 246 | if(m_bHasAllLines == false) |
| 247 | { |
| 248 | // A few checks |
| 249 | assert(m_pLines != NULL); |
| 250 | assert(m_nLinesMax == 1); |
| 251 | |
| 252 | // Reset the current line and load it |
| 253 | bResult = LoadNextLine(m_pLines[0]); |
| 254 | m_nLines = (bResult) ? 1 : 0; |
| 255 | } |
| 256 | |
| 257 | return bResult; |
| 258 | } |
| 259 | |
| 260 | bool CASC_CSV::InitializeHashTable() |
| 261 | { |