mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
4cc82ac638
And rename it to PageClientLadybird while we're at it, it's not "headless" by any means.
13 lines
269 B
C
13 lines
269 B
C
/*
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/String.h>
|
|
#include <QString>
|
|
|
|
AK::String akstring_from_qstring(QString const&);
|
|
QString qstring_from_akstring(AK::String const&);
|