foobar2000 SDK  2015-01-14
Public Member Functions
pfc::format_guid_cpp

#include <guid.h>

+ Inheritance diagram for pfc::format_guid_cpp:

Public Member Functions

 format_guid_cpp (const GUID &guid)
 

Detailed Description

Definition at line 35 of file guid.h.

Constructor & Destructor Documentation

pfc::format_guid_cpp::format_guid_cpp ( const GUID guid)
inline

Definition at line 37 of file guid.h.

37  {
38  *this << "{0x" << pfc::format_hex(guid.Data1,8) << ", 0x" << pfc::format_hex(guid.Data2, 4) << ", 0x" << pfc::format_hex(guid.Data3,4) << ", {0x" << pfc::format_hex(guid.Data4[0],2);
39  for(int n = 1; n < 8; ++n) {
40  *this << ", 0x" << pfc::format_hex(guid.Data4[n],2);
41  }
42  *this << "}}";
43  }
uint8_t Data4[8]
Definition: pfc.h:57
uint16_t Data3
Definition: pfc.h:56
uint16_t Data2
Definition: pfc.h:55
uint32_t Data1
Definition: pfc.h:54

The documentation for this class was generated from the following file: