/////////////////////////////////////////////////////////////////////////////////// // Copyright (C) 2018 Edouard Griffiths, F4EXB // // // // This program is free software; you can redistribute it and/or modify // // it under the terms of the GNU General Public License as published by // // the Free Software Foundation as version 3 of the License, or // // // // This program is distributed in the hope that it will be useful, // // but WITHOUT ANY WARRANTY; without even the implied warranty of // // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // // GNU General Public License V3 for more details. // // // // You should have received a copy of the GNU General Public License // // along with this program. If not, see . // /////////////////////////////////////////////////////////////////////////////////// #ifndef DEVICES_PERSEUS_DEVICEPERSEUSSCAN_H_ #define DEVICES_PERSEUS_DEVICEPERSEUSSCAN_H_ #include #include #include #include #include #include "export.h" class DEVICES_API DevicePerseusScan { public: struct DeviceScan { std::string m_serial; uint16_t m_serialNumber; int m_sequence; }; void scan(int nbDevices); int getNbActiveDevices() const { return m_scans.size(); } const std::string* getSerialAt(unsigned int index) const; uint16_t getSerialNumberAt(unsigned int index) const ; int getSequenceAt(unsigned int index) const ; int getSequenceFromSerial(const std::string& serial) const; void getSerials(std::vector& serials) const; private: std::vector m_scans; std::map m_serialMap; }; #endif /* DEVICES_PERSEUS_DEVICEPERSEUSSCAN_H_ */