mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 10:17:35 +00:00
AK: Add CircularDuplexStream class.
This commit is contained in:
parent
8e08d9f70a
commit
a82fead38a
4 changed files with 236 additions and 1 deletions
|
@ -51,6 +51,10 @@ class Utf8View;
|
|||
class InputStream;
|
||||
class InputMemoryStream;
|
||||
class DuplexMemoryStream;
|
||||
class OutputStream;
|
||||
|
||||
template<size_t Capacity>
|
||||
class CircularDuplexStream;
|
||||
|
||||
template<typename T>
|
||||
class Span;
|
||||
|
@ -123,6 +127,7 @@ using AK::Bitmap;
|
|||
using AK::BufferStream;
|
||||
using AK::ByteBuffer;
|
||||
using AK::Bytes;
|
||||
using AK::CircularDuplexStream;
|
||||
using AK::CircularQueue;
|
||||
using AK::DebugLogStream;
|
||||
using AK::DoublyLinkedList;
|
||||
|
@ -143,6 +148,7 @@ using AK::LogStream;
|
|||
using AK::NonnullOwnPtr;
|
||||
using AK::NonnullRefPtr;
|
||||
using AK::Optional;
|
||||
using AK::OutputStream;
|
||||
using AK::OwnPtr;
|
||||
using AK::ReadonlyBytes;
|
||||
using AK::RefPtr;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue