1
0
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:
kelteseth 2017-07-06 17:51:58 +02:00
parent 84325027ac
commit a7136d97e6
2 changed files with 0 additions and 37 deletions

View File

@ -1,16 +0,0 @@
#include "backend.h"
Backend::Backend(QObject *parent) : QObject(parent)
{
}
void Backend::getTest()
{
emit setTest();
}
void Backend::exit()
{
qDebug() << "EXIOTTT";
}

View File

@ -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