tizen beta release
[platform/framework/web/wrt-plugins-common.git] / src / 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
24 template<typename T>
25 struct IsNull
26 {
27     static bool value(const T&)
28     {
29         return false;
30     }
31 };
32
33 template<typename T>
34 struct IsNull<T*>
35 {
36     static bool value(T* ptr)
37     {
38         return ptr == NULL;
39     }
40 };
41
42 template<typename Class>
43 struct IsNull<DPL::SharedPtr<Class> >
44 {
45     static bool value(const DPL::SharedPtr<Class>& ptr)
46     {
47         return ptr.Get() == NULL;
48     }
49 };
50
51 template<typename ... T>
52 struct AlwaysFalse
53 {
54     static const bool value = false;
55 };
56
57 }
58 } // WrtDeviceApisCommon
59
60 #endif // WRTDEVICEAPIS_COMMONS_TYPE_TRAITS_H_