mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-08 04:15:23 +03:00
5f549fe5d9
These are explicitly needed, and will cause compile errors as headers moved around in subsequent commits.
30 lines
661 B
C++
30 lines
661 B
C++
/*
|
|
* Copyright (c) 2021, Jan de Visser <jan@de-visser.net>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibSQL/Heap.h>
|
|
#include <LibSQL/Index.h>
|
|
#include <LibSQL/Meta.h>
|
|
#include <LibSQL/TupleDescriptor.h>
|
|
|
|
namespace SQL {
|
|
|
|
Index::Index(Serializer& serializer, NonnullRefPtr<TupleDescriptor> const& descriptor, bool unique, u32 pointer)
|
|
: m_serializer(serializer)
|
|
, m_descriptor(descriptor)
|
|
, m_unique(unique)
|
|
, m_pointer(pointer)
|
|
{
|
|
}
|
|
|
|
Index::Index(Serializer& serializer, NonnullRefPtr<TupleDescriptor> const& descriptor, u32 pointer)
|
|
: m_serializer(serializer)
|
|
, m_descriptor(descriptor)
|
|
, m_pointer(pointer)
|
|
{
|
|
}
|
|
|
|
}
|