Fix for CompatTC Fail
[framework/osp/social.git] / src / FScl_AccountDbChangeEventArg.cpp
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_AccountDbChangeEventArg.cpp
18  * @brief       This is the implementation file for the _AccountDbChangeEventArg class.
19  *
20  */
21
22 #include <FBaseSysLog.h>
23 #include "FScl_AccountDbChangeEventArg.h"
24
25 namespace Tizen { namespace Social
26 {
27 _AccountDbChangeEventArg::_AccountDbChangeEventArg(AccountId accountId, _AccountDbChangeType changeType)
28         : __accountId(accountId)
29         , __changeType(changeType)
30 {
31         // empty body
32 }
33
34 _AccountDbChangeEventArg::~_AccountDbChangeEventArg(void)
35 {
36         // empty body
37 }
38
39 AccountId
40 _AccountDbChangeEventArg::GetAccountId(void) const
41 {
42         return __accountId;
43 }
44
45 _AccountDbChangeType
46 _AccountDbChangeEventArg::GetChangeType(void) const
47 {
48         return __changeType;
49 }
50
51 }}// Tizen::Social