reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
template<class Element> struct TMatrixT;
typedef TMatrixT<double> TMatrixD;

void f(const TMatrixD &m);

template<class Element> struct TMatrixT {
  template <class Element2> TMatrixT(const TMatrixT<Element2> &);
  ~TMatrixT() {}
  void Determinant () { f(*this); }
};

template struct TMatrixT<float>;
template struct TMatrixT<double>;