#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.
{
copy(v.begin(), v.end(), ostream_iterator<char>(os, ""));
return os; // To allow (cout << a) << b;
}
1.7.1