1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:37:46 +00:00

Profiler: Move everything into the "Profiler" namespace

This commit is contained in:
Andreas Kling 2021-05-04 17:45:02 +02:00
parent d29e2dd2d7
commit dbbc6096a9
17 changed files with 66 additions and 0 deletions

View file

@ -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 };
};
}