diff options
author | Andreas Kling <kling@serenityos.org> | 2020-02-15 00:13:44 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-15 00:13:44 +0100 |
commit | 69400c2ca14125c606f31543d7e0f449687cf628 (patch) | |
tree | 99b78d5f6313f2851d42b40c22d3a264df58bc12 /Servers/ProtocolServer | |
parent | 6a3cd11a8035747c05e781064a8a0084736908c8 (diff) | |
download | serenity-69400c2ca14125c606f31543d7e0f449687cf628.zip |
LibCore: Replace manual forward declarations with <LibCore/Forward.h>
Diffstat (limited to 'Servers/ProtocolServer')
-rw-r--r-- | Servers/ProtocolServer/HttpDownload.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Servers/ProtocolServer/HttpDownload.h b/Servers/ProtocolServer/HttpDownload.h index 246f18e26f..8ec1809e97 100644 --- a/Servers/ProtocolServer/HttpDownload.h +++ b/Servers/ProtocolServer/HttpDownload.h @@ -27,12 +27,9 @@ #pragma once #include <AK/Badge.h> +#include <LibCore/Forward.h> #include <ProtocolServer/Download.h> -namespace Core { -class CoreHttpJob; -} - class HttpProtocol; class HttpDownload final : public Download { |