mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-02 16:25:34 +03:00
24 lines
400 B
C++
24 lines
400 B
C++
/*
|
|
* Copyright (c) 2023, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibGUI/Widget.h>
|
|
|
|
namespace SpaceAnalyzer {
|
|
|
|
class MainWidget final : public GUI::Widget {
|
|
C_OBJECT(MainWidget)
|
|
public:
|
|
static ErrorOr<NonnullRefPtr<MainWidget>> try_create();
|
|
virtual ~MainWidget() override = default;
|
|
|
|
private:
|
|
MainWidget() = default;
|
|
};
|
|
|
|
}
|