#pragma once #include "DeviceChannelTypeInfo.h" #include "FrameDecoder.h" namespace Incart::Usb { struct AdcViewerChannel { DevicesInfo::DeviceChannelTypeInfo id; std::string name; uint32_t blockSize = 0; uint32_t pointCounter = 0; uint8_t signalCount = 0; std::shared_ptr frameDecoder; std::vector data; }; } // namespace Incart::Usb