Added JsonObject::to_string() - removed content.

This commit is contained in:
Joakim Hove
2015-05-29 14:34:38 +02:00
parent bb4d676d45
commit 8756435766
4 changed files with 33 additions and 8 deletions

View File

@@ -92,7 +92,7 @@ static void generateKeywordSignature(std::iostream& of , KeywordMapType& keyword
const std::string& fileName = keywordElement.second.first;
Json::JsonObject * jsonKeyword = new Json::JsonObject(boost::filesystem::path(fileName));
of << keywordName << std::endl << jsonKeyword->get_content() << std::endl;
of << keywordName << std::endl << jsonKeyword->to_string() << std::endl;
delete jsonKeyword;
}