upgrade sdk core:

supported json param;
change the way of include Utils.h;
This commit is contained in:
wb-hx510875
2019-08-14 11:13:26 +08:00
parent 090cb08688
commit 08faebee0d
17 changed files with 657 additions and 460 deletions

View File

@@ -15,27 +15,31 @@
*/
#include <alibabacloud/core/AsyncCallerContext.h>
#include "Utils.h"
#include <alibabacloud/core/Utils.h>
namespace AlibabaCloud {
namespace AlibabaCloud
{
AsyncCallerContext::AsyncCallerContext() :
uuid_(GenerateUuid()) {
AsyncCallerContext::AsyncCallerContext() : uuid_(GenerateUuid())
{
}
AsyncCallerContext::AsyncCallerContext(const std::string &uuid) :
uuid_(uuid) {
AsyncCallerContext::AsyncCallerContext(const std::string &uuid) : uuid_(uuid)
{
}
AsyncCallerContext::~AsyncCallerContext() {
AsyncCallerContext::~AsyncCallerContext()
{
}
std::string AsyncCallerContext::uuid()const {
std::string AsyncCallerContext::uuid() const
{
return uuid_;
}
void AsyncCallerContext::setUuid(const std::string &uuid) {
void AsyncCallerContext::setUuid(const std::string &uuid)
{
uuid_ = uuid;
}
} // namespace AlibabaCloud
} // namespace AlibabaCloud