tuned-switcher 1.1.0
Performance profile manager
Loading...
Searching...
No Matches
dummyservice.h
Go to the documentation of this file.
1
7#ifndef DUMMYSERVICE_H
8#define DUMMYSERVICE_H
9
15#include <QObject>
16
18
24{
25 Q_OBJECT
26public:
31 explicit DummyService(QObject* parent = nullptr);
32
36 ~DummyService() override = default;
37
44 bool IsSupported() const override;
45
52 bool IsRunning() const override;
53
60 bool Start() const override;
61
68 bool Stop() const override;
69};
70
71#endif // DUMMYSERVICE_H
Definition dummyservice.h:24
bool Stop() const override
Definition dummyservice.cpp:39
DummyService(QObject *parent=nullptr)
Definition dummyservice.cpp:18
bool IsSupported() const override
Definition dummyservice.cpp:22
bool Start() const override
Definition dummyservice.cpp:33
bool IsRunning() const override
Definition dummyservice.cpp:27
~DummyService() override=default
Definition servicemanager.h:21