Purge underscored header file barriers
[platform/core/uifw/dali-adaptor.git] / dali / internal / adaptor / common / lifecycle-observer.h
1 #ifndef DALI_INTERNAL_BASE_LIFECYCLE_OBSERVER_H
2 #define DALI_INTERNAL_BASE_LIFECYCLE_OBSERVER_H
3
4 /*
5  * Copyright (c) 2019 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
23 namespace Dali
24 {
25
26 namespace Internal
27 {
28
29 namespace Adaptor
30 {
31
32 /**
33  * Adaptor life cycle observer
34  */
35 class LifeCycleObserver
36 {
37 public:
38   /**
39    * Called when the adaptor has started.
40    */
41   virtual void OnStart() = 0;
42
43   /**
44    * Called when the adaptor is about to pause.
45    */
46   virtual void OnPause() = 0;
47
48   /**
49    * Called when the adaptor is about to resume.
50    */
51   virtual void OnResume() = 0;
52
53   /**
54    * Called when the adaptor is about to stop.
55    */
56   virtual void OnStop() = 0;
57
58   /**
59    * Called when the adaptor is about to be destroyed.
60    */
61   virtual void OnDestroy() = 0;
62
63 protected:
64
65   /**
66    * Constructor
67    */
68   LifeCycleObserver()
69   {
70   }
71
72   /**
73    * Virtual destructor
74    */
75   virtual ~LifeCycleObserver()
76   {
77   }
78
79 private:
80
81   // Undefined copy constructor.
82   LifeCycleObserver( const LifeCycleObserver& );
83
84   // Undefined assignment operator.
85   LifeCycleObserver& operator=( const LifeCycleObserver& );
86
87 };
88
89
90
91 } // namespace Internal
92
93 } // namespace Adaptor
94
95 } // namespace Dali
96
97 #endif // DALI_INTERNAL_BASE_LIFECYCLE_OBSERVER_H