MCPcopy Create free account
hub / github.com/LAStools/LAStools / get_GUID

Function get_GUID

LASlib/inc/lasdefinitions.hpp:1105–1112  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1103 // getter functions
1104
1105 std::string get_GUID() {
1106 char guid_buffer[256];
1107 snprintf(
1108 guid_buffer, sizeof(guid_buffer), "%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X", project_ID_GUID_data_1, project_ID_GUID_data_2,
1109 project_ID_GUID_data_3, project_ID_GUID_data_4[0], project_ID_GUID_data_4[1], project_ID_GUID_data_4[2], project_ID_GUID_data_4[3],
1110 project_ID_GUID_data_4[4], project_ID_GUID_data_4[5], project_ID_GUID_data_4[6], project_ID_GUID_data_4[7]);
1111 return std::string(guid_buffer);
1112 }
1113
1114 std::string get_version() {
1115 char version_buffer[16];

Callers

nothing calls this directly

Calls 1

stringFunction · 0.85

Tested by

no test coverage detected