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 : class DeviceInfoService; 7 : 8 300 : class InfoCommand : public DeviceCommand 9 : { 10 : public: 11 : explicit InfoCommand(QObject * const parent); 12 : 13 : QStringList requiredOptions(const QCommandLineParser &parser) const override; 14 : QStringList supportedOptions(const QCommandLineParser &parser) const override; 15 : 16 : public slots: 17 : QStringList processOptions(const QCommandLineParser &parser) override; 18 : 19 : protected: 20 : AbstractPokitService * getService() override; 21 : 22 : protected slots: 23 : void serviceDetailsDiscovered() override; 24 : 25 : private: 26 : DeviceInfoService * service; ///< Bluetooth service this command interracts with. 27 : 28 : friend class TestInfoCommand; 29 : };