Changeset 175e355 in git for factory/templates/ftmpl_list.h
- Timestamp:
- Mar 27, 1997, 11:34:15 AM (27 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 0baf2b4c3c82b88815031875a2916752118686ce
- Parents:
- c753a61729d105f8177ee2020e311975f0355650
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/templates/ftmpl_list.h
rc753a61 r175e355 1 1 // emacs edit mode for this file is -*- C++ -*- 2 // $Id: ftmpl_list.h,v 1. 0 1996-05-17 11:06:32 stobbeExp $2 // $Id: ftmpl_list.h,v 1.1 1997-03-27 10:32:32 schmidt Exp $ 3 3 4 4 #ifndef INCL_LIST_H … … 7 7 /* 8 8 $Log: not supported by cvs2svn $ 9 Revision 1.0 1996/05/17 11:06:32 stobbe 10 Initial revision 11 9 12 */ 10 13 14 #ifndef NOSTREAMIO 11 15 #include <iostream.h> 16 #endif /* NOSTREAMIO */ 12 17 13 18 … … 28 33 ListItem<T>* getPrev(); 29 34 T& getItem(); 35 #ifndef NOSTREAMIO 30 36 void print ( ostream& ); 37 #endif /* NOSTREAMIO */ 31 38 friend class ListIterator<T>; 32 39 friend class List<T>; … … 57 64 void removeLast(); 58 65 void sort ( int (*) ( const T&, const T& ) ); 66 #ifndef NOSTREAMIO 59 67 void print ( ostream & ) const; 68 #endif /* NOSTREAMIO */ 60 69 friend class ListIterator<T>; 61 70 }; 62 71 72 #ifndef NOSTREAMIO 63 73 template <class T> 64 74 ostream& operator<<( ostream & os, const List<T> & l ); 75 #endif /* NOSTREAMIO */ 65 76 66 77 template <class T>
Note: See TracChangeset
for help on using the changeset viewer.