99 lines
3.2 KiB
C++
99 lines
3.2 KiB
C++
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* *
|
|
* Copyright (C) 2015 Simon Stuerz <simon.stuerz@guh.guru> *
|
|
* *
|
|
* This file is part of guh. *
|
|
* *
|
|
* Guh 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, version 2 of the License. *
|
|
* *
|
|
* Guh 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 guh. If not, see <http://www.gnu.org/licenses/>. *
|
|
* *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#ifndef UPNPDEVICE_H
|
|
#define UPNPDEVICE_H
|
|
|
|
#include <QObject>
|
|
|
|
#include "upnpdevicedescriptor.h"
|
|
|
|
class UpnpDevice : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit UpnpDevice(QObject *parent = 0, UpnpDeviceDescriptor upnpDeviceDescriptor = UpnpDeviceDescriptor());
|
|
|
|
QUrl location();
|
|
void setLocation(const QUrl &location);
|
|
|
|
QHostAddress hostAddress() const;
|
|
void setHostAddress(const QHostAddress &hostAddress);
|
|
|
|
int port() const;
|
|
void setPort(const int &port);
|
|
|
|
QString deviceType() const;
|
|
void setDeviceType(const QString & deviceType);
|
|
|
|
QString friendlyName() const;
|
|
void setFriendlyName(const QString &friendlyName);
|
|
|
|
QString manufacturer() const;
|
|
void setManufacturer(const QString &manufacturer);
|
|
|
|
QUrl manufacturerURL() const;
|
|
void setManufacturerURL(const QUrl & manufacturerURL);
|
|
|
|
QString modelDescription() const;
|
|
void setModelDescription(const QString & modelDescription);
|
|
|
|
QString modelName() const;
|
|
void setModelName(const QString & modelName);
|
|
|
|
QString modelNumber() const;
|
|
void setModelNumber(const QString &modelNumber);
|
|
|
|
QUrl modelURL() const;
|
|
void setModelURL(const QUrl &modelURL);
|
|
|
|
QString serialNumber() const;
|
|
void setSerialNumber(const QString &serialNumber);
|
|
|
|
QString uuid() const;
|
|
void setUuid(const QString &uuid);
|
|
|
|
QString upc() const;
|
|
void setUpc(const QString &upc);
|
|
|
|
private:
|
|
QUrl m_location;
|
|
QHostAddress m_hostAddress;
|
|
int m_port;
|
|
QString m_deviceType;
|
|
QString m_friendlyName;
|
|
QString m_manufacturer;
|
|
QUrl m_manufacturerURL;
|
|
QString m_modelDescription;
|
|
QString m_modelName;
|
|
QString m_modelNumber;
|
|
QUrl m_modelURL;
|
|
QString m_serialNumber;
|
|
QString m_uuid;
|
|
QString m_upc;
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
};
|
|
|
|
#endif // UPNPDEVICE_H
|