mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 09:48:11 +00:00

This will be a place to put object serialization/deserialization logic, message parsing, endpoint management, etc.
16 lines
204 B
C++
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;
|
|
};
|