File: keyboard.h

package info (click to toggle)
wfview 2.11-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,256 kB
  • sloc: cpp: 43,386; ansic: 3,196; sh: 32; xml: 29; makefile: 11
file content (11 lines) | stat: -rw-r--r-- 181 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#include <QCoreApplication>
#include <QObject>
#include <QThread>
class keyboard : public QThread
{
    Q_OBJECT
public:
    keyboard(void);
    ~keyboard(void);
    void run();
};