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_configuration.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_configuration.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_configuration.h Tue Jul 18 16:54:45 2017 +0800
@@ -0,0 +1,32 @@
+// Copyright 2017 Baidu Inc. All Rights Reserved.
+// Author: Su Hao (suhao@baidu.com)
+//
+// Description: Configuration
+
+#ifndef BAIDU_IOT_TINYDU_IOT_OS_SRC_IOT_BAIDU_CA_SCHEDULER_BAIDU_CA_CONFIGURATION_H
+#define BAIDU_IOT_TINYDU_IOT_OS_SRC_IOT_BAIDU_CA_SCHEDULER_BAIDU_CA_CONFIGURATION_H
+
+#include "baidu_ca_types.h"
+
+namespace duer {
+
+class Configuration {
+public:
+
+ Configuration();
+
+ virtual ~Configuration();
+
+ virtual const void* get_data() const;
+
+ virtual bca_size_t get_size() const;
+
+private:
+
+ const void* _data;
+ bca_size_t _size;
+};
+
+} // namespace duer
+
+#endif // BAIDU_IOT_TINYDU_IOT_OS_SRC_IOT_BAIDU_CA_SCHEDULER_BAIDU_CA_CONFIGURATION_H
