26#ifndef INCLUDE_OLA_STRINGS_FORMAT_H_
27#define INCLUDE_OLA_STRINGS_FORMAT_H_
46std::string IntToString(
int i);
53std::string IntToString(
unsigned int i);
69 return _ToHex<T>(v, (std::numeric_limits<T>::digits / HEX_BIT_WIDTH), prefix);
77 std::ios::fmtflags flags(out.flags());
83 out << std::setw(i.width) << std::hex << std::setfill(
'0')
84 << ola::strings::_HexCast(i.value);
101void FormatData(std::ostream *out,
104 unsigned int indent = 0,
105 unsigned int byte_per_line = 8);
The namespace containing all OLA symbols.
Definition Credentials.cpp:44
Definition FormatPrivate.h:46