Fix the boiler plate codes
[platform/framework/native/appfw.git] / src / app / inc / FApp_IAppControlResponseEventListener.h
1 //
2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Apache License, Version 2.0 (the License);
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //     http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //
16
17 /**
18  * @file        FApp_IAppControlSysEventListener.h
19  * @brief       This is the header file of the _IAppControlSysEventListener class.
20  */
21
22 #ifndef _FAPP_INTERNAL_IAPP_CONTROL_RESPONSE_EVENT_LISTENER_H_
23 #define _FAPP_INTERNAL_IAPP_CONTROL_RESPONSE_EVENT_LISTENER_H_
24
25 #include <FOspConfig.h>
26 #include <FAppTypes.h>
27 #include <FBaseRtIEventListener.h>
28
29 namespace Tizen { namespace Base { namespace Collection { class IMap; } } }
30
31 namespace Tizen { namespace App
32 {
33
34 /**
35  * @class        _IAppControlResponseEventListener
36  * @brief
37  * @since 2.1
38  */
39 class _IAppControlResponseEventListener
40         : virtual public Tizen::Base::Runtime::IEventListener
41 {
42 public:
43         virtual ~_IAppControlResponseEventListener(void) {}
44
45         virtual void OnAppControlResponseEventReceivedN(const Tizen::Base::Runtime::IEventArg* arg) = 0;
46
47 }; // _IAppControlResponseEventListener
48
49 } } // Tizen::App
50
51 #endif //_FAPP_INTERNAL_IAPP_CONTROL_RESPONSE_EVENT_LISTENER_H_