1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:57:44 +00:00

AK: Prepare Utf32View for use within templated LibGfx contexts

Forward declare its iterator and add a peek() method analagous to
Utf8CodePointIterator::peek().
This commit is contained in:
Timothy Flynn 2023-02-20 14:04:42 -05:00 committed by Andreas Kling
parent 0f20586346
commit 832e9b8302
3 changed files with 23 additions and 0 deletions

View file

@ -44,6 +44,7 @@ class Time;
class URL;
class String;
class Utf16View;
class Utf32CodePointIterator;
class Utf32View;
class Utf8CodePointIterator;
class Utf8View;
@ -201,6 +202,7 @@ using AK::Time;
using AK::Traits;
using AK::URL;
using AK::Utf16View;
using AK::Utf32CodePointIterator;
using AK::Utf32View;
using AK::Utf8CodePointIterator;
using AK::Utf8View;