1234567891011121314151617 |
- //
- // JsonRead.cpp
- // cocos2d_libs
- //
- // Created by 徐俊杰 on 2020/6/5.
- //
- #include "rparticle/Serialize/TransferFunctions/JsonRead.h"
- NS_RRP_BEGIN
- JsonRead::JsonRead(const std::string &content) {
- document.Parse(content.c_str());
- valueStack.push(&document);
- }
- NS_RRP_END
|