Initialize Tizen 2.3
[framework/web/wrt-plugins-common.git] / src_mobile / Commons / TypeTraits.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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 #ifndef WRTDEVICEAPIS_COMMONS_TYPE_TRAITS_H_
17 #define WRTDEVICEAPIS_COMMONS_TYPE_TRAITS_H_
18
19 #include <dpl/shared_ptr.h>
20
21 namespace WrtDeviceApis {
22 namespace Commons {
23 template<typename T>
24 struct IsNull
25 {
26     static bool value(const T&)
27     {
28         return false;
29     }
30 };
31
32 template<typename T>
33 struct IsNull<T*>
34 {
35     static bool value(T* ptr)
36     {
37         return ptr == NULL;
38     }
39 };
40
41 template<typename Class>
42 struct IsNull<DPL::SharedPtr<Class> >
43 {
44     static bool value(const DPL::SharedPtr<Class>& ptr)
45     {
46         return ptr.Get() == NULL;
47     }
48 };
49
50 template<typename ... T>
51 struct AlwaysFalse
52 {
53     static const bool value = false;
54 };
55 }
56 } // WrtDeviceApisCommon
57
58 #endif // WRTDEVICEAPIS_COMMONS_TYPE_TRAITS_H_