DSCore: put std header files to DSCore.h 76/241776/1
authorSooChan Lim <sc1.lim@samsung.com>
Mon, 10 Aug 2020 09:41:07 +0000 (18:41 +0900)
committerSung-Jin Park <sj76.park@samsung.com>
Thu, 20 Aug 2020 10:10:34 +0000 (19:10 +0900)
Change-Id: I78dbecc1194c8d299644e732de7fd3a0c5d6e7d6

18 files changed:
src/DSBuffer/IDSBufferQueue.h
src/DSCanvas/DSCanvas.h
src/DSCompositor/DSCompositorPrivate.h
src/DSCore/DSCore.h
src/DSDisplayArea/DSDisplayArea.h
src/DSDisplayArea/DSDisplayAreaPrivate.h
src/DSDisplayDevice/IDSDisplayDeviceHWC.h
src/DSInput/DSInput.h
src/DSObject/DSObject.h
src/DSOutput/IDSOutput.h
src/DSPolicyArea/DSPolicyArea.h
src/DSProperty/DSProperty.h
src/DSProperty/DSPropertyPrivate.h
src/DSRender/DSRenderView.h
src/DSRender/IDSRenderEngine.h
src/DSSeat/DSSeat.h
src/DSSignal/DSSignal.h
src/DSWaylandServer/DSWaylandCompositorPrivate.h

index 4750374..b158072 100644 (file)
@@ -1,8 +1,7 @@
-#ifndef __I_DS_BUFFER_QUEUE_H_
-#define __I_DS_BUFFER_QUEUE_H_
+#ifndef __I_DS_BUFFER_QUEUE_H__
+#define __I_DS_BUFFER_QUEUE_H__
 
 #include "IDSBuffer.h"
-#include <memory>
 
 namespace display_server
 {
index 1be8ead..830f615 100644 (file)
@@ -5,7 +5,6 @@
 #include <DSObject.h>
 #include <DSPolicyArea.h>
 #include <DSDisplayArea.h>
-#include <memory>
 
 namespace display_server
 {
index e84424c..6df74b7 100644 (file)
@@ -5,7 +5,6 @@
 #include "DSEventLoop.h"
 #include "IDSDisplayDevice.h"
 #include "DSBufferManager.h"
-#include <memory>
 
 namespace display_server
 {
index 799257d..e47fe64 100644 (file)
@@ -2,10 +2,13 @@
 #define __DS_CORE_H__
 
 #include <DSDebugLog.h>
+#include <iostream>
+#include <string>
 #include <list>
 #include <memory>
 #include <functional>
 #include <cassert>
+#include <variant>
 
 /* Macros for visibility */
 #define DS_DECL_EXPORT __attribute__((visibility("default")))
index d644cdc..8097d5c 100644 (file)
@@ -4,7 +4,6 @@
 #include <DSCore.h>
 #include <DSObject.h>
 #include <IDSOutput.h>
-#include <memory>
 
 namespace display_server
 {
index b298f80..7323552 100644 (file)
@@ -9,7 +9,6 @@
 #include "IDSDisplayDeviceOutput.h"
 #include "IDSDisplayDeviceHWC.h"
 #include "DSEventLoop.h"
-#include <memory>
 
 namespace display_server
 {
index 8d6c77c..e6abd81 100644 (file)
@@ -3,7 +3,6 @@
 
 #include "IDSDisplayDeviceHWCWindow.h"
 #include "IDSBufferQueue.h"
-#include <memory>
 
 namespace display_server
 {
index 3555256..72b88a8 100644 (file)
@@ -3,12 +3,7 @@
 
 #include <DSCore.h>
 #include <DSObject.h>
-#include <iostream>
-#include <string>
-#include <memory>
 #include <DSSignal.h>
-#include <functional>
-
 #include <Ecore.h>
 
 namespace display_server
index 1548b3f..bfefe32 100644 (file)
@@ -1,12 +1,10 @@
 #ifndef __DS_OBJECT_H_
 #define __DS_OBJECT_H_
 
+#include "DSCore.h"
 #include "IDSObjectObserver.h"
 #include "DSObjectPrivate.h"
 #include "DSProperty.h"
-#include <iostream>
-#include <memory>
-#include <string>
 
 namespace display_server
 {
index c3c8fc5..53a068d 100644 (file)
@@ -1,8 +1,6 @@
 #ifndef __I_DS_OUTPUT_H__
 #define __I_DS_OUTPUT_H__
 
-#include <memory>
-
 namespace display_server
 {
 
index bb0a91b..506ebb2 100644 (file)
@@ -4,7 +4,6 @@
 #include <DSCore.h>
 #include <DSObject.h>
 #include <DSSeat.h>
-#include <memory>
 
 namespace display_server
 {
index bba4454..306b6f5 100644 (file)
@@ -1,11 +1,8 @@
 #ifndef __DS_PROPERTY_H_
 #define __DS_PROPERTY_H_
 
+#include "DSCore.h"
 #include "DSPropertyPrivate.h"
-#include <iostream>
-#include <memory>
-#include <string>
-#include <variant>
 
 namespace display_server
 {
index b7de8b7..5044991 100644 (file)
@@ -1,11 +1,8 @@
 #ifndef __DS_PROPERTY_PRIVATE_H_
 #define __DS_PROPERTY_PRIVATE_H_
 
+#include "DSCore.h"
 #include "DSProperty.h"
-#include <iostream>
-#include <memory>
-#include <string>
-#include <variant>
 
 namespace display_server
 {
index d7b2e88..b6eb9c2 100644 (file)
@@ -3,7 +3,6 @@
 
 #include "IDSBuffer.h"
 #include "DSWindow.h"
-#include <memory>
 
 namespace display_server
 {
index 02f906d..2891ea0 100644 (file)
@@ -3,7 +3,6 @@
 
 #include "DSRenderView.h"
 #include "DSWindow.h"
-#include <memory>
 
 namespace display_server
 {
index d98f28e..3c8ea65 100644 (file)
@@ -4,7 +4,6 @@
 #include "DSCore.h"
 #include "DSObject.h"
 #include "DSSignal.h"
-#include <memory>
 #include <Ecore.h>
 
 namespace display_server
index eedf0a7..05209f9 100644 (file)
@@ -2,11 +2,6 @@
 #define __DS_SIGNAL_H_
 
 #include "DSObject.h"
-#include <iostream>
-#include <string>
-#include <list>
-#include <memory>
-#include <functional>
 
 namespace display_server
 {
index af99b70..cbc7dd9 100644 (file)
@@ -8,7 +8,6 @@
 #include "DSDebugLog.h"
 
 #include <wayland-server-core.h>
-#include <memory>
 #include <Ecore.h>
 
 namespace display_server