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

LibTextCodec: Add a simple UTF-16BE decoder

This commit is contained in:
Andreas Kling 2021-02-16 17:31:22 +01:00
parent 01e00bac9d
commit 0538dc4e28
2 changed files with 26 additions and 1 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
* Copyright (c) 2020-2021, Andreas Kling <kling@serenityos.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@ -40,6 +40,11 @@ public:
virtual String to_utf8(const StringView&) override;
};
class UTF16BEDecoder final : public Decoder {
public:
virtual String to_utf8(const StringView&) override;
};
class Latin1Decoder final : public Decoder {
public:
virtual String to_utf8(const StringView&) override;