square8.cc
Go to the documentation of this file.
00001 /* position8.cc
00002  */
00003 #include "osl/container/square8.h"
00004 
00005 #ifndef MINIMAL
00006 std::ostream& osl::container::operator<<(std::ostream& os, const Square8& v)
00007 {
00008   os << "Square8(";
00009   for (size_t i=0; i<v.size(); ++i)
00010     os << " " << v[i].x() << v[i].y();
00011   return os << ")";
00012 }
00013 #endif
00014 /* ------------------------------------------------------------------------- */
00015 // ;;; Local Variables:
00016 // ;;; mode:c++
00017 // ;;; c-basic-offset:2
00018 // ;;; End:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines