ATLAS Offline Software
Loading...
Searching...
No Matches
Guid.cxx File Reference
#include "PersistentDataModel/Guid.h"
#include <iostream>
#include <cstdio>
#include "uuid/uuid.h"
Include dependency graph for Guid.cxx:

Go to the source code of this file.

Functions

static constexpr Guid clid_null ("00000000-0000-0000-0000-000000000000")
std::ostream & operator<< (std::ostream &os, const Guid &rhs)

Function Documentation

◆ clid_null()

constexpr Guid clid_null ( "00000000-0000-0000-0000-000000000000" )
staticconstexpr

◆ operator<<()

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

Definition at line 106 of file Guid.cxx.

106 {
107 auto buff = rhs.to_fixed_string();
108 os.write(buff.data(), buff.size());
109 return os;
110}
constexpr Guid::string to_fixed_string(bool uppercase=true) const
Definition Guid.h:70