tripleInt.cc
Go to the documentation of this file.
00001 /* tripleInt.cc
00002  */
00003 #include "osl/container/tripleInt.h"
00004 #include <iostream>
00005 
00006 #ifndef MINIMAL
00007 std::ostream& osl::container::operator<<(std::ostream& os,TripleInt const& ti)
00008 {
00009   return os << "[" << ti[0] << "," << ti[1] << "," << ti[2] << "]";
00010 }
00011 #endif
00012 
00013 
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines