GCpp general purpose C++ library  version 1.0
GMatrixD.hh
Go to the documentation of this file.
1 //======================================================================
2 /*! \file GMatrixD.hh
3  *
4  * Include file for specialisation of matrix template class with double.
5  */
6 //======================================================================
7 
8 #ifndef G_MATRIX_D_HH
9 #define G_MATRIX_D_HH
10 
11 #include "GMatrixT.hh"
12 
13 
14 /*! Specialisation of the function to initialise the matrix content.*/
15 template <> inline void GMatrixT<double>::InitData ( ) // inline
16  { memset ( element, 0, dimension*sizeof(double) ); }
17 
18 
19 ///! Defines the type for double matrices
21 
22 
23 //======================================================================
24 
25 #endif
virtual void InitData()
Definition: GMatrixT.icc:83
GMatrixT< double > GMatrixD
! Defines the type for double matrices
Definition: GMatrixD.hh:20
Definition: GMatrixT.hh:35