All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Forward.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_MATH_DENSE_FORWARD_H_
36 #define _BLAZE_MATH_DENSE_FORWARD_H_
37 
38 
39 namespace blaze {
40 
41 //=================================================================================================
42 //
43 // ::blaze NAMESPACE FORWARD DECLARATIONS
44 //
45 //=================================================================================================
46 
47 template< typename, bool > class DynamicVector;
48 template< typename, bool > class DynamicMatrix;
49 template< typename, size_t, size_t, bool > class HybridMatrix;
50 template< typename, size_t, bool > class HybridVector;
51 template< typename, size_t, size_t, bool > class StaticMatrix;
52 template< typename, size_t, bool > class StaticVector;
53 
54 } // namespace blaze
55 
56 #endif
Efficient implementation of a fixed-sized vector.The StaticVector class template is the representatio...
Definition: Forward.h:52
Efficient implementation of a dynamically sized vector with static memory.The HybridVector class temp...
Definition: Forward.h:50
Efficient implementation of a fixed-sized matrix.The StaticMatrix class template is the representatio...
Definition: Forward.h:51
Efficient implementation of a dynamically sized matrix with static memory.The HybridMatrix class temp...
Definition: Forward.h:49