diff options
author | Andreas Kling <kling@serenityos.org> | 2020-02-16 01:27:42 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-16 01:27:42 +0100 |
commit | a356e4815098e5398e103aa69865bd6c88f7ad36 (patch) | |
tree | 50437c6444405f12671bce7f04a8c1b10cff70f8 /Kernel/VM/PhysicalRegion.h | |
parent | d42f0f46616168bdff492f880b3ea432a49f7345 (diff) | |
download | serenity-a356e4815098e5398e103aa69865bd6c88f7ad36.zip |
Kernel: Move all code into the Kernel namespace
Diffstat (limited to 'Kernel/VM/PhysicalRegion.h')
-rw-r--r-- | Kernel/VM/PhysicalRegion.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Kernel/VM/PhysicalRegion.h b/Kernel/VM/PhysicalRegion.h index 2fdf2dcc9d..fcc7d0f19b 100644 --- a/Kernel/VM/PhysicalRegion.h +++ b/Kernel/VM/PhysicalRegion.h @@ -27,10 +27,12 @@ #pragma once #include <AK/Bitmap.h> -#include <AK/RefCounted.h> #include <AK/NonnullRefPtr.h> +#include <AK/RefCounted.h> #include <Kernel/VM/PhysicalPage.h> +namespace Kernel { + class PhysicalRegion : public RefCounted<PhysicalRegion> { AK_MAKE_ETERNAL @@ -62,3 +64,5 @@ private: unsigned m_last { 0 }; Bitmap m_bitmap; }; + +} |