Fix code for TDIS-5396
[framework/osp/social.git] / src / FScl_ContactDbChangeEventArg.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_ContactDbChangeEventArg.h
19  * @brief       This is the header file for the _ContactDbChangeEventArg class.
20  *
21  * This file contains the declarations of _ContactDbChangeEventArg.
22  */
23
24 #ifndef _FSCL_INTERNAL_CONTACT_DB_CHANGE_EVENT_ARG_H_
25 #define _FSCL_INTERNAL_CONTACT_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 _ContactDbChangeType
35 {
36         _CONTACT_DB_CHANGE_TYPE_CONTACT,
37         _CONTACT_DB_CHANGE_TYPE_GROUP,
38         _CONTACT_DB_CHANGE_TYPE_RELATION,
39         _CONTACT_DB_CHANGE_TYPE_ADDRESSBOOK
40 };
41
42 class _ContactDbChangeEventArg
43         : public Tizen::Base::Object
44         , public Tizen::Base::Runtime::IEventArg
45 {
46 public:
47         /**
48          * Initializes this instance of %_ContactDbChangeEventArg with the specified value.
49          *
50          * @since       2.0
51          *
52          * @param[in]   value   A _ContactDbChangeType type
53          */
54         _ContactDbChangeEventArg(_ContactDbChangeType changeType);
55
56         /**
57          * This destructor overrides Tizen::Base::Object::~Object().
58          *
59          * @since       2.0
60          */
61         virtual ~_ContactDbChangeEventArg(void);
62
63         _ContactDbChangeType GetChangeType(void) const;
64
65 private:
66         /**
67          * The implementation of this copy constructor is intentionally blank and declared as private to prohibit copying of objects.
68          *
69          * @since       2.0
70          */
71         _ContactDbChangeEventArg(const _ContactDbChangeEventArg& rhs);
72
73         /**
74          * The implementation of this copy assignment operator is intentionally blank and declared as private to prohibit copying of objects.
75          *
76          * @since       2.0
77          */
78         _ContactDbChangeEventArg& operator =(const _ContactDbChangeEventArg& rhs);
79
80 private:
81         _ContactDbChangeType __changeType;
82 };
83
84 }} // Tizen::Social
85
86 #endif // _FSCL_INTERNAL_CONTACT_DB_CHANGE_EVENT_ARG_H_