From 93fd1d9a6427fa793242f16662beefd8a3bcfed5 Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Thu, 3 Jan 2019 01:23:10 +0100 Subject: [PATCH] drop unused files --- anel/anel.pro | 2 -- anel/anelpanel.cpp | 6 ------ anel/anelpanel.h | 21 --------------------- 3 files changed, 29 deletions(-) delete mode 100644 anel/anelpanel.cpp delete mode 100644 anel/anelpanel.h diff --git a/anel/anel.pro b/anel/anel.pro index b093506e..1dbe870c 100644 --- a/anel/anel.pro +++ b/anel/anel.pro @@ -6,8 +6,6 @@ TARGET = $$qtLibraryTarget(nymea_devicepluginanel) SOURCES += \ devicepluginanel.cpp \ - anelpanel.cpp HEADERS += \ devicepluginanel.h \ - anelpanel.h diff --git a/anel/anelpanel.cpp b/anel/anelpanel.cpp deleted file mode 100644 index 4ba81090..00000000 --- a/anel/anelpanel.cpp +++ /dev/null @@ -1,6 +0,0 @@ -#include "anelpanel.h" - -AnelPanel::AnelPanel(const QHostAddress &hostAddress, QObject *parent) : QObject(parent) -{ - Q_UNUSED(hostAddress) -} diff --git a/anel/anelpanel.h b/anel/anelpanel.h deleted file mode 100644 index 373595e9..00000000 --- a/anel/anelpanel.h +++ /dev/null @@ -1,21 +0,0 @@ -#ifndef ANELPANEL_H -#define ANELPANEL_H - -#include -#include -#include - -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