Functions

BinaryValue.cc File Reference

#include <iterator>
#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 67 of file BinaryValue.cc.

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