Fix code for TDIS-5396
[framework/osp/social.git] / src / FScl_AccountDbChangeEventArg.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_AccountDbChangeEventArg.h
19  * @brief       This is the header file for the _AccountDbChangeEventArg class.
20  *
21  * This file contains the declarations of _AccountDbChangeEventArg.
22  */
23
24 #ifndef _FSCL_INTERNAL_ACCOUNT_DB_CHANGE_EVENT_ARG_H_
25 #define _FSCL_INTERNAL_ACCOUNT_DB_CHANGE_EVENT_ARG_H_
26
27 #include <FBaseObject.h>
28 #include <FBaseRtIEventArg.h>
29 #include <FSclTypes.h>
30
31 namespace Tizen { namespace Social
32 {
33
34 enum _AccountDbChangeType
35 {
36         _ACCOUNT_DB_CHANGE_TYPE_ADD,
37         _ACCOUNT_DB_CHANGE_TYPE_UPDATE,
38         _ACCOUNT_DB_CHANGE_TYPE_REMOVE
39 };
40
41 class _AccountDbChangeEventArg
42         : public Tizen::Base::Object
43         , public Tizen::Base::Runtime::IEventArg
44 {
45 public:
46         /**
47          * Initializes this instance of %_AccountDbChangeEventArg with the specified value.
48          *
49          * @since       2.1
50          *
51          * @param[in]   value   A _AccountDbChangeType type
52          */
53         _AccountDbChangeEventArg(AccountId accountId, _AccountDbChangeType changeType);
54
55         /**
56          * This destructor overrides Tizen::Base::Object::~Object().
57          *
58          * @since       2.1
59          */
60         virtual ~_AccountDbChangeEventArg(void);
61
62         AccountId GetAccountId(void) const;
63
64         _AccountDbChangeType GetChangeType(void) const;
65
66 private:
67         /**
68          * The implementation of this copy constructor is intentionally blank and declared as private to prohibit copying of objects.
69          *
70          * @since       2.1
71          */
72         _AccountDbChangeEventArg(const _AccountDbChangeEventArg& rhs);
73
74         /**
75          * The implementation of this copy assignment operator is intentionally blank and declared as private to prohibit copying of objects.
76          *
77          * @since       2.1
78          */
79         _AccountDbChangeEventArg& operator =(const _AccountDbChangeEventArg& rhs);
80
81 private:
82         AccountId __accountId;
83         _AccountDbChangeType __changeType;
84 };
85
86 }} // Tizen::Social
87
88 #endif // _FSCL_INTERNAL_ACCOUNT_DB_CHANGE_EVENT_ARG_H_