Fixed prevent issue
[apps/osp/Gallery.git] / src / GlThumbnailJob.cpp
1 //
2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Flora License, Version 1.1 (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://floralicense.org/license/
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 /**
18  * @file                GlThumbnailJob.cpp
19  * @brief               This is the implementation file for ThumbnailJob class.
20  */
21
22 #include <FContent.h>
23 #include "GlThumbnailEvent.h"
24 #include "GlThumbnailJob.h"
25
26 using namespace Tizen::Base::Runtime;
27 using namespace Tizen::Content;
28
29 ThumbnailJob::ThumbnailJob(void)
30         : __requestId(0)
31         , __pRequestEvent(null)
32 {
33 }
34
35 ThumbnailJob::~ThumbnailJob(void)
36 {
37 }
38
39 void
40 ThumbnailJob::Construct(const ContentId& contentId, const unsigned long requestId,
41                 const ThumbnailEvent* pRequestEvent)
42 {
43         __contentId = contentId;
44         __requestId = requestId;
45         __pRequestEvent = pRequestEvent;
46 }
47
48 ContentId
49 ThumbnailJob::GetContentId(void) const
50 {
51         return __contentId;
52 }
53
54 unsigned long
55 ThumbnailJob::GetRequestId(void) const
56 {
57         return __requestId;
58 }
59
60 const ThumbnailEvent*
61 ThumbnailJob::GetEvent(void) const
62 {
63         return __pRequestEvent;
64 }