mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-29 07:48:47 +00:00
Things were getting a little crowded in the project root, so this patch moves the Lib*/ directories into Libraries/.
12 lines
277 B
C++
12 lines
277 B
C++
#pragma once
|
|
|
|
#include <AK/Function.h>
|
|
#include <LibGUI/GTextEditor.h>
|
|
|
|
class GTextBox final : public GTextEditor {
|
|
public:
|
|
explicit GTextBox(GWidget* parent);
|
|
virtual ~GTextBox() override;
|
|
|
|
virtual const char* class_name() const override { return "GTextBox"; }
|
|
};
|