mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 03:22:33 +01:00
Remove never used backend
This commit is contained in:
parent
84325027ac
commit
a7136d97e6
@ -1,16 +0,0 @@
|
||||
#include "backend.h"
|
||||
|
||||
Backend::Backend(QObject *parent) : QObject(parent)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void Backend::getTest()
|
||||
{
|
||||
emit setTest();
|
||||
}
|
||||
|
||||
void Backend::exit()
|
||||
{
|
||||
qDebug() << "EXIOTTT";
|
||||
}
|
@ -1,21 +0,0 @@
|
||||
#ifndef BACKEND_H
|
||||
#define BACKEND_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QDebug>
|
||||
|
||||
class Backend : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit Backend(QObject *parent = nullptr);
|
||||
|
||||
signals:
|
||||
void setTest();
|
||||
|
||||
public slots:
|
||||
void getTest();
|
||||
void exit();
|
||||
};
|
||||
|
||||
#endif // BACKEND_H
|
Loading…
Reference in New Issue
Block a user