home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / dev / c / math_classes.lha / math_classes / matrix / libmatrix / pmat_destr.cc < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-18  |  86 b   |  11 lines

  1. #include "Matrix.h"
  2.     
  3.     
  4. Pmatrix::~Pmatrix()
  5.     {
  6.     if (rws!=0)
  7.         {
  8.         delete [] r;
  9.         }
  10.     }
  11.