QCAD
Open Source 2D CAD
Loading...
Searching...
No Matches
RRunner.h
Go to the documentation of this file.
1
20#ifndef RRUNNER_H
21#define RRUNNER_H
22
23#include "core_global.h"
24
25#include <QDebug>
26#include <QMetaType>
27#include <QObject>
28
34class QCADCORE_EXPORT RRunner : public QObject {
35 Q_OBJECT
36
37public slots:
38 void doWork() {
39 int i=0;
40 while(true) {
41 qDebug() << "runner: i: " << i++;
42 }
43 }
44};
45
47
48#endif
Q_DECLARE_METATYPE(RMath *)
int i
Copyright (c) 2011-2018 by Andrew Mustun.
Definition autostart.js:32
Copyright (c) 2011-2018 by Andrew Mustun.
Definition RRunner.h:34
void doWork()
Definition RRunner.h:38
#define QCADCORE_EXPORT
Definition core_global.h:10