#include #include using namespace std; using namespace Latan; /****************************************************************************** * DMat class * ******************************************************************************/ // constructors //////////////////////////////////////////////////////////////// DMat::DMat(void) : DMatBase() {} DMat::DMat(const DMat& M) : DMatBase(M) {} DMat::DMat(unsigned int nrow, unsigned int ncol) : DMatBase(nrow,ncol) {} IOTypes::Type DMat::IOType(void) { return IOTypes::DMat; }