mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 07:33:20 +00:00
19 lines
249 B
C
19 lines
249 B
C
![]() |
/*
|
||
|
* Copyright (c) 2025, Tim Flynn <trflynn89@ladybird.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <AK/Types.h>
|
||
|
#include <LibDatabase/Export.h>
|
||
|
|
||
|
namespace Database {
|
||
|
|
||
|
class Database;
|
||
|
|
||
|
using StatementID = size_t;
|
||
|
|
||
|
}
|