1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:28:10 +00:00
serenity/DevTools/HackStudio/TerminalWrapper.h
Andreas Kling 43ccb28852 HackStudio: Embed a Terminal widget below the text editor
This will be very useful for running (and interacting with) programs
after we build them. :^)
2019-10-21 20:17:32 +02:00

16 lines
299 B
C++

#pragma once
#include <LibGUI/GWidget.h>
class TerminalWidget;
class TerminalWrapper final : public GWidget {
C_OBJECT(TerminalWrapper)
public:
virtual ~TerminalWrapper() override;
private:
explicit TerminalWrapper(GWidget* parent);
RefPtr<TerminalWidget> m_terminal_widget;
};