改行文字が見つかるまで文字を読み取るクロスプラットフォームパーサーを作成する方法はありますか?Linuxでは「\0」を使用していますが、Windowsでもこれを実行できるかどうかはわかりません。
std::string line;
// fill the line
QTextStream ss(&line);
for(;;)
{
ss >> c;
if(c == '"' || c=='\0' ) // here I want to continue parsing until a new-line character or a ending double quote is found
break;
}