#include <iterator>#include "BinaryValue.h"Go to the source code of this file.
Functions | |
| std::ostream & | operator<< (std::ostream &os, const BinaryValue &v) |
Definition in file BinaryValue.cc.
| std::ostream& operator<< | ( | std::ostream & | os, | |
| const BinaryValue & | v | |||
| ) |
Definition at line 67 of file BinaryValue.cc.
00067 { 00068 copy(v.begin(), v.end(), ostream_iterator<char>(os, "")); 00069 return os; // To allow (cout << a) << b; 00070 }
1.5.8