mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 19:02:51 +00:00
23 lines
290 B
C++
23 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
|