00001 // SparseMatrix.cpp: implementation of the SparseMatrix class. 00002 // 00004 00005 #include "SparseMatrix.h" 00006 00008 // Construction/Destruction 00010 00011 SparseMatrix::SparseMatrix(int nRows, int nCols) 00012 { 00013 this->nRows = nRows; 00014 this->nCols = nCols; 00015 } 00016 00017 SparseMatrix::~SparseMatrix() 00018 { 00019 00020 }