Page MenuHomec4science

cellulothread.h
No OneTemporary

File Metadata

Created
Wed, Apr 24, 07:40

cellulothread.h

#ifndef CELLULOTHREAD_H
#define CELLULOTHREAD_H
#include <QThread>
#include <QCoreApplication>
#include <QPointer>
class CelluloThread : public QThread
{ Q_OBJECT
private:
QPointer<QCoreApplication> application;
public:
CelluloThread();
void run() override;
};
#endif // CELLULOTHREAD_H

Event Timeline