projects
/
platform
/
core
/
uifw
/
libpepper-efl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5c84c27
)
Export API to C++
88/68988/1
author
Seunghun Lee
<shiin.lee@samsung.com>
Wed, 11 May 2016 02:25:08 +0000
(11:25 +0900)
committer
Seunghun Lee
<shiin.lee@samsung.com>
Wed, 11 May 2016 02:37:06 +0000
(11:37 +0900)
Add #ifdef __cpluscplus to Pepper_Efl.h so the API can be used by C++.
Change-Id: I323ce95fbd9ed125b1095c6a586a844af9c42edc
src/lib/Pepper_Efl.h
patch
|
blob
|
history
diff --git
a/src/lib/Pepper_Efl.h
b/src/lib/Pepper_Efl.h
index 0b577f3cbf9b02173eb4916bc79cf83d0f286cb4..ea2842432952622d02c354ad89d956dfa257e0ee 100644
(file)
--- a/
src/lib/Pepper_Efl.h
+++ b/
src/lib/Pepper_Efl.h
@@
-6,6
+6,10
@@
* @{
*/
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/**
* @brief Event name for smart callback.
* @details This is event name for smart callback to listen add/del event of the clients
@@
-64,4
+68,8
@@
const char *pepper_efl_object_app_id_get(Evas_Object *obj);
Eina_Bool pepper_efl_object_touch_cancel(Evas_Object *obj);
+#ifdef __cplusplus
+}
+#endif
+
#endif