#include "I3SubIdentifier.h"
Go to the source code of this file.
Functions | |
std::ostream & | operator<< (std::ostream &os, const I3SubIdentifier &s) |
Definition in file I3SubIdentifier.cc.
std::ostream& operator<< | ( | std::ostream & | os, | |
const I3SubIdentifier & | s | |||
) |
Definition at line 90 of file I3SubIdentifier.cc.
{ if (s.type == I3SubIdentifier::Identifier) { os << s.identifier; } else { os << s.ipAddress; } return os; }