mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 17:31:58 -05:00
24 lines
428 B
C
24 lines
428 B
C
|
/*
|
||
|
* Copyright (c) 2023, the SerenityOS developers
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <LibGUI/Widget.h>
|
||
|
|
||
|
namespace HexEditor {
|
||
|
|
||
|
class GoToOffsetWidget : public GUI::Widget {
|
||
|
C_OBJECT_ABSTRACT(GoToOffsetWidget)
|
||
|
public:
|
||
|
static ErrorOr<NonnullRefPtr<GoToOffsetWidget>> try_create();
|
||
|
virtual ~GoToOffsetWidget() override = default;
|
||
|
|
||
|
private:
|
||
|
GoToOffsetWidget() = default;
|
||
|
};
|
||
|
|
||
|
}
|