Remove an unused structure 98/40898/1
authorSungmin Kwak <sungmin.kwak@samsung.com>
Tue, 31 Mar 2015 01:20:27 +0000 (10:20 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Wed, 10 Jun 2015 07:24:10 +0000 (16:24 +0900)
Change-Id: I86fcdb26d9c610efa95a96f52f5fa37263c0fb58

src/sclcorecallback.h
src/sclcoreimpl.h

index 73db935..3c66439 100644 (file)
 namespace scl
 {
 
-/* The SCL Core app information struct */
-typedef struct {
-    /* The name of this input method
-       Example : "Tizen keyboard" */
-    std::string name;
-    /* The uuid to identify this input method
-       Example : "12aa3425-f88d-45f4-a509-cee8dfe904e3"*/
-    std::string uuid;
-    /* The locale string that this input methods supports
-       Example : "en_US" */
-    std::string language;
-} SclCoreAppInfo;
-
 struct ISCLCoreEventCallback {
     virtual void on_init() {}
     virtual void on_run(int argc, char **argv) {}
index 7f4e61c..57db893 100644 (file)
@@ -97,7 +97,6 @@ public:
     void destroy_option_window(sclwindow window);
 
 private:
-    SclCoreAppInfo m_app_info;
     ISCLCoreEventCallback *m_event_callback;
 
     CSCLConnection m_connection;