Merge "Export internal APIs needed by samsung-socil" into tizen_2.1
[framework/osp/social.git] / src / FScl_CalendarbookRecordRetrivalEventArg.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_CalendarbookRecordRetrivalEventArg.cpp
18  * @brief       This is the implementation file for the _CalendarbookRecordRetrivalEventArg class.
19  *
20  * This file contains definitions of @e _CalendarbookRecordRetrivalEventArg class.
21  */
22
23 #include <FBaseSysLog.h>
24 #include "FScl_CalendarbookRecordRetrivalEventArg.h"
25
26 namespace Tizen { namespace Social
27 {
28 _CalendarbookRecordRetrivalEventArg::_CalendarbookRecordRetrivalEventArg(RequestId reqId, Tizen::Base::Collection::IList* pEventInstanceList, result r)
29         : __requestId(reqId)
30         , __pEventInstanceList(pEventInstanceList)
31         , __requestResult(r)
32 {
33         // empty body
34 }
35
36 _CalendarbookRecordRetrivalEventArg::~_CalendarbookRecordRetrivalEventArg(void)
37 {
38         // empty body
39 }
40
41 RequestId
42 _CalendarbookRecordRetrivalEventArg::GetRequestId(void) const
43 {
44         return __requestId;
45 }
46
47 Tizen::Base::Collection::IList*
48 _CalendarbookRecordRetrivalEventArg::GetEventInstanceList(void) const
49 {
50         return __pEventInstanceList;
51 }
52
53 result
54 _CalendarbookRecordRetrivalEventArg::GetRequestResult(void) const
55 {
56         return __requestResult;
57 }
58
59 }}// Tizen::Social