diff options
| author | Daniel Teichmann <daniel.teichmann@das-netzwerkteam.de> | 2021-08-10 14:56:44 +0200 |
|---|---|---|
| committer | Daniel Teichmann <daniel.teichmann@das-netzwerkteam.de> | 2021-08-10 14:56:44 +0200 |
| commit | 6ae4c71032e6b15dedd631dfff0c0c4cc4a8522a (patch) | |
| tree | cd2c53b90bb13375df387414e99e6d8e7509e2a9 /src/RWAHost.h | |
| parent | afeb0381f568b4c9f51296cd5de325c8c8aac3f2 (diff) | |
| download | RWA.Support.DesktopApp-6ae4c71032e6b15dedd631dfff0c0c4cc4a8522a.tar.gz RWA.Support.DesktopApp-6ae4c71032e6b15dedd631dfff0c0c4cc4a8522a.tar.bz2 RWA.Support.DesktopApp-6ae4c71032e6b15dedd631dfff0c0c4cc4a8522a.zip | |
Complete restructure of current code tree
Diffstat (limited to 'src/RWAHost.h')
| -rw-r--r-- | src/RWAHost.h | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/src/RWAHost.h b/src/RWAHost.h deleted file mode 100644 index cd3b1ce..0000000 --- a/src/RWAHost.h +++ /dev/null @@ -1,63 +0,0 @@ -/* - * This file is part of Remote Support Desktop - * https://gitlab.das-netzwerkteam.de/RemoteWebApp/rwa.support.desktopapp - * Copyright 2021 Daniel Teichmann <daniel.teichmann@das-netzwerkteam.de> - * SPDX-License-Identifier: GPL-2.0-or-later - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the - * Free Software Foundation, Inc., - * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <https://www.gnu.org/licenses/>. - */ - -#ifndef RWAHOST_H -#define RWAHOST_H - -#include <QObject> -#include <QQuickItem> - -class RWAHost : public QObject { - Q_OBJECT - Q_PROPERTY(QString uuid READ uuid WRITE setUuid NOTIFY uuidChanged) - Q_PROPERTY(QString alias READ alias WRITE setAlias NOTIFY aliasChanged) - Q_PROPERTY(QString url READ url WRITE setUrl NOTIFY urlChanged) - -public: - RWAHost(QString uuid = "", QString alias = "", QString url = ""); - RWAHost(const RWAHost&); - -private: - QString _uuid; - QString _alias; - QString _url; - -signals: - void uuidChanged(QString uuid); - void aliasChanged(QString alias); - void urlChanged(QString url); - -public slots: - QString uuid() const; - QString alias() const; - QString url() const; - - void setUuid(const QString &uuid); - void setAlias(const QString &alias); - void setUrl(const QString &url); - -}; - -#endif // RWAHOST_H |
