Initialize Tizen 2.3
[framework/osp/social.git] / src / FScl_CalendarbookRecordRetrivalEventArg.h
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.h
18  * @brief       This is the header file for the _CalendarbookRecordRetrivalEventArg class.
19  *
20  * This file contains the declarations of _CalendarbookRecordRetrivalEventArg.
21  */
22
23 #ifndef _FSCL_INTERNAL_CALENDARBOOK_RECORD_RETRIVAL_EVENT_ARG_H_
24 #define _FSCL_INTERNAL_CALENDARBOOK_RECORD_RETRIVAL_EVENT_ARG_H_
25
26 #include <FBaseDataType.h>
27 #include <FBaseObject.h>
28 #include <FBaseRtIEventArg.h>
29
30 namespace Tizen { namespace Base { namespace Collection
31 {
32 class IList;
33 }}}
34
35 namespace Tizen { namespace Social
36 {
37
38 class _CalendarbookRecordRetrivalEventArg
39         : public Tizen::Base::Object
40         , public Tizen::Base::Runtime::IEventArg
41 {
42 public:
43         /**
44          * This is default constructor of this class
45          */
46         _CalendarbookRecordRetrivalEventArg(RequestId reqId, Tizen::Base::Collection::IList* pEventInstanceList, result r);
47
48         /**
49          * This destructor overrides Tizen::Base::Object::~Object().
50          */
51         virtual ~_CalendarbookRecordRetrivalEventArg(void);
52
53         RequestId GetRequestId(void) const;
54         Tizen::Base::Collection::IList* GetEventInstanceList(void) const;
55         result GetRequestResult(void) const;
56
57
58 private:
59         /**
60          * The implementation of this copy constructor is intentionally blank and declared as private @n
61          * to prohibit copying of objects.
62          */
63         _CalendarbookRecordRetrivalEventArg(const _CalendarbookRecordRetrivalEventArg& rhs);
64
65         /**
66          * The implementation of this copy assignment operator is intentionally blank and declared as private @n
67          * to prohibit copying of objects.
68          */
69         _CalendarbookRecordRetrivalEventArg& operator =(const _CalendarbookRecordRetrivalEventArg& rhs);
70
71 private:
72         RequestId __requestId;
73         Tizen::Base::Collection::IList* __pEventInstanceList;
74         result __requestResult;
75 };
76
77 }} // Tizen::Social
78
79 #endif // _FSCL_INTERNAL_CALENDARBOOK_RECORD_RETRIVAL_EVENT_ARG_H_