printlist.h
Go to the documentation of this file.00001 #ifndef PRINTLIST_H
00002 #define PRINTLIST_H
00003
00004 #include <list>
00005 using namespace std;
00006
00007 #include <print.h>
00008
00016 template< typename T >
00017 ostream& operator << (ostream& os, list<T> const & x)
00018 { return os << print(x); }
00019
00020 #endif
00021
00022