summaryrefslogtreecommitdiff
path: root/Userland/DevTools/Profiler/IndividualSampleModel.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-05-04 17:45:02 +0200
committerAndreas Kling <kling@serenityos.org>2021-05-04 20:59:32 +0200
commitdbbc6096a900093156e75cbaf1accacea6c63dad (patch)
treeee097ec1ab4d9306d795fd6c3157f3f80839d6bc /Userland/DevTools/Profiler/IndividualSampleModel.h
parentd29e2dd2d7b63318a07c08137061d635646447a4 (diff)
downloadserenity-dbbc6096a900093156e75cbaf1accacea6c63dad.zip
Profiler: Move everything into the "Profiler" namespace
Diffstat (limited to 'Userland/DevTools/Profiler/IndividualSampleModel.h')
-rw-r--r--Userland/DevTools/Profiler/IndividualSampleModel.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Userland/DevTools/Profiler/IndividualSampleModel.h b/Userland/DevTools/Profiler/IndividualSampleModel.h
index 7ff5dacd73..95abc2541f 100644
--- a/Userland/DevTools/Profiler/IndividualSampleModel.h
+++ b/Userland/DevTools/Profiler/IndividualSampleModel.h
@@ -8,6 +8,8 @@
#include <LibGUI/Model.h>
+namespace Profiler {
+
class Profile;
class IndividualSampleModel final : public GUI::Model {
@@ -38,3 +40,5 @@ private:
Profile& m_profile;
const size_t m_event_index { 0 };
};
+
+}