Line data Source code
1 : // SPDX-FileCopyrightText: 2022 Paul Colby <git@colby.id.au> 2 : // SPDX-License-Identifier: LGPL-3.0-or-later 3 : 4 : #include "devicecommand.h" 5 : 6 : #include <qtpokit/dataloggerservice.h> 7 : 8 57 : class LoggerStopCommand : public DeviceCommand 9 : { 10 : public: 11 : explicit LoggerStopCommand(QObject * const parent); 12 : 13 : protected: 14 : AbstractPokitService * getService() override; 15 : 16 : protected slots: 17 : void serviceDetailsDiscovered() override; 18 : 19 : private: 20 : DataLoggerService * service; ///< Bluetooth service this command interracts with. 21 : 22 : private slots: 23 : void settingsWritten(); 24 : 25 : friend class TestLoggerStopCommand; 26 : };