enable PotentialFileReader class to change line buffer size

This commit is contained in:
Axel Kohlmeyer
2025-05-13 06:02:10 -04:00
parent fdd91e597e
commit 83fa2cbc93
3 changed files with 14 additions and 1 deletions

View File

@ -93,7 +93,9 @@ TextFileReader::~TextFileReader()
delete[] line;
}
/** adjust line buffer size */
/** adjust line buffer size
*
* \param newsize New size of the internal line buffer */
void TextFileReader::set_bufsize(int newsize)
{