diff options
author | Andreas Kling <kling@serenityos.org> | 2021-05-04 17:45:02 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-04 20:59:32 +0200 |
commit | dbbc6096a900093156e75cbaf1accacea6c63dad (patch) | |
tree | ee097ec1ab4d9306d795fd6c3157f3f80839d6bc /Userland/DevTools/Profiler/IndividualSampleModel.h | |
parent | d29e2dd2d7b63318a07c08137061d635646447a4 (diff) | |
download | serenity-dbbc6096a900093156e75cbaf1accacea6c63dad.zip |
Profiler: Move everything into the "Profiler" namespace
Diffstat (limited to 'Userland/DevTools/Profiler/IndividualSampleModel.h')
-rw-r--r-- | Userland/DevTools/Profiler/IndividualSampleModel.h | 4 |
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 }; }; + +} |