Roc Toolkit internal modules
Roc Toolkit: real-time audio streaming
Loading...
Searching...
No Matches
iwriter.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2015 Roc authors
3 *
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 */
8
9//! @file roc_packet/iwriter.h
10//! @brief Packet writer interface.
11
12#ifndef ROC_PACKET_IWRITER_H_
13#define ROC_PACKET_IWRITER_H_
14
15#include "roc_packet/packet.h"
16
17namespace roc {
18namespace packet {
19
20//! Packet writer interface.
21class IWriter {
22public:
23 virtual ~IWriter();
24
25 //! Write packet.
26 virtual void write(const PacketPtr&) = 0;
27};
28
29} // namespace packet
30} // namespace roc
31
32#endif // ROC_PACKET_IWRITER_H_
Packet writer interface.
Definition: iwriter.h:21
virtual void write(const PacketPtr &)=0
Write packet.
Root namespace.
Packet.