cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
26 lines
393 B
C++
26 lines
393 B
C++
/*
|
|
* SPDX-FileCopyrightText: 2009 Dario Freddi <drf@kde.org>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef KIDLETEST_H
|
|
#define KIDLETEST_H
|
|
|
|
#include <QObject>
|
|
|
|
class KIdleTest : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
KIdleTest();
|
|
~KIdleTest() override;
|
|
|
|
public Q_SLOTS:
|
|
void timeoutReached(int id, int timeout);
|
|
void resumeEvent();
|
|
};
|
|
|
|
#endif /* KIDLETEST_H */
|