// // Copyright (c) 2012 Samsung Electronics Co., Ltd. // // Licensed under the Apache License, Version 2.0 (the License); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // /** * @file FScl_AccountDbChangeEvent.h * @brief This is the header file for the _AccountDbChangeEvent class. * * This file contains the declarations of _AccountDbChangeEvent. */ #ifndef _FSCL_INTERNAL_ACCOUNT_DB_CHANGE_EVENT_H_ #define _FSCL_INTERNAL_ACCOUNT_DB_CHANGE_EVENT_H_ #include #include #include namespace Tizen { namespace Base { namespace Runtime { class IEventListener; class IEventArg; }}} namespace Tizen { namespace Social { class _AccountDbChangeEvent : public Tizen::Base::Runtime::_Event { public: /** * This is the default constructor. * * @since 2.0 */ _AccountDbChangeEvent(void); /** * This destructor overrides Tizen::Base::Runtime::_Event::~_Event(). * * @since 2.0 */ virtual ~_AccountDbChangeEvent(void); result Construct(void); protected: virtual void FireImpl(Tizen::Base::Runtime::IEventListener& listener, const Tizen::Base::Runtime::IEventArg& arg); }; // _AccountDbChangeEvent }} // Tizen::Social #endif // _FSCL_INTERNAL_ACCOUNT_DB_CHANGE_EVENT_H_