MCPcopy Create free account
hub / github.com/Scobalula/Greyhound / LoadNextLine

Method LoadNextLine

src/External/CascLib/src/common/Csv.cpp:241–258  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

239}
240
241bool 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
260bool CASC_CSV::InitializeHashTable()
261{

Callers 2

LoadMethod · 0.80
LoadMethod · 0.80

Calls 1

SetLineMethod · 0.80

Tested by

no test coverage detected