1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:37:46 +00:00

HexEditor: Port HexEditor to GML compilation

This commit is contained in:
tetektoza 2023-09-28 17:06:49 +02:00 committed by Tim Schumacher
parent bcec05a7cb
commit 935aaab757
15 changed files with 147 additions and 51 deletions

View file

@ -0,0 +1,23 @@
/*
* 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;
};
}