mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-02 16:25:34 +03:00
LibIPC: Move MessageBuffer forward declaration from Stub.h to Forward.h
The type of MessageBuffer will be changing, and it was a bit awkward to look around to find where the forward declaration was. This patch just moves it to the obvious forwarding header.
This commit is contained in:
parent
fa1ef30985
commit
3adf01b816
Notes:
sideshowbarker
2024-07-16 21:42:29 +09:00
Author: https://github.com/trflynn89 Commit: https://github.com/SerenityOS/serenity/commit/3adf01b816 Pull-request: https://github.com/SerenityOS/serenity/pull/22545 Issue: https://github.com/SerenityOS/serenity/issues/22358
@ -13,6 +13,7 @@ namespace IPC {
|
||||
class Decoder;
|
||||
class Encoder;
|
||||
class Message;
|
||||
struct MessageBuffer;
|
||||
class File;
|
||||
class Stub;
|
||||
|
||||
|
@ -9,6 +9,7 @@
|
||||
|
||||
#include <AK/ByteString.h>
|
||||
#include <AK/OwnPtr.h>
|
||||
#include <LibIPC/Forward.h>
|
||||
|
||||
namespace AK {
|
||||
class BufferStream;
|
||||
@ -16,9 +17,6 @@ class BufferStream;
|
||||
|
||||
namespace IPC {
|
||||
|
||||
class Message;
|
||||
struct MessageBuffer;
|
||||
|
||||
class Stub {
|
||||
public:
|
||||
virtual ~Stub() = default;
|
||||
|
Loading…
Reference in New Issue
Block a user