All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
tripleInt.cc
Go to the documentation of this file.
1 /* tripleInt.cc
2  */
4 #include <iostream>
5 
6 #ifndef MINIMAL
7 std::ostream& osl::container::operator<<(std::ostream& os,TripleInt const& ti)
8 {
9  return os << "[" << ti[0] << "," << ti[1] << "," << ti[2] << "]";
10 }
11 #endif
12 
13