All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RemoveCV.h
Go to the documentation of this file.
1 //=================================================================================================
20 //=================================================================================================
21 
22 #ifndef _BLAZE_UTIL_TYPETRAITS_REMOVECV_H_
23 #define _BLAZE_UTIL_TYPETRAITS_REMOVECV_H_
24 
25 
26 //*************************************************************************************************
27 // Includes
28 //*************************************************************************************************
29 
30 #include <boost/type_traits/remove_cv.hpp>
31 
32 
33 namespace blaze {
34 
35 //=================================================================================================
36 //
37 // CLASS DEFINITION
38 //
39 //=================================================================================================
40 
41 //*************************************************************************************************
57 template< typename T >
58 struct RemoveCV
59 {
60  public:
61  //**********************************************************************************************
63  typedef typename boost::remove_cv<T>::type Type;
65  //**********************************************************************************************
66 };
67 //*************************************************************************************************
68 
69 } // namespace blaze
70 
71 #endif