Changeset 175e355 in git for factory/templates/ftmpl_array.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_array.h
rc753a61 r175e355 1 1 // emacs edit mode for this file is -*- C++ -*- 2 // $Id: ftmpl_array.h,v 1. 1 1996-07-16 12:24:57 stobbeExp $2 // $Id: ftmpl_array.h,v 1.2 1997-03-27 10:29:30 schmidt Exp $ 3 3 4 4 #ifndef INCL_ARRAY_H … … 7 7 /* 8 8 $Log: not supported by cvs2svn $ 9 Revision 1.1 1996/07/16 12:24:57 stobbe 10 "operators += and *= deleted sincethey are not needed in an general 11 array class als well as the functions sum, prod, crossprod. 12 " 13 9 14 Revision 1.0 1996/05/17 11:06:32 stobbe 10 15 Initial revision … … 12 17 */ 13 18 19 #ifndef NOSTREAMIO 14 20 #include <iostream.h> 21 #endif /* NOSTREAMIO */ 15 22 16 23 template <class T> … … 32 39 int min() const; 33 40 int max() const; 41 #ifndef NOSTREAMIO 34 42 void print ( ostream& ) const; 43 #endif /* NOSTREAMIO */ 35 44 }; 36 45 46 #ifndef NOSTREAMIO 37 47 template <class T> 38 48 ostream& operator<< ( ostream & os, const Array<T> & a ); 49 #endif /* NOSTREAMIO */ 39 50 40 51 #endif /* INCL_ARRAY_H */
Note: See TracChangeset
for help on using the changeset viewer.