Fix the boiler plate codes
[framework/osp/social.git] / src / FScl_ContactDbChangeEvent.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  * @file        FScl_ContactDbChangeEvent.h
18  * @brief       This is the header file for the _ContactDbChangeEvent class.
19  *
20  * This file contains the declarations of _ContactDbChangeEvent.
21  */
22
23
24 #ifndef _FSCL_INTERNAL_CONTACT_DB_CHANGE_EVENT_H_
25 #define _FSCL_INTERNAL_CONTACT_DB_CHANGE_EVENT_H_
26
27 #include <FBaseTypes.h>
28 #include <FBaseResult.h>
29 #include <FBaseRt_Event.h>
30
31 namespace Tizen { namespace Base { namespace Runtime
32 {
33 class IEventListener;
34 class IEventArg;
35 }}}
36
37 namespace Tizen { namespace Social
38 {
39
40 class _ContactDbChangeEvent
41         : public Tizen::Base::Runtime::_Event
42 {
43 public:
44         /**
45          * This is the default constructor.
46          *
47          * @since       2.0
48          */
49         _ContactDbChangeEvent(void);
50
51         /**
52          * This destructor overrides Tizen::Base::Runtime::_Event::~_Event().
53          *
54          * @since       2.0
55          */
56         virtual ~_ContactDbChangeEvent(void);
57
58         result Construct(void);
59
60 protected:
61         virtual void FireImpl(Tizen::Base::Runtime::IEventListener& listener, const Tizen::Base::Runtime::IEventArg& arg);
62
63 }; // _ContactDbChangeEvent
64
65 }} // Tizen::Social
66
67 #endif // _FSCL_INTERNAL_CONTACT_DB_CHANGE_EVENT_H_