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