ladybird/Userland/Libraries/LibWeb/UIEvents/UIEvent.h

27 lines
423 B
C
Raw Normal View History

/*
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibWeb/DOM/Event.h>
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)
{
}
};
}