1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-18 17:05:06 +00:00
serenity/Libraries/LibJS/Runtime/GlobalObject.h
Andreas Kling 19452230cd LibJS: Add "Heap" and "Runtime" subdirectories
Let's try to keep LibJS tidy as it expands. :^)
2020-03-16 14:37:19 +01:00

16 lines
278 B
C++

#pragma once
#include <LibJS/Runtime/Object.h>
namespace JS {
class GlobalObject final : public Object {
public:
explicit GlobalObject();
virtual ~GlobalObject() override;
private:
virtual const char* class_name() const override { return "GlobalObject"; }
};
}