1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:17:35 +00:00

AK: Add InputStream abstraction and InputMemoryStream implementation.

This commit is contained in:
asynts 2020-08-05 12:14:44 +02:00 committed by Andreas Kling
parent 75cde94c6a
commit 5bfa7749c3
4 changed files with 307 additions and 0 deletions

View file

@ -48,6 +48,8 @@ class URL;
class FlyString;
class Utf32View;
class Utf8View;
class InputStream;
class InputMemoryStream;
template<typename T>
class Span;
@ -129,6 +131,8 @@ using AK::Function;
using AK::HashMap;
using AK::HashTable;
using AK::InlineLinkedList;
using AK::InputMemoryStream;
using AK::InputStream;
using AK::IPv4Address;
using AK::JsonArray;
using AK::JsonObject;