[content] Fix remove item bug on PlayList
[platform/framework/native/content.git] / src / FCntContentSearchResult.cpp
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                FCntContentSearchResult.cpp
19  * @brief               This is the implementation file for the %ContentSearchResult class.
20  *
21  * This file contains implementation of the %ContentSearchResult class.
22  */
23
24 #include <FCntContentSearchResult.h>
25 #include <FCntContentInfo.h>
26
27 using namespace Tizen::Base;
28
29 namespace Tizen { namespace Content
30 {
31 ContentSearchResult::ContentSearchResult(void)
32         : Object()
33         , __contentType(CONTENT_TYPE_UNKNOWN)
34         , __pContentInfo(null)
35         , __pImpl(null)
36 {
37
38 }
39
40 ContentSearchResult::~ContentSearchResult(void)
41 {
42         if (__pContentInfo != null)
43         {
44                 delete __pContentInfo;
45                 __pContentInfo = null;
46         }
47 }
48
49 ContentType
50 ContentSearchResult::GetContentType(void) const
51 {
52         return __contentType;
53 }
54
55 ContentInfo*
56 ContentSearchResult::GetContentInfo(void) const
57 {
58         return __pContentInfo;
59 }
60
61 void
62 ContentSearchResult::SetContentType(ContentType contentType)
63 {
64         __contentType = contentType;
65 }
66
67 void
68 ContentSearchResult::SetContentInfo(ContentInfo* pContentInfo)
69 {
70         __pContentInfo = pContentInfo;
71 }
72
73 }}