AusweisApp2/src/remote_device/DataChannel.cpp

27 lines
310 B
C++
Raw Normal View History

2017-12-20 14:54:05 +01:00
/*!
2018-03-28 15:10:51 +02:00
* \copyright Copyright (c) 2017-2018 Governikus GmbH & Co. KG, Germany
2017-12-20 14:54:05 +01:00
*/
#include "DataChannel.h"
using namespace governikus;
DataChannel::DataChannel()
{
}
DataChannel::~DataChannel()
{
}
const QString& DataChannel::getId() const
{
static const QString EMPTY_STRING;
return EMPTY_STRING;
}