mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
29 lines
364 B
C++
29 lines
364 B
C++
|
#include "qqtlanprotocol.h"
|
||
|
|
||
|
QQTLanProtocol::QQTLanProtocol(QObject *parent) :
|
||
|
QQTProtocol(parent)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
quint16 QQTLanProtocol::minlength()
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
quint16 QQTLanProtocol::maxlength()
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
quint16 QQTLanProtocol::splitter(const QByteArray &s)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
bool QQTLanProtocol::dispatcher(const QByteArray &m)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|