mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 10:52:51 +00:00
24 lines
290 B
C
24 lines
290 B
C
![]() |
#ifndef LIBKHOTKEYS_TEST_H
|
||
|
#define LIBKHOTKEYS_TEST_H
|
||
|
|
||
|
#include <QtCore/QObject>
|
||
|
|
||
|
class Test : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
private Q_SLOTS:
|
||
|
|
||
|
void initTestCase();
|
||
|
void cleanupTestCase();
|
||
|
|
||
|
void testLoading();
|
||
|
|
||
|
private:
|
||
|
|
||
|
bool daemonActive;
|
||
|
|
||
|
}; // class Test
|
||
|
|
||
|
#endif
|