ladybird/Libraries/LibWeb/IndexedDB/IDBKeyRange.cpp
2024-11-26 14:50:27 +01:00

33 lines
657 B
C++

/*
* Copyright (c) 2024, stelar7 <dudedbz@gmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibWeb/Bindings/IDBKeyRangePrototype.h>
#include <LibWeb/Bindings/Intrinsics.h>
#include <LibWeb/IndexedDB/IDBKeyRange.h>
namespace Web::IndexedDB {
GC_DEFINE_ALLOCATOR(IDBKeyRange);
IDBKeyRange::~IDBKeyRange() = default;
IDBKeyRange::IDBKeyRange(JS::Realm& realm)
: PlatformObject(realm)
{
}
GC::Ref<IDBKeyRange> IDBKeyRange::create(JS::Realm& realm)
{
return realm.create<IDBKeyRange>(realm);
}
void IDBKeyRange::initialize(JS::Realm& realm)
{
Base::initialize(realm);
WEB_SET_PROTOTYPE_FOR_INTERFACE(IDBKeyRange);
}
}