cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
18 lines
281 B
C++
18 lines
281 B
C++
/*
|
|
* SPDX-FileCopyrightText: 2009 Dario Freddi <drf@kde.org>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "KIdleTest.h"
|
|
#include <QGuiApplication>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
QGuiApplication app(argc, argv);
|
|
|
|
KIdleTest t;
|
|
|
|
return app.exec();
|
|
}
|