* Gets next line from file. Returns True if read a line, False if End Of File. * * @param line Line read from file, with newline removed. * * @param skipComments Controls whether comments lines are filtered; * true=filter, false=return any line read from * fileDefaults to true * * @return bool */
| 409 | * @return bool |
| 410 | */ |
| 411 | bool TextFile::GetLine(QString &line, bool skipComments) { |
| 412 | return (p_GetLine(line, skipComments)); |
| 413 | } |
| 414 | |
| 415 | /** |
| 416 | * Gets next line from file. Returns True if read a line, False if End Of File. |
no outgoing calls