Fix code for TDIS-5396
[framework/osp/social.git] / src / FScl_CalendarbookDbChangeEventArg.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17 /**
18  * @file        FScl_CalendarbookDbChangeEventArg.h
19  * @brief       This is the header file for the _CalendarbookDbChangeEventArg class.
20  *
21  * This file contains the declarations of _CalendarbookDbChangeEventArg.
22  */
23
24 #ifndef _FSCL_INTERNAL_CALENDARBOOK_DB_CHANGE_EVENT_ARG_H_
25 #define _FSCL_INTERNAL_CALENDARBOOK_DB_CHANGE_EVENT_ARG_H_
26
27 #include <FBaseObject.h>
28 #include <FSclRecord.h>
29 #include <FBaseRtIEventArg.h>
30
31 namespace Tizen { namespace Social
32 {
33
34 enum _CalendarbookDbChangeType
35 {
36         _CALENDARBOOK_DB_CHANGE_TYPE_EVENT,
37         _CALENDARBOOK_DB_CHANGE_TYPE_TODO
38 };
39
40 class _CalendarbookDbChangeEventArg
41         : public Tizen::Base::Object
42         , public Tizen::Base::Runtime::IEventArg
43 {
44 public:
45         /**
46          * This is the default constructor of this class
47          */
48         _CalendarbookDbChangeEventArg(_CalendarbookDbChangeType changeType);
49
50         /**
51          * This destructor overrides Tizen::Base::Object::~Object().
52          */
53         virtual ~_CalendarbookDbChangeEventArg(void);
54
55         _CalendarbookDbChangeType GetChangeType(void) const;
56
57 private:
58         /**
59          * The implementation of this copy constructor is intentionally blank and declared as private @n
60          * to prohibit copying of objects.
61          */
62         _CalendarbookDbChangeEventArg(const _CalendarbookDbChangeEventArg& rhs);
63
64         /**
65          * The implementation of this copy assignment operator is intentionally blank and declared as private @n
66          * to prohibit copying of objects.
67          */
68         _CalendarbookDbChangeEventArg& operator =(const _CalendarbookDbChangeEventArg& rhs);
69
70 private:
71         _CalendarbookDbChangeType __changeType;
72 };
73
74 }} // Tizen::Social
75
76 #endif // _FSCL_INTERNAL_CALENDARBOOK_DB_CHANGE_EVENT_ARG_H_