mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
16 lines
264 B
C++
16 lines
264 B
C++
/*
|
|
* Copyright (c) 2022, Ali Mohammad Pur <mpfard@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/ByteString.h>
|
|
|
|
namespace XML {
|
|
|
|
// FIXME: Maybe extend this to something more sophisticated?
|
|
using Name = ByteString;
|
|
|
|
}
|