Functions

I3SubIdentifier.cc File Reference

#include "I3SubIdentifier.h"

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &os, const I3SubIdentifier &s)

Detailed Description

Author:
Antonio Zea
Antonio Zea

Definition in file I3SubIdentifier.cc.


Function Documentation

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;
}