nymea-remoteproxy/libnymea-remoteproxy/transportinterface.cpp

22 lines
269 B
C++

#include "transportinterface.h"
namespace remoteproxy {
TransportInterface::TransportInterface(QObject *parent) :
QObject(parent)
{
}
QString TransportInterface::serverName() const
{
return m_serverName;
}
TransportInterface::~TransportInterface()
{
}
}