Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed-os-example-mbed5-blinky by
Diff: DuerOS-Light-SDK-v1.1.0/duer-os-light/src/iot-baidu-ca-scheduler/baidu_ca_object.h
- Revision:
- 47:9e361da97763
diff -r 183cfc59d4e4 -r 9e361da97763 DuerOS-Light-SDK-v1.1.0/duer-os-light/src/iot-baidu-ca-scheduler/baidu_ca_object.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/DuerOS-Light-SDK-v1.1.0/duer-os-light/src/iot-baidu-ca-scheduler/baidu_ca_object.h Tue Jul 18 16:54:45 2017 +0800
@@ -0,0 +1,62 @@
+// Copyright 2017 Baidu Inc. All Rights Reserved.
+// Author: Su Hao (suhao@baidu.com)
+//
+// Description: Object
+
+#ifndef BAIDU_IOT_TINYDU_IOT_OS_SRC_IOT_BAIDU_CA_SCHEDULER_BAIDU_CA_OBJECT_H
+#define BAIDU_IOT_TINYDU_IOT_OS_SRC_IOT_BAIDU_CA_SCHEDULER_BAIDU_CA_OBJECT_H
+
+#include <stddef.h>
+
+struct baidu_json;
+
+namespace duer {
+
+class Object {
+public:
+
+ Object();
+
+ ~Object();
+
+ void reset();
+
+ void putInt(const char* key, int value);
+
+ void putDouble(const char* key, double value);
+
+ void putString(const char* key, const char* value);
+
+ // Note: the life time of value should be longer or equal this
+ void putObject(const char* key, const Object& value);
+
+ void putIntArray(const char* key, int value[], size_t length);
+
+ void putDoubleArray(const char* key, double value[], size_t length);
+
+ void putStringArray(const char* key, const char* value[], size_t length);
+
+ void putObjectArray(const char* key, Object value[], size_t length);
+
+ // the owner of object will be transfered to this.
+ // there should no other Object control the life of object
+ void receiveObject(const char* key, baidu_json* object);
+
+ // give up the ownership of _data, and reset _data to a new one
+ baidu_json* releaseObject();
+
+ const char* toString();
+
+private:
+
+ Object(const Object& other);
+
+ Object& operator =(const Object& other);
+
+ baidu_json* _data;
+ char* _string;
+};
+
+} // namespace duer
+
+#endif // BAIDU_IOT_TINYDU_IOT_OS_SRC_IOT_BAIDU_CA_SCHEDULER_BAIDU_CA_OBJECT_H
