Line data Source code
1 : // SPDX-FileCopyrightText: 2022-2023 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 72 : class LoggerStopCommand : public DeviceCommand 9 : { 10 54 : Q_OBJECT 11 : 12 : public: 13 : explicit LoggerStopCommand(QObject * const parent); 14 : 15 : protected: 16 : AbstractPokitService * getService() override; 17 : 18 : protected slots: 19 : void serviceDetailsDiscovered() override; 20 : 21 : private: 22 : DataLoggerService * service { nullptr }; ///< Bluetooth service this command interracts with. 23 : 24 : private slots: 25 : void settingsWritten(); 26 : 27 : friend class TestLoggerStopCommand; 28 : };