ATLAS Offline Software
Loading...
Searching...
No Matches
IOVRange.cxx File Reference
#include "AthenaKernel/IOVRange.h"
#include "GaudiKernel/MsgStream.h"
#include "GaudiKernel/EventIDRange.h"
#include <sstream>
#include <stdexcept>
#include <iostream>
Include dependency graph for IOVRange.cxx:

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &os, const IOVRange &rhs)
MsgStream & operator<< (MsgStream &msg, const IOVRange &rhs)

Function Documentation

◆ operator<<() [1/2]

MsgStream & operator<< ( MsgStream & msg,
const IOVRange & rhs )

Definition at line 47 of file IOVRange.cxx.

47 {
48 msg << (std::string) rhs;
49 return msg;
50}
MsgStream & msg
Definition testRead.cxx:32

◆ operator<<() [2/2]

std::ostream & operator<< ( std::ostream & os,
const IOVRange & rhs )

Definition at line 42 of file IOVRange.cxx.

42 {
43 os << (std::string) rhs;
44 return os;
45}