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 //*************************************************************************************************
40 // Includes
41 //*************************************************************************************************
42 
43 #include <blaze/util/Types.h>
44 
45 
46 namespace blaze {
47 
48 //=================================================================================================
49 //
50 // ::blaze NAMESPACE FORWARD DECLARATIONS
51 //
52 //=================================================================================================
53 
54 template< typename, bool, bool, bool > class CustomMatrix;
55 template< typename, bool, bool, bool > class CustomVector;
56 template< typename, bool > class DynamicVector;
57 template< typename, bool > class DynamicMatrix;
58 template< typename, size_t, size_t, bool > class HybridMatrix;
59 template< typename, size_t, bool > class HybridVector;
60 template< typename, size_t, size_t, bool > class StaticMatrix;
61 template< typename, size_t, bool > class StaticVector;
62 
63 } // namespace blaze
64 
65 #endif
Header file for basic type definitions.
Efficient implementation of a fixed-sized vector.The StaticVector class template is the representatio...
Definition: Forward.h:61
Efficient implementation of a dynamically sized vector with static memory.The HybridVector class temp...
Definition: Forward.h:59
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
Efficient implementation of a fixed-sized matrix.The StaticMatrix class template is the representatio...
Definition: Forward.h:60
Efficient implementation of a dynamically sized matrix with static memory.The HybridMatrix class temp...
Definition: Forward.h:58