diff options
Diffstat (limited to 'Userland/Applications/SystemMonitor/ThreadStackWidget.h')
-rw-r--r-- | Userland/Applications/SystemMonitor/ThreadStackWidget.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Userland/Applications/SystemMonitor/ThreadStackWidget.h b/Userland/Applications/SystemMonitor/ThreadStackWidget.h index 25756a1821..75bf61fa8a 100644 --- a/Userland/Applications/SystemMonitor/ThreadStackWidget.h +++ b/Userland/Applications/SystemMonitor/ThreadStackWidget.h @@ -10,6 +10,8 @@ #include <LibGUI/TableView.h> #include <LibGUI/Widget.h> +namespace SystemMonitor { + class ThreadStackWidget final : public GUI::Widget { C_OBJECT(ThreadStackWidget) public: @@ -30,3 +32,5 @@ private: RefPtr<GUI::TableView> m_stack_table; RefPtr<Core::Timer> m_timer; }; + +} |