diff options
author | 2017-10-23 14:46:17 +0900 | |
---|---|---|
committer | 2017-10-26 04:36:02 +0000 | |
commit | 5bc5f80436ef7d2f3c4f674548d2ba2e7aaa7194 (patch) | |
tree | 58c89207507009526a8dd69a16742d199f3fe30e /include/libhomescreen.hpp | |
parent | 2f5d8b003df780114093a02f801502cbca440ccf (diff) |
Modified functional argument from char to json
Change libhomescreen event api from char to json.
Also modify sample who use this.
Change-Id: Id3986d413f9494019f6b175488dd73de226ba020
Signed-off-by: zheng_wenlong <wenlong_zheng@nexty-ele.com>
Diffstat (limited to 'include/libhomescreen.hpp')
-rw-r--r-- | include/libhomescreen.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libhomescreen.hpp b/include/libhomescreen.hpp index 5720368..9034dc8 100644 --- a/include/libhomescreen.hpp +++ b/include/libhomescreen.hpp @@ -38,7 +38,7 @@ public: LibHomeScreen(const LibHomeScreen &) = delete; LibHomeScreen &operator=(const LibHomeScreen &) = delete; - using handler_func = std::function<void(const char*)>; + using handler_func = std::function<void(json_object*)>; enum EventType { Event_TapShortcut = 1, |