mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 10:12:25 -05:00
f6c61940f6
This represents the "platform object" concept from the IDL spec, which refers to an object that implements an IDL interface.
18 lines
289 B
C++
18 lines
289 B
C++
/*
|
|
* Copyright (c) 2020-2022, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/Bindings/Wrapper.h>
|
|
|
|
namespace Web::Bindings {
|
|
|
|
Wrapper::Wrapper(Object& prototype)
|
|
: PlatformObject(prototype)
|
|
{
|
|
}
|
|
|
|
Wrapper::~Wrapper() = default;
|
|
|
|
}
|