serenity/Userland/Applications/HexEditor/GoToOffsetWidget.h
2023-12-08 01:06:09 +01:00

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;
};
}