Merge "Purge underscored header file barriers" into devel/master
[platform/core/uifw/dali-toolkit.git] / plugins / dali-script-v8 / src / signals / emit-notification-interface.h
1 #ifndef DALI_V8PLUGIN_EMIT_NOTIFICATION_INTERFACE_H
2 #define DALI_V8PLUGIN_EMIT_NOTIFICATION_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 V8Plugin
25 {
26
27 /**
28  * abstract interface to allow the signal manager know if
29  * a JavaScript disconnect/ connect has been called, while inside a callback
30  */
31 class EmitNotificationInterface
32 {
33
34   public:
35
36   /**
37    * Constructor
38    */
39   EmitNotificationInterface() {}
40
41   /**
42    * Virtual destructor
43    */
44   virtual ~EmitNotificationInterface() {}
45
46   /**
47    * Call back has been entered.
48    * E.g. Actor on touch has called a JavaScript function
49    */
50    virtual void CallbackEnter() =0 ;
51
52    /**
53     * Call back has been entered.
54     * E.g. Actor on touch has called a JavaScript function
55     */
56    virtual void CallbackExit() =0 ;
57
58 };
59
60
61 } // namespace V8Plugin
62
63 } // namespace Dali
64
65 #endif // DALI_V8PLUGIN_EMIT_NOTIFICATION_INTERFACE_H