Add a new interface to pass processing result asynchronously
[platform/core/uifw/libscl-core.git] / src / sclcore.cpp
index e507274..20e791b 100644 (file)
@@ -478,3 +478,10 @@ void CSCLCore::set_engine_loader_flag(sclboolean flag)
         m_impl->set_engine_loader_flag(flag);
     }
 }
+
+void CSCLCore::send_key_event_processing_result(scim::KeyEvent &key, sclu32 serial, sclboolean is_success)
+{
+    if (m_impl) {
+        m_impl->send_key_event_processing_result(key, serial, is_success);
+    }
+}
\ No newline at end of file