ATLAS Offline Software
Loading...
Searching...
No Matches
Identifier.cxx File Reference
#include "Identifier/Identifier.h"
#include "GaudiKernel/MsgStream.h"
#include <charconv>
#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 39 of file Identifier.cxx.

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

◆ operator<<() [2/2]

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

Definition at line 45 of file Identifier.cxx.

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