All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
IsResizable.h
Go to the documentation of this file.
1 //=================================================================================================
20 //=================================================================================================
21 
22 #ifndef _BLAZE_MATH_TYPETRAITS_ISRESIZABLE_H_
23 #define _BLAZE_MATH_TYPETRAITS_ISRESIZABLE_H_
24 
25 
26 //*************************************************************************************************
27 // Includes
28 //*************************************************************************************************
29 
30 #include <blaze/util/FalseType.h>
31 #include <blaze/util/TrueType.h>
32 
33 
34 namespace blaze {
35 
36 //=================================================================================================
37 //
38 // CLASS DEFINITION
39 //
40 //=================================================================================================
41 
42 //*************************************************************************************************
61 template< typename T >
62 struct IsResizable : public FalseType
63 {
64  public:
65  //**********************************************************************************************
67  enum { value = 0 };
68  typedef FalseType Type;
70  //**********************************************************************************************
71 };
72 //*************************************************************************************************
73 
74 } // namespace blaze
75 
76 #endif