[Tizen] Calculrate screen position with RenderTask
[platform/core/uifw/dali-core.git] / dali / integration-api / processor-interface.h
index 1043ac3..45408ff 100644 (file)
@@ -2,7 +2,7 @@
 #define DALI_INTEGRATION_PROCESSOR_INTERFACE_H
 
 /*
- * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2021 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
 
 namespace Dali
 {
-
 namespace Integration
 {
-
 /**
  * Interface to enable classes to be processed after the event loop. Classes are processed
  * in the order they are registered.
@@ -37,18 +35,17 @@ public:
   /**
    * @brief Run the processor
    */
-  virtual void Process() = 0;
+  virtual void Process(bool postProcessor = false) = 0;
 
 protected:
-
   /**
    * Virtual protected destructor
    */
-  virtual ~Processor() { }
+  virtual ~Processor() = default;
 };
 
-} // Dali
+} // namespace Integration
 
-} // Integration
+} // namespace Dali
 
 #endif // DALI_INTEGRATION_PROCESSOR_INTERFACE_H
\ No newline at end of file