Fix : Search APIs don't return exception despite the content in DB doesn't match...
[platform/framework/native/content.git] / src / FCnt_ContentInfoHelper.h
1 //
2 // Copyright (c) 2013 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                FCnt_ContentInfoHelper.h
18  * @brief               This is the header file for the %_ContentInfoHelper class.
19  *
20  * This header file contains the declarations of the %_ContentInfoHelper class.
21  */
22
23 #ifndef _FCNT_INTERNAL_CONTENT_INFO_HELPER_H_
24 #define _FCNT_INTERNAL_CONTENT_INFO_HELPER_H_
25
26 #include <FCntImageContentInfo.h>
27 #include <FCntAudioContentInfo.h>
28 #include <FCntVideoContentInfo.h>
29 #include <FCntOtherContentInfo.h>
30
31 namespace Tizen { namespace Content
32 {
33
34 class _ContentInfoHelper
35 {
36 public:
37
38         static void SetContentInfoImpl(ContentInfo* pContentInfo, _ContentInfoImpl* pContentInfoImpl);
39
40 private:
41         _ContentInfoHelper(void);
42
43         _ContentInfoHelper(const _ContentInfoHelper& rhs);
44
45         virtual ~_ContentInfoHelper(void);
46
47         _ContentInfoHelper& operator =(const _ContentInfoHelper& rhs);
48
49 };  // _ContentInfoHelper
50
51 }}  // Tizen::Content
52
53 #endif  // _FCNT_INTERNAL_CONTENT_INFO_HELPER_H_