Line data Source code
1 : // SPDX-FileCopyrightText: 2022-2024 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 152 : class LoggerStopCommand : public DeviceCommand
9 : {
10 114 : Q_OBJECT
11 :
12 : public:
13 : explicit LoggerStopCommand(QObject * const parent = nullptr);
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 : };
|