コード例 #1
0
ファイル: JSONSerialize.cpp プロジェクト: clawplach/ffead-cpp
string JSONSerialize::elementToSerializedString(void* _1, int counter)
{
	JSONElement* root = (JSONElement*)_1;
	if((int)root->getChildren().size()<counter)
		return NULL;
	JSONElement* ele = root->getChildren().at(counter);
	return ele->toString();
}