mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 06:14:58 +00:00
23 lines
398 B
C++
23 lines
398 B
C++
/*
|
|
* Copyright (c) 2023, the SerenityOS developers
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibGUI/Widget.h>
|
|
|
|
namespace HexEditor {
|
|
|
|
class FindWidget : public GUI::Widget {
|
|
C_OBJECT_ABSTRACT(FindWidget)
|
|
public:
|
|
static ErrorOr<NonnullRefPtr<FindWidget>> try_create();
|
|
virtual ~FindWidget() override = default;
|
|
|
|
private:
|
|
FindWidget() = default;
|
|
};
|
|
|
|
}
|