名前と値のペアを持つファイルから値を読み取るときに、名前セクションをスキップすることができました。しかし、スキップされたデータを格納するダミー文字列を宣言せずに名前セクションをスキップする別の方法はありますか?
テキスト ファイルの例: http://i.stack.imgur.com/94l1w.png
void loadConfigFile()
{
ifstream file(folder + "config.txt");
while (!file.eof())
{
file >> skip;
file >> screenMode;
if (screenMode == "on")
notFullScreen = 0;
else if (screenMode == "off")
notFullScreen = 1;
file >> skip;
file >> playerXPosMS;
file >> skip;
file >> playerYPosMS;
file >> skip;
file >> playerGForce;
}
file.close();
}