drop unused files

This commit is contained in:
Michael Zanetti 2019-01-03 01:23:10 +01:00
parent 87e2617cf8
commit 93fd1d9a64
3 changed files with 0 additions and 29 deletions

View File

@ -6,8 +6,6 @@ TARGET = $$qtLibraryTarget(nymea_devicepluginanel)
SOURCES += \
devicepluginanel.cpp \
anelpanel.cpp
HEADERS += \
devicepluginanel.h \
anelpanel.h

View File

@ -1,6 +0,0 @@
#include "anelpanel.h"
AnelPanel::AnelPanel(const QHostAddress &hostAddress, QObject *parent) : QObject(parent)
{
Q_UNUSED(hostAddress)
}

View File

@ -1,21 +0,0 @@
#ifndef ANELPANEL_H
#define ANELPANEL_H
#include <QObject>
#include <QHostAddress>
#include <QUdpSocket>
class AnelPanel : public QObject
{
Q_OBJECT
public:
explicit AnelPanel(const QHostAddress &hostAddress, QObject *parent = nullptr);
signals:
public slots:
// QUdpSocket *m_receiveSocket = nullptr;
// QUdpSocket *m_
};
#endif // ANELPANEL_H