summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/Temporal/Temporal.h
blob: 360cd8f27d5554f0daf328d2ce16fb0817e8d32c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Copyright (c) 2021, Linus Groh <linusg@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <LibJS/Runtime/Object.h>

namespace JS::Temporal {

class Temporal final : public Object {
    JS_OBJECT(Temporal, Object);

public:
    explicit Temporal(Realm&);
    virtual void initialize(Realm&) override;
    virtual ~Temporal() override = default;
};

}