ATLAS Offline Software
Loading...
Searching...
No Matches
IdDictFieldImplementation.h File Reference
#include "Identifier/Identifier.h"
#include "Identifier/Range.h"
#include <iosfwd>
Include dependency graph for IdDictFieldImplementation.h:

Go to the source code of this file.

Classes

class  IdDictFieldImplementation
 IdDictFieldImplementation is used to capture the specification of a single field of an Identifier. More...

Functions

std::ostream & operator<< (std::ostream &os, const IdDictFieldImplementation &)
 stream insertion operator uses show_to_string
MsgStream & operator<< (MsgStream &ms, const IdDictFieldImplementation &)
 MsgStream insertion operator uses show_to_string.

Function Documentation

◆ operator<<() [1/2]

MsgStream & operator<< ( MsgStream & ms,
const IdDictFieldImplementation & idfi )

MsgStream insertion operator uses show_to_string.

Definition at line 72 of file IdDictFieldImplementation.cxx.

72 {
73 ms<<idfi.show_to_string();
74 return ms;
75}
std::string show_to_string(void) const

◆ operator<<() [2/2]

std::ostream & operator<< ( std::ostream & os,
const IdDictFieldImplementation & idfi )

stream insertion operator uses show_to_string

Definition at line 66 of file IdDictFieldImplementation.cxx.

66 {
67 os<<idfi.show_to_string();
68 return os;
69}