#include "I3SubIdentifier.h"
Functions | |
std::ostream & | operator<< (std::ostream &os, const I3SubIdentifier &s) |
std::ostream& operator<< | ( | std::ostream & | os, | |
const I3SubIdentifier & | s | |||
) |
00084 { 00085 if (s.type == I3SubIdentifier::Identifier) { 00086 os << s.identifier; 00087 } else { 00088 os << s.ipAddress; 00089 } 00090 return os; 00091 }