Roc Toolkit internal modules
Roc Toolkit: real-time audio streaming
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 
18 namespace roc {
19 namespace sndio {
20 
21 //! Sink interface.
22 class ISink : public IDevice, public audio::IFrameWriter {
23 public:
24  virtual ~ISink();
25 };
26 
27 } // namespace sndio
28 } // namespace roc
29 
30 #endif // ROC_SNDIO_ISINK_H_
Frame writer interface.
Definition: iframe_writer.h:22
Base interface for sinks and sources.
Definition: idevice.h:25
Sink interface.
Definition: isink.h:22
Device interface.
Frame writer interface.
Root namespace.