2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
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
8 // http://www.apache.org/licenses/LICENSE-2.0
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.
18 * @file FBaseRt_EventImpl.h
19 * @brief This is the header file for the %_EventImpl class.
21 * This file contains the declarations of the %_EventImpl class.
24 #ifndef _FBASE_RT_INTERNAL_EVENTIMPL_H_
25 #define _FBASE_RT_INTERNAL_EVENTIMPL_H_
27 #include "FBaseRt_Event.h"
29 namespace Tizen { namespace Base { namespace Runtime
38 * @brief This class provides methods for delivering an event with an argument synchronously and asynchronously.
42 : public Tizen::Base::Runtime::_Event
46 * This is the default constructor for this class.
50 _EventImpl(Event& event);
53 * This is the destructor for this class.
57 virtual ~_EventImpl(void);
61 * Implement to call the corresponding event listener's method.
65 * @param[in] listener The listener instance which is currently processing
66 * @param[in] arg The event argument that is fired
68 * @remark A derived class must override this method.
70 virtual void FireImpl(IEventListener& listener, const IEventArg& arg);
77 } } } // Tizen::Base::Runtime
79 #endif // _FBASE_RT_INTERNAL_EVENTIMPL_H_