[dali_2.3.42] Merge branch 'devel/master'
[platform/core/uifw/dali-core.git] / dali / integration-api / processor-interface.h
1 #ifndef DALI_INTEGRATION_PROCESSOR_INTERFACE_H
2 #define DALI_INTEGRATION_PROCESSOR_INTERFACE_H
3
4 /*
5  * Copyright (c) 2023 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22 #include <string_view>
23
24 // INTERNAL INCLUDES
25 #include <dali/public-api/common/dali-common.h>
26
27 namespace Dali
28 {
29 namespace Integration
30 {
31 /**
32  * Interface to enable classes to be processed after the event loop. Classes are processed
33  * in the order they are registered.
34  */
35 class DALI_CORE_API Processor
36 {
37 public:
38   /**
39    * @brief Run the processor
40    */
41   virtual void Process(bool postProcessor = false) = 0;
42
43   /**
44    * @brief Get the name of this processor if we setup.
45    * @return The name of this processor.
46    */
47   virtual std::string_view GetProcessorName() const = 0;
48
49 protected:
50   /**
51    * Virtual protected destructor
52    */
53   virtual ~Processor() = default;
54 };
55
56 } // namespace Integration
57
58 } // namespace Dali
59
60 #endif // DALI_INTEGRATION_PROCESSOR_INTERFACE_H