Changeset 22347b6 in git
- Timestamp:
- Jan 13, 2005, 4:10:23 PM (19 years ago)
- Branches:
- (u'spielwiese', 'd1b01e9d51ade4b46b745d3bada5c5f3696be3a8')
- Children:
- ed97c1a4f90e91f9dd72603636d0dc0dc3b843c8
- Parents:
- ba8f1aa4ead23e4ad82810c6d3b4f3e0749a7921
- Location:
- factory
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/int_poly.cc
rba8f1a r22347b6 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: int_poly.cc,v 1.1 5 2003-06-20 10:00:33Singular Exp $ */2 /* $Id: int_poly.cc,v 1.16 2005-01-13 15:10:22 Singular Exp $ */ 3 3 4 4 #include <config.h> … … 9 9 #include <strstrea.h> 10 10 #else 11 #if __GNUC__ < 3 11 12 #include <strstream.h> 13 #else 14 #include <strstream> 15 using namespace std; 16 #endif 12 17 #endif 13 18 #endif /* NOSTREAMIO */ -
factory/templates/ftmpl_list.h
rba8f1a r22347b6 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: ftmpl_list.h,v 1. 7 2001-06-18 11:33:14Singular Exp $ */2 /* $Id: ftmpl_list.h,v 1.8 2005-01-13 15:10:23 Singular Exp $ */ 3 3 4 4 #ifndef INCL_LIST_H … … 16 16 template <class T> 17 17 class List; 18 19 #ifndef NOSTREAMIO 20 template <class T> 21 std::ostream& operator<< ( std::ostream &, const List<T> &); 22 #endif 18 23 19 24 template <class T> … … 66 71 #ifndef NOSTREAMIO 67 72 void print ( ostream & ) const; 68 friend ostream& operator<< < >( ostream & os, const List<T> & l );73 friend ostream& operator<< <T>( ostream & os, const List<T> & l ); 69 74 #endif /* NOSTREAMIO */ 70 75 friend class ListIterator<T>; -
factory/templates/ftmpl_matrix.h
rba8f1a r22347b6 1 1 /* emacs edit mode for this file is -*- C++ -*- */ 2 /* $Id: ftmpl_matrix.h,v 1. 8 2001-06-27 13:20:40Singular Exp $ */2 /* $Id: ftmpl_matrix.h,v 1.9 2005-01-13 15:10:23 Singular Exp $ */ 3 3 4 4 #ifndef INCL_MATRIX_H … … 13 13 template <class T> 14 14 class SubMatrix; 15 16 template <class T> 17 class Matrix; 18 19 #ifndef NOSTREAMIO 20 template <class T> 21 std::ostream& operator<< (std::ostream &, const Matrix<T> &); 22 #endif 15 23 16 24 template <class T>
Note: See TracChangeset
for help on using the changeset viewer.