repo.or.cz
/
personal-kdebase.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add more spacing
[personal-kdebase.git]
/
workspace
/
khotkeys
/
test
/
kdedmodule_daemon_test.h
blob
d85e53141b5d3809c6b988cc0523dcb03b70e9b0
1
#ifndef LIBKHOTKEYS_TEST_H
2
#define LIBKHOTKEYS_TEST_H
3
4
#include <QtCore/QObject>
5
6
class
Test
:
public
QObject
7
{
8
Q_OBJECT
9
10
private
Q_SLOTS
:
11
12
void
initTestCase
();
13
void
cleanupTestCase
();
14
15
void
testLoading
();
16
17
private
:
18
19
bool
daemonActive
;
20
21
};
// class Test
22
23
#endif