Roc Toolkit internal modules
Roc Toolkit: real-time audio streaming
Loading...
Searching...
No Matches
isink.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2019 Roc Streaming 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_sndio/isink.h
10//! @brief Sink interface.
11
12#ifndef ROC_SNDIO_ISINK_H_
13#define ROC_SNDIO_ISINK_H_
14
16#include "roc_sndio/idevice.h"
17
18namespace roc {
19namespace sndio {
20
21//! Sink interface.
22class ISink : virtual public IDevice, public audio::IFrameWriter {
23public:
24 virtual ~ISink();
25};
26
27} // namespace sndio
28} // namespace roc
29
30#endif // ROC_SNDIO_ISINK_H_
Frame writer interface.
Base interface for sinks and sources.
Definition idevice.h:28
Sink interface.
Definition isink.h:22
Device interface.
Frame writer interface.
Root namespace.