#ifndef PRINTLIST_H
#define PRINTLIST_H

#include <list>
using namespace std;

#include <print.h>

/**
Print a list. eg
\verbatim
  list<double> x; ...
  cout << x << endl;
\endverbatim
*/
template< typename T >
ostream& operator << (ostream& os, list<T> const & x)
  { return os << print(x); }

#endif



