#include <Guid.h>
Public Member Functions | |
void | fromTime () |
std::string | toString () const |
Static Public Member Functions | |
static std::string | null () |
Public Attributes | |
unsigned int | Data1 |
unsigned short | Data2 |
unsigned short | Data3 |
unsigned char | Data4 [8] |
void ora::Guid::fromTime | ( | ) |
Definition at line 15 of file Guid.cc.
Referenced by ora::guidFromTime().
std::string ora::Guid::null | ( | ) | [static] |
Definition at line 11 of file Guid.cc.
References guid_null.
Referenced by cond::writeTokenContainerFragment().
{ return guid_null; }
std::string ora::Guid::toString | ( | ) | const |
Definition at line 27 of file Guid.cc.
References fmt_Guid, GUID_STRING_SIZE, and runonSM::text.
Referenced by ora::guidFromTime(), and cond::writeTokenContainerFragment().
{ char text[GUID_STRING_SIZE]; ::snprintf(text, GUID_STRING_SIZE, fmt_Guid, Data1, Data2, Data3, Data4[0], Data4[1], Data4[2], Data4[3], Data4[4], Data4[5], Data4[6], Data4[7]); return text; }
unsigned int ora::Guid::Data1 |
unsigned short ora::Guid::Data2 |
unsigned short ora::Guid::Data3 |
unsigned char ora::Guid::Data4[8] |