mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-09 09:34:57 +09:00
AK: Move bit streams from LibCore
This commit is contained in:
parent
94f139c111
commit
2470dd3bb5
Notes:
sideshowbarker
2024-07-17 00:59:01 +09:00
Author: https://github.com/timschumi
Commit: 2470dd3bb5
Pull-request: https://github.com/SerenityOS/serenity/pull/17173
Reviewed-by: https://github.com/ADKaster ✅
Reviewed-by: https://github.com/alimpfard
14 changed files with 167 additions and 158 deletions
|
@ -18,6 +18,8 @@ class ByteBuffer;
|
|||
}
|
||||
|
||||
class Bitmap;
|
||||
class BigEndianInputBitStream;
|
||||
class BigEndianOutputBitStream;
|
||||
using ByteBuffer = Detail::ByteBuffer<32>;
|
||||
class CircularBuffer;
|
||||
class DeprecatedInputStream;
|
||||
|
@ -31,6 +33,8 @@ class IPv4Address;
|
|||
class JsonArray;
|
||||
class JsonObject;
|
||||
class JsonValue;
|
||||
class LittleEndianInputBitStream;
|
||||
class LittleEndianOutputBitStream;
|
||||
class StackInfo;
|
||||
class DeprecatedFlyString;
|
||||
class DeprecatedString;
|
||||
|
@ -152,6 +156,8 @@ class [[nodiscard]] ErrorOr;
|
|||
using AK::Array;
|
||||
using AK::Atomic;
|
||||
using AK::Badge;
|
||||
using AK::BigEndianInputBitStream;
|
||||
using AK::BigEndianOutputBitStream;
|
||||
using AK::Bitmap;
|
||||
using AK::ByteBuffer;
|
||||
using AK::Bytes;
|
||||
|
@ -177,6 +183,8 @@ using AK::IPv4Address;
|
|||
using AK::JsonArray;
|
||||
using AK::JsonObject;
|
||||
using AK::JsonValue;
|
||||
using AK::LittleEndianInputBitStream;
|
||||
using AK::LittleEndianOutputBitStream;
|
||||
using AK::NonnullOwnPtr;
|
||||
using AK::NonnullOwnPtrVector;
|
||||
using AK::NonnullRefPtr;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue