mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-04 05:20:30 +00:00
LibCore: Remove a bunch of unnecessary forward declarations
Now that we get LibCore forward declarations from <LibCore/Forward.h>, we don't need to declare things manually.
This commit is contained in:
parent
66903ad987
commit
2a41bff329
Notes:
sideshowbarker
2024-07-19 09:19:51 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/2a41bff3294
8 changed files with 2 additions and 16 deletions
|
@ -33,8 +33,6 @@
|
|||
|
||||
namespace Core {
|
||||
|
||||
class TCPSocket;
|
||||
|
||||
class HttpJob final : public NetworkJob {
|
||||
C_OBJECT(HttpJob)
|
||||
public:
|
||||
|
|
|
@ -29,11 +29,11 @@
|
|||
#include <AK/Optional.h>
|
||||
#include <AK/String.h>
|
||||
#include <AK/URL.h>
|
||||
#include <AK/Vector.h>
|
||||
#include <LibCore/Forward.h>
|
||||
|
||||
namespace Core {
|
||||
|
||||
class NetworkJob;
|
||||
|
||||
class HttpRequest {
|
||||
public:
|
||||
enum Method {
|
||||
|
|
|
@ -31,8 +31,6 @@
|
|||
|
||||
namespace Core {
|
||||
|
||||
class LocalSocket;
|
||||
|
||||
class LocalServer : public Object {
|
||||
C_OBJECT(LocalServer)
|
||||
public:
|
||||
|
|
|
@ -30,8 +30,6 @@
|
|||
|
||||
namespace Core {
|
||||
|
||||
class LocalServer;
|
||||
|
||||
class LocalSocket final : public Socket {
|
||||
C_OBJECT(LocalSocket)
|
||||
public:
|
||||
|
|
|
@ -31,8 +31,6 @@
|
|||
|
||||
namespace Core {
|
||||
|
||||
class NetworkResponse;
|
||||
|
||||
class NetworkJob : public Object {
|
||||
C_OBJECT_ABSTRACT(NetworkJob)
|
||||
public:
|
||||
|
|
|
@ -32,8 +32,6 @@
|
|||
|
||||
namespace Core {
|
||||
|
||||
class Notifier;
|
||||
|
||||
class Socket : public IODevice {
|
||||
C_OBJECT(Socket)
|
||||
public:
|
||||
|
|
|
@ -32,8 +32,6 @@
|
|||
|
||||
namespace Core {
|
||||
|
||||
class TCPSocket;
|
||||
|
||||
class TCPServer : public Object {
|
||||
C_OBJECT(TCPServer)
|
||||
public:
|
||||
|
|
|
@ -31,8 +31,6 @@
|
|||
|
||||
namespace Core {
|
||||
|
||||
class TCPServer;
|
||||
|
||||
class TCPSocket final : public Socket {
|
||||
C_OBJECT(TCPSocket)
|
||||
public:
|
||||
|
|
Loading…
Reference in a new issue