mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-07 21:59:54 +00:00
33 lines
836 B
C
33 lines
836 B
C
/*
|
|
* Copyright (c) 2022, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/ByteString.h>
|
|
#include <AK/Error.h>
|
|
#include <AK/Optional.h>
|
|
#include <AK/String.h>
|
|
#include <AK/StringView.h>
|
|
#include <AK/Utf16String.h>
|
|
#include <LibURL/URL.h>
|
|
|
|
#include <QByteArray>
|
|
#include <QString>
|
|
#include <QUrl>
|
|
|
|
AK::ByteString ak_byte_string_from_qstring(QString const&);
|
|
AK::ByteString ak_byte_string_from_qbytearray(QByteArray const&);
|
|
|
|
String ak_string_from_qstring(QString const&);
|
|
QString qstring_from_ak_string(StringView);
|
|
|
|
Utf16String utf16_string_from_qstring(QString const&);
|
|
QString qstring_from_utf16_string(Utf16View const&);
|
|
|
|
QByteArray qbytearray_from_ak_string(StringView);
|
|
|
|
Optional<URL::URL> ak_url_from_qstring(QString const&);
|
|
URL::URL ak_url_from_qurl(QUrl const&);
|