All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
CrossTrait.h
Go to the documentation of this file.
1 //=================================================================================================
20 //=================================================================================================
21 
22 #ifndef _BLAZE_MATH_TRAITS_CROSSTRAIT_H_
23 #define _BLAZE_MATH_TRAITS_CROSSTRAIT_H_
24 
25 
26 //*************************************************************************************************
27 // Includes
28 //*************************************************************************************************
29 
30 #include <blaze/util/InvalidType.h>
33 
34 
35 namespace blaze {
36 
37 //=================================================================================================
38 //
39 // CLASS DEFINITION
40 //
41 //=================================================================================================
42 
43 //*************************************************************************************************
95 template< typename T1 // Type of the left-hand side operand
96  , typename T2 > // Type of the right-hand side operand
97 struct CrossTrait
98 {
99  //**********************************************************************************************
101  typedef INVALID_TYPE Type;
103  //**********************************************************************************************
104 };
105 //*************************************************************************************************
106 
107 } // namespace blaze
108 
109 #endif