
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
34 lines
510 B
C++
34 lines
510 B
C++
/*
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/String.h>
|
|
#include <LibJS/Heap/Handle.h>
|
|
#include <LibJS/Runtime/Function.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
struct EventHandler {
|
|
EventHandler()
|
|
{
|
|
}
|
|
|
|
EventHandler(String s)
|
|
: string(move(s))
|
|
{
|
|
}
|
|
|
|
EventHandler(JS::Handle<JS::Function> c)
|
|
: callback(move(c))
|
|
{
|
|
}
|
|
|
|
String string;
|
|
JS::Handle<JS::Function> callback;
|
|
};
|
|
|
|
}
|