1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:48:11 +00:00
serenity/Libraries/LibIPC/IEndpoint.h
Andreas Kling a40e763b2a LibIPC: Start fleshing out a separate IPC library
This will be a place to put object serialization/deserialization logic,
message parsing, endpoint management, etc.
2019-08-03 15:29:40 +02:00

16 lines
204 B
C++

#pragma once
#include <AK/AKString.h>
class IEndpoint {
public:
virtual ~IEndpoint();
const String& name() const { return m_name; }
protected:
IEndpoint();
private:
String m_name;
};