diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-05-30 13:39:17 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-05-30 13:39:17 +0200 |
commit | 08926e59b36dd46e4fad9db522d4a2192ede7263 (patch) | |
tree | fdf5cec7f831d5a33b35c86452533c094cb8d212 /AK | |
parent | 66c1a9be3b01a508adec71910164f84e3bbe3923 (diff) | |
download | serenity-08926e59b36dd46e4fad9db522d4a2192ede7263.zip |
Kernel: Add InodeFile, a File subclass for regular files.
Finally everything that can be held by a FileDescriptor actually inherits
from the File class.
Diffstat (limited to 'AK')
-rw-r--r-- | AK/BufferStream.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/AK/BufferStream.h b/AK/BufferStream.h index 29da0b7a5f..db2907963f 100644 --- a/AK/BufferStream.h +++ b/AK/BufferStream.h @@ -1,6 +1,7 @@ #pragma once -#include "ByteBuffer.h" +#include <AK/AKString.h> +#include <AK/ByteBuffer.h> namespace AK { |