Ignore:
Timestamp:
May 15, 2006, 11:03:07 AM (17 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
Children:
f0daaa2ae00a1c211020bcbe4eca9c6fe7947a71
Parents:
1dc6163f5dbd22ee9839decb93a02494ac071aca
Message:
*hannes: ISTREAM, OSTREAM, CERR


git-svn-id: file:///usr/local/Singular/svn/trunk@9135 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/templates/ftmpl_matrix.cc

    r1dc616 r181148  
    11/* emacs edit mode for this file is -*- C++ -*- */
    2 /* $Id: ftmpl_matrix.cc,v 1.10 2001-06-27 13:20:39 Singular Exp $ */
     2/* $Id: ftmpl_matrix.cc,v 1.11 2006-05-15 09:03:07 Singular Exp $ */
    33
    44#include <factoryconf.h>
     
    143143#ifndef NOSTREAMIO
    144144template <class T>
    145 void Matrix<T>::printrow ( ostream & s, int i ) const
     145void Matrix<T>::printrow ( OSTREAM & s, int i ) const
    146146{
    147147    s << "( " << elems[i][0];
     
    152152
    153153template <class T>
    154 void Matrix<T>::print( ostream& s ) const
     154void Matrix<T>::print( OSTREAM& s ) const
    155155{
    156156    if ( NR == 0 )
     
    319319#ifndef NOSTREAMIO
    320320template <class T>
    321 ostream & operator<< ( ostream & s, const Matrix<T>& M )
     321OSTREAM & operator<< ( OSTREAM & s, const Matrix<T>& M )
    322322{
    323323   M.print( s );
Note: See TracChangeset for help on using the changeset viewer.