home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / n / newmat06.zip / NEWMATIO.H < prev    next >
C/C++ Source or Header  |  1992-07-15  |  383b  |  18 lines

  1. //$$ newmatio.h           definition file for matrix package input/output
  2.  
  3. // Copyright (C) 1991,2: R B Davies
  4.  
  5. #ifndef MATRIXIO_LIB
  6. #define MATRIXIO_LIB 0
  7.  
  8. #include "newmat.h"
  9.  
  10. /**************************** input/output *****************************/
  11.  
  12. ostream& operator<<(ostream&, const BaseMatrix&);
  13.  
  14. ostream& operator<<(ostream&, const GeneralMatrix&);
  15.  
  16.  
  17. #endif
  18.