mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 02:12:09 -05:00
18 lines
368 B
C
18 lines
368 B
C
|
#pragma once
|
||
|
|
||
|
#include <LibGUI/GWindow.h>
|
||
|
|
||
|
class GTableView;
|
||
|
|
||
|
class VBPropertiesWindow final : public GWindow {
|
||
|
public:
|
||
|
VBPropertiesWindow();
|
||
|
virtual ~VBPropertiesWindow() override;
|
||
|
|
||
|
GTableView& table_view() { return *m_table_view; }
|
||
|
const GTableView& table_view() const { return *m_table_view; }
|
||
|
|
||
|
private:
|
||
|
GTableView* m_table_view { nullptr };
|
||
|
};
|