Kernel: Remove a bunch of duplicate forward declarations

This commit is contained in:
Andreas Kling 2020-08-01 19:39:45 +02:00
parent e526fa572a
commit a19304c9d6
2 changed files with 1 additions and 8 deletions

View file

@ -38,14 +38,6 @@
namespace Kernel {
class CharacterDevice;
class File;
class MasterPTY;
class Process;
class Region;
class Socket;
class TTY;
class FileDescription : public RefCounted<FileDescription> {
MAKE_SLAB_ALLOCATED(FileDescription)
public:

View file

@ -45,6 +45,7 @@ class KBuffer;
class KResult;
class LocalSocket;
class MappedROM;
class MasterPTY;
class PageDirectory;
class PerformanceEventBuffer;
class PhysicalPage;