|
|
|
@@ -342,6 +342,13 @@ struct PhysicalTopologySource::Internal |
|
|
|
//==============================================================================
|
|
|
|
struct DeviceInfo
|
|
|
|
{
|
|
|
|
// VS2015 requires a constructor to avoid aggregate initialization
|
|
|
|
DeviceInfo (Block::UID buid, BlocksProtocol::TopologyIndex tidx, BlocksProtocol::BlockSerialNumber s,
|
|
|
|
BlocksProtocol::VersionNumber v, BlocksProtocol::BlockName n, bool master = false)
|
|
|
|
: uid (buid), index (tidx), serial (s), version (v), name (n), isMaster (master)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Block::UID uid {};
|
|
|
|
BlocksProtocol::TopologyIndex index;
|
|
|
|
BlocksProtocol::BlockSerialNumber serial;
|
|
|
|
|