home *** CD-ROM | disk | FTP | other *** search
/ Boston 2 / boston-2.iso / DOS / PROGRAM / C / NEWMAT / NEWMATIO.HXX < prev    next >
Text File  |  1993-12-01  |  386b  |  18 lines

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