summaryrefslogtreecommitdiff
path: root/AK
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-05-30 13:39:17 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-05-30 13:39:17 +0200
commit08926e59b36dd46e4fad9db522d4a2192ede7263 (patch)
treefdf5cec7f831d5a33b35c86452533c094cb8d212 /AK
parent66c1a9be3b01a508adec71910164f84e3bbe3923 (diff)
downloadserenity-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.h3
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 {