input_device: Remove unused include 95/290095/1
authorSeunghun Lee <shiin.lee@samsung.com>
Thu, 29 Dec 2022 07:21:55 +0000 (16:21 +0900)
committerTizen Window System <tizen.windowsystem@gmail.com>
Mon, 20 Mar 2023 07:02:58 +0000 (16:02 +0900)
Change-Id: Id761447c4eaa675df8b1e1a3bdfd210fec7f008e

src/input_device/input_device.c
src/input_device/input_device_private.h

index da1994d..d609ef6 100644 (file)
@@ -5,9 +5,6 @@
 
 #include "libds/log.h"
 #include "libds/interfaces/input_device.h"
-#include "libds/interfaces/pointer.h"
-#include "libds/interfaces/keyboard.h"
-#include "libds/interfaces/touch.h"
 
 #include "input_device_private.h"
 
index 4113228..6bd98b1 100644 (file)
@@ -1,6 +1,10 @@
 #ifndef DS_INPUT_DEVICE_PRIVATE_H
 #define DS_INPUT_DEVICE_PRIVATE_H
 
+struct ds_keyboard;
+struct ds_pointer;
+struct ds_touch;
+
 void keyboard_destroy(struct ds_keyboard *keyboard);
 void pointer_destroy(struct ds_pointer *pointer);
 void touch_destroy(struct ds_touch *touch);