inital commit

This commit is contained in:
2023-01-29 18:45:42 +01:00
commit f91c9f1a6f
19 changed files with 3763 additions and 0 deletions

26
mainobject.h Normal file
View File

@ -0,0 +1,26 @@
#ifndef MAINOBJECT_H
#define MAINOBJECT_H
#include <QObject>
#include <QApplication>
#include "mainwindow.h"
#include "vhfmillthread.h"
class MainObject : public QObject
{
Q_OBJECT
private:
MainWindow* w;
QApplication* app;
VhfMillThread* millThread;
public:
explicit MainObject(QApplication* appI, VhfMillThread* millThreadI, QObject *parent = nullptr);
~MainObject();
public slots:
void activate();
};
#endif // MAINOBJECT_H