ATLAS Offline Software
Loading...
Searching...
No Matches
Identifier.cxx File Reference
#include "Identifier/Identifier.h"
#include "GaudiKernel/MsgStream.h"
#include <charconv>
#include <iostream>
#include <format>
Include dependency graph for Identifier.cxx:

Go to the source code of this file.

Functions

MsgStream & operator<< (MsgStream &f, const Identifier &id)
std::ostream & operator<< (std::ostream &os, const Identifier &id)

Function Documentation

◆ operator<<() [1/2]

MsgStream & operator<< ( MsgStream & f,
const Identifier & id )

Definition at line 40 of file Identifier.cxx.

41 {
42 f << id.getString();
43 return f;
44}

◆ operator<<() [2/2]

std::ostream & operator<< ( std::ostream & os,
const Identifier & id )

Definition at line 46 of file Identifier.cxx.

47 {
48 os << id.getString();
49 return os;
50}