Changeset 181148 in git for factory/templates/ftmpl_matrix.cc
- Timestamp:
- May 15, 2006, 11:03:07 AM (17 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- f0daaa2ae00a1c211020bcbe4eca9c6fe7947a71
- Parents:
- 1dc6163f5dbd22ee9839decb93a02494ac071aca
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/templates/ftmpl_matrix.cc
r1dc616 r181148 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: ftmpl_matrix.cc,v 1.1 0 2001-06-27 13:20:39Singular Exp $ */2 /* $Id: ftmpl_matrix.cc,v 1.11 2006-05-15 09:03:07 Singular Exp $ */ 3 3 4 4 #include <factoryconf.h> … … 143 143 #ifndef NOSTREAMIO 144 144 template <class T> 145 void Matrix<T>::printrow ( ostream& s, int i ) const145 void Matrix<T>::printrow ( OSTREAM & s, int i ) const 146 146 { 147 147 s << "( " << elems[i][0]; … … 152 152 153 153 template <class T> 154 void Matrix<T>::print( ostream& s ) const154 void Matrix<T>::print( OSTREAM& s ) const 155 155 { 156 156 if ( NR == 0 ) … … 319 319 #ifndef NOSTREAMIO 320 320 template <class T> 321 ostream & operator<< ( ostream& s, const Matrix<T>& M )321 OSTREAM & operator<< ( OSTREAM & s, const Matrix<T>& M ) 322 322 { 323 323 M.print( s );
Note: See TracChangeset
for help on using the changeset viewer.