mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 23:57:34 +00: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
2 changed files with 2 additions and 3 deletions
|
@ -13,6 +13,7 @@ namespace IPC {
|
||||||
class Decoder;
|
class Decoder;
|
||||||
class Encoder;
|
class Encoder;
|
||||||
class Message;
|
class Message;
|
||||||
|
struct MessageBuffer;
|
||||||
class File;
|
class File;
|
||||||
class Stub;
|
class Stub;
|
||||||
|
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
|
|
||||||
#include <AK/ByteString.h>
|
#include <AK/ByteString.h>
|
||||||
#include <AK/OwnPtr.h>
|
#include <AK/OwnPtr.h>
|
||||||
|
#include <LibIPC/Forward.h>
|
||||||
|
|
||||||
namespace AK {
|
namespace AK {
|
||||||
class BufferStream;
|
class BufferStream;
|
||||||
|
@ -16,9 +17,6 @@ class BufferStream;
|
||||||
|
|
||||||
namespace IPC {
|
namespace IPC {
|
||||||
|
|
||||||
class Message;
|
|
||||||
struct MessageBuffer;
|
|
||||||
|
|
||||||
class Stub {
|
class Stub {
|
||||||
public:
|
public:
|
||||||
virtual ~Stub() = default;
|
virtual ~Stub() = default;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue