~ubuntu-branches/ubuntu/utopic/kde-workspace/utopic-proposed

« back to all changes in this revision

Viewing changes to khotkeys/test/kdedmodule_daemon_test.h

  • Committer: Bazaar Package Importer
  • Author(s): Michał Zając
  • Date: 2011-07-09 08:31:15 UTC
  • Revision ID: james.westby@ubuntu.com-20110709083115-ohyxn6z93mily9fc
Tags: upstream-4.6.90
Import upstream version 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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