blob: ed1b25497adf194089eeb57c81da681a08b49b2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* Copyright (c) 2021, sin-ack <sin-ack@protonmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "TextMetrics.h"
namespace Web::HTML {
RefPtr<TextMetrics> TextMetrics::create()
{
return adopt_ref(*new TextMetrics());
}
}
|