mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
18 lines
471 B
C
18 lines
471 B
C
|
/*
|
||
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <AK/DeprecatedString.h>
|
||
|
#include <AK/Error.h>
|
||
|
#include <AK/String.h>
|
||
|
#include <QString>
|
||
|
|
||
|
AK::DeprecatedString ak_deprecated_string_from_qstring(QString const&);
|
||
|
ErrorOr<String> ak_string_from_qstring(QString const&);
|
||
|
QString qstring_from_ak_deprecated_string(AK::DeprecatedString const&);
|
||
|
QString qstring_from_ak_string(String const&);
|