mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 15:16:14 +00:00
This will be a place to put object serialization/deserialization logic, message parsing, endpoint management, etc.
17 lines
204 B
C++
17 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;
|
|
};
|