41 lines
533 B
C++
41 lines
533 B
C++
//
|
|
// Copyright (c) 2013-2024 The SRS Authors
|
|
//
|
|
// SPDX-License-Identifier: MIT or MulanPSL-2.0
|
|
//
|
|
|
|
#include <srs_protocol_io.hpp>
|
|
|
|
ISrsProtocolStatistic::ISrsProtocolStatistic()
|
|
{
|
|
}
|
|
|
|
ISrsProtocolStatistic::~ISrsProtocolStatistic()
|
|
{
|
|
}
|
|
|
|
ISrsProtocolReader::ISrsProtocolReader()
|
|
{
|
|
}
|
|
|
|
ISrsProtocolReader::~ISrsProtocolReader()
|
|
{
|
|
}
|
|
|
|
ISrsProtocolWriter::ISrsProtocolWriter()
|
|
{
|
|
}
|
|
|
|
ISrsProtocolWriter::~ISrsProtocolWriter()
|
|
{
|
|
}
|
|
|
|
ISrsProtocolReadWriter::ISrsProtocolReadWriter()
|
|
{
|
|
}
|
|
|
|
ISrsProtocolReadWriter::~ISrsProtocolReadWriter()
|
|
{
|
|
}
|
|
|