Timesheets-Server
Timesheets server
Načítám...
Vyhledávám...
Nebylo nic nalezeno
mythread.h
Zobrazit dokumentaci tohoto souboru.
1
6#ifndef _MyThread_H_
7#define _MyThread_H_
8
9#include <QThread>
10#include <QObject>
11
15class MyThread : QThread {
16 Q_OBJECT
17 public:
18 static void takeObject(QObject *parent, const QString& name, QObject *);
19 private:
20 MyThread(QObject *parent, const QString& name);
21};
22
23#endif
24