12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #ifndef _JSONBUILDER_H_
- #define _JSONBUILDER_H_
- #include <rapidjson/document.h>
- #include "jsonCommon.h"
- namespace YA
- {
- class jsonBuilder
- {
- private:
-
- void __AddVersion( rapidjson::Value& root, rapidjson::Document::AllocatorType& allocator );
- public:
- jsonBuilder();
- virtual ~jsonBuilder();
-
- std::string BuildLogin( const _JS_LOGIN_& Login );
-
- bool ParseCall_Card_Req( const std::string& JasonText, _JS_CALL_CARD_REQ_& CallCardReq, std::string& Error );
- };
- }
- #endif
|