Changeset 181148 in git for factory/templates/ftmpl_list.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_list.cc
r1dc616 r181148 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: ftmpl_list.cc,v 1. 8 2003-02-11 16:28:51Singular Exp $ */2 /* $Id: ftmpl_list.cc,v 1.9 2006-05-15 09:03:07 Singular Exp $ */ 3 3 4 4 #include <factoryconf.h> … … 78 78 #ifndef NOSTREAMIO 79 79 template <class T> 80 void ListItem<T>::print( ostream& os )80 void ListItem<T>::print( OSTREAM & os ) 81 81 { 82 82 if ( item ) … … 331 331 #ifndef NOSTREAMIO 332 332 template <class T> 333 void List<T>::print ( ostream& os ) const333 void List<T>::print ( OSTREAM & os ) const 334 334 { 335 335 ListItem<T> *cur = first; … … 510 510 #ifndef NOSTREAMIO 511 511 template <class T> 512 ostream& operator<<( ostream& os, const List<T> & l )512 OSTREAM& operator<<( OSTREAM & os, const List<T> & l ) 513 513 { 514 514 l.print( os );
Note: See TracChangeset
for help on using the changeset viewer.