OverSim
BinaryValue.cc File Reference
#include <iterator>
#include <cnetcommbuffer.h>
#include "BinaryValue.h"

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &os, const BinaryValue &v)

Detailed Description

Author
Ingmar Baumgart

Definition in file BinaryValue.cc.

Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const BinaryValue v 
)

Definition at line 76 of file BinaryValue.cc.

{
copy(v.begin(), v.end(), ostream_iterator<char>(os, ""));
return os; // To allow (cout << a) << b;
}