summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/UIEvents/UIEvent.h
blob: c0f42ea703e5c5dfc248bef1c8cf20310b01a685 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * 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)
    {
    }
};

}