/* * Copyright (c) 2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include namespace Web::UIEvents { class UIEvent : public DOM::Event { public: using WrapperType = Bindings::UIEventWrapper; virtual ~UIEvent() override { } protected: explicit UIEvent(const FlyString& event_name) : Event(event_name) { } }; }