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/TTY/TTY.h | |
parent | d42f0f46616168bdff492f880b3ea432a49f7345 (diff) | |
download | serenity-a356e4815098e5398e103aa69865bd6c88f7ad36.zip |
Kernel: Move all code into the Kernel namespace
Diffstat (limited to 'Kernel/TTY/TTY.h')
-rw-r--r-- | Kernel/TTY/TTY.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Kernel/TTY/TTY.h b/Kernel/TTY/TTY.h index 61e4775da5..bc793741d0 100644 --- a/Kernel/TTY/TTY.h +++ b/Kernel/TTY/TTY.h @@ -31,6 +31,8 @@ #include <Kernel/DoubleBuffer.h> #include <Kernel/UnixTypes.h> +namespace Kernel { + class Process; class TTY : public CharacterDevice { @@ -95,3 +97,5 @@ private: unsigned short m_rows { 0 }; unsigned short m_columns { 0 }; }; + +} |