#2576 Command File : Add support for comments

This commit is contained in:
Magne Sjaastad
2018-03-06 12:35:02 +01:00
parent ce2b4febbb
commit ec96edf266
4 changed files with 85 additions and 4 deletions

View File

@@ -79,3 +79,12 @@ QChar RicfMessages::peekNextChar(QTextStream& inputStream)
}
return ch;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RicfMessages::skipLineWithLineNumberCount(QTextStream& inputStream)
{
inputStream.readLine();
m_currentLineNumber++;
}