1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2024-09-20 05:25:37 +01:00
LatAnalyze/latan/Mat.cpp

27 lines
656 B
C++

#include <latan/Mat.hpp>
#include <latan/includes.hpp>
using namespace std;
using namespace Latan;
/******************************************************************************
* DMat class *
******************************************************************************/
// constructors ////////////////////////////////////////////////////////////////
DMat::DMat(void)
: DMatBase()
{}
DMat::DMat(const DMat& M)
: DMatBase(M)
{}
DMat::DMat(const unsigned int nRow, const unsigned int nCol)
: DMatBase(nRow,nCol)
{}
unsigned int DMat::getType(void) const
{
return IoType::dMat;
}