mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-30 08:18:49 +00:00
This enables support for automatically generating client methods. With this added the user gets code completion support for all IPC methods which are available on a connection object.
36 lines
506 B
C++
36 lines
506 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/OwnPtr.h>
|
|
#include <AK/String.h>
|
|
|
|
namespace AK {
|
|
class BufferStream;
|
|
}
|
|
|
|
namespace IPC {
|
|
|
|
class Message;
|
|
class MessageBuffer;
|
|
|
|
class Stub {
|
|
public:
|
|
virtual ~Stub();
|
|
|
|
virtual u32 magic() const = 0;
|
|
virtual String name() const = 0;
|
|
virtual OwnPtr<MessageBuffer> handle(const Message&) = 0;
|
|
|
|
protected:
|
|
Stub();
|
|
|
|
private:
|
|
String m_name;
|
|
};
|
|
|
|
}
|