#include
#include
#include
class MyThread : public QThread {
public:
void run(){ std::cout << "HELLO !!!!" << std::endl; }
};
class MyBase1 {
MyThread mt;
public:
MyBase1() {
mt.start();
}
};
int main(int argc, char *argv[]) {
QCoreApplication a(argc, argv);
MyBase1 mybase;
return a.exec();
}
link
link
Комментариев нет:
Отправить комментарий