4
有什麼方法可以用boost :: property :: ptree在ini文件中寫入註釋嗎?用boost :: property_tree :: ptree寫入註釋到ini文件
類似的東西:
void save_ini(const std::string& path)
{
boost::property_tree::ptree pt;
int first_value = 1;
int second_value = 2;
// Write a comment to describe what the first_value is here
pt.put("something.first_value",);
// Write a second comment here
pt.put("something.second_value", second_value);
boost::property_tree::write_ini(path, pt);
}
文檔here沒有給出信息。是否提升了那個?
在此先感謝
我想過,但我想我會不加註釋地離開它。我寧願這樣做比擁有包含評論的假屬性。無論如何,謝謝! – 2014-12-08 13:59:50
我認爲它不能正常工作 - 不能保證書寫順從你想要的順序。 – agodinhost 2015-02-02 23:48:28