BaseTemplate.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_MATH_VIEWS_ROW_BASETEMPLATE_H_
36 #define _BLAZE_MATH_VIEWS_ROW_BASETEMPLATE_H_
37 
38 
39 //*************************************************************************************************
40 // Includes
41 //*************************************************************************************************
42 
47 
48 
49 namespace blaze {
50 
51 //=================================================================================================
52 //
53 // CLASS DEFINITION
54 //
55 //=================================================================================================
56 
57 //*************************************************************************************************
351 template< typename MT // Type of the matrix
352  , bool SO = IsRowMajorMatrix<MT>::value // Storage order
353  , bool DF = IsDenseMatrix<MT>::value // Density flag
354  , bool SF = IsSymmetric<MT>::value > // Symmetry flag
355 class Row
356 {};
357 //*************************************************************************************************
358 
359 } // namespace blaze
360 
361 #endif
Header file for the alignment flag values.
Header file for the IsSymmetric type trait.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
Header file for the IsDenseMatrix type trait.
Reference to a specific row of a dense or sparse matrix.The Row template represents a reference to a ...
Definition: BaseTemplate.h:355
Header file for the IsRowMajorMatrix type trait.