Fix the boiler plate codes
[platform/framework/native/appfw.git] / src / app / FApp_AppLaunchConditionHandlerBase.cpp
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_AppLaunchConditionHandlerBase.cpp
19  * @brief       This file contains _AppLaunchConditionHandlerBase class implementation.
20  */
21
22 #include "FApp_AppLaunchConditionHandlerBase.h"
23
24 namespace Tizen { namespace App  {
25
26
27 _AppLaunchConditionHandlerBase::_AppLaunchConditionHandlerBase(void)
28         :__pEventListener(null)
29 {
30 }
31
32 _AppLaunchConditionHandlerBase::~_AppLaunchConditionHandlerBase(void)
33 {
34 }
35
36 result
37 _AppLaunchConditionHandlerBase::SetEventListener(_IAppLaunchConditionEventListener& eventListener)
38 {
39         __pEventListener = &eventListener;
40         return E_SUCCESS;
41 }
42
43 result
44 _AppLaunchConditionHandlerBase::Fire(const _AppLaunchCondition& operation, Tizen::Base::Collection::IMap* pExtraData)
45 {
46         SysTryReturnResult(NID_APP, __pEventListener != null, E_INVALID_STATE, "__pEventListener shoule not be null!");
47         __pEventListener->OnAppLaunchConditionMet(operation, pExtraData);
48         return E_SUCCESS;
49 }
50
51 }}//namespace Tizen { namespace App  {