struct ov::device::UUID

Overview

Structure which defines format of UUID. More…

#include <properties.hpp>

struct UUID
{
    // fields

    static const uint64_t MAX_UUID_SIZE = 16;
    std::array<uint8_t, MAX_UUID_SIZE> uuid;
};

Detailed Documentation

Structure which defines format of UUID.

Fields

static const uint64_t MAX_UUID_SIZE = 16

Max size of uuid array (128 bits)

std::array<uint8_t, MAX_UUID_SIZE> uuid

Array with uuid for a device.