1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:37:35 +00:00

Inspector: Move everything into the Inspector namespace

This commit is contained in:
Andreas Kling 2020-09-25 21:03:29 +02:00
parent 3843561a7e
commit 9bcc168b9b
9 changed files with 34 additions and 1 deletions

View file

@ -32,6 +32,8 @@
#include <LibCore/LocalSocket.h>
#include <LibGUI/Model.h>
namespace Inspector {
class RemoteProcess;
class RemoteObjectGraphModel final : public GUI::Model {
@ -60,3 +62,5 @@ private:
GUI::Icon m_layout_icon;
GUI::Icon m_timer_icon;
};
}