MythTV master
mythscreensaverandroid.h
Go to the documentation of this file.
1#ifndef MYTH_SCREENSAVER_ANDROID_H
2#define MYTH_SCREENSAVER_ANDROID_H
3
4// Qt
5#include <QObject>
6
7// MythTV
8#include "mythscreensaver.h"
9
11{
12 Q_OBJECT
13
14 public:
15 explicit MythScreenSaverAndroid(QObject* Parent);
16 ~MythScreenSaverAndroid() override;
17
18 public slots:
19 void Disable() override;
20 void Restore() override;
21 void Reset() override;
22 bool Asleep() override;
23};
24
25#endif
26
MythScreenSaverAndroid(QObject *Parent)
Base Class for screensavers.