All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
square8.cc
Go to the documentation of this file.
1 /* position8.cc
2  */
4 
5 #ifndef MINIMAL
6 std::ostream& osl::container::operator<<(std::ostream& os, const Square8& v)
7 {
8  os << "Square8(";
9  for (size_t i=0; i<v.size(); ++i)
10  os << " " << v[i].x() << v[i].y();
11  return os << ")";
12 }
13 #endif
14 /* ------------------------------------------------------------------------- */
15 // ;;; Local Variables:
16 // ;;; mode:c++
17 // ;;; c-basic-offset:2
18 // ;;; End: