#pragma once #include #include #include "DeviceChannelTypeInfo.h" namespace Incart::Usb { /* Ecg, Reo, ... - channels Ecg0, Ecg1, ... - signals */ class AdcChannelSettings : public QObject { Q_OBJECT protected: DevicesInfo::DeviceChannelTypeInfo m_channelTypeInfo; public: AdcChannelSettings(const DevicesInfo::DeviceChannelTypeInfo& channelTypeInfo_, QObject* parent_ = nullptr) : QObject(parent_) , m_channelTypeInfo(channelTypeInfo_) { } public: DevicesInfo::DeviceChannelTypeInfo getChannelType() { return m_channelTypeInfo; } void restart() { } }; } // namespace Incart::Usb