Purge underscored header file barriers
[platform/core/uifw/dali-core.git] / dali / internal / event / images / context-recovery-interface.h
1 #ifndef DALI_INTERNAL_CONTEXT_RECOVERY_INTERFACE_H
2 #define DALI_INTERNAL_CONTEXT_RECOVERY_INTERFACE_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 namespace Dali
22 {
23
24 namespace Internal
25 {
26
27 /**
28  * Abstract interface for Context Recovery
29  *
30  */
31 class ContextRecoveryInterface
32 {
33
34 public:
35
36   /**
37    * Restore the object after context loss
38    */
39   virtual void RecoverFromContextLoss() = 0;
40
41 protected:
42
43   /**
44    * Constructor
45    */
46   ContextRecoveryInterface()
47   {
48   }
49   /**
50    * Destructor.
51    */
52   virtual ~ContextRecoveryInterface()
53   {
54   }
55
56 private:
57
58   // Undefined copy constructor.
59   ContextRecoveryInterface( const ContextRecoveryInterface& );
60
61   // Undefined assignment operator.
62   ContextRecoveryInterface& operator=( const ContextRecoveryInterface& );
63
64 };
65
66
67 } // namespace Internal
68
69 } // namespace Dali
70
71 #endif // DALI_INTERNAL_CONTEXT_RECOVERY_INTERFACE_H