Modify the spec file for secure log
[framework/osp/social.git] / src / FScl_CalendarbookDbChangeEvent.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_CalendarbookDbChangeEvent.h
18  * @brief       This is the header file for the _CalendarbookDbChangeEvent class.
19  *
20  * This file contains the declarations of _CalendarbookDbChangeEvent.
21  */
22
23
24 #ifndef _FSCL_INTERNAL_CALENDARBOOK_DB_CHANGE_EVENT_H_
25 #define _FSCL_INTERNAL_CALENDARBOOK_DB_CHANGE_EVENT_H_
26
27 #include <FBaseResult.h>
28 #include <FBaseTypes.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 _CalendarbookDbChangeEvent
41         : public Tizen::Base::Runtime::_Event
42 {
43 public:
44         /**
45          * The object is not fully constructed after this constructor is called. For full construction, @n
46          * the Construct() method must be called right after calling this constructor.
47          *
48          * @see             Construct()
49          */
50         _CalendarbookDbChangeEvent(void);
51
52         /**
53          * This destructor overrides Tizen::Base::Runtime::_Event::~_Event().
54          */
55         virtual ~_CalendarbookDbChangeEvent(void);
56
57         result Construct(void);
58
59 protected:
60         virtual void FireImpl(Tizen::Base::Runtime::IEventListener& listener, const Tizen::Base::Runtime::IEventArg& arg);
61
62 }; // _CalendarbookDbChangeEvent
63
64 }} // Tizen::Social
65
66 #endif // _FSCL_INTERNAL_CALENDARBOOK_DB_CHANGE_EVENT_H_