13 lines
164 B
C++
13 lines
164 B
C++
#include "transportinterface.h"
|
|
|
|
TransportInterface::TransportInterface(QObject *parent) :
|
|
QObject(parent)
|
|
{
|
|
|
|
}
|
|
|
|
TransportInterface::~TransportInterface()
|
|
{
|
|
|
|
}
|