You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lxqt-powermanagement-packaging/src/watcher.h

26 lines
299 B

#ifndef WATCHER_H
#define WATCHER_H
#include <QObject>
#include <LXQt/Power>
class Watcher : public QObject
{
Q_OBJECT
public:
Watcher(QObject *parent = 0);
virtual ~Watcher();
protected:
void doAction(int action);
private:
LxQt::Power mPower;
};
#endif /* WATCHER_H */