Files Classes Functions Hierarchy
00001 #ifndef PRINTVECTOR_H 00002 #define PRINTVECTOR_H 00003 00004 #include <set> 00005 using namespace std; 00006 00007 #include <print.h> 00008 00009 template< typename T > 00010 ostream& operator << (ostream& os, set<T> const & x) 00011 { return os << print(x); } 00012 00013 00014 #endif 00015 00016
1.5.8