1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:48:11 +00:00
serenity/Libraries/LibIPC/IEndpoint.h
Andreas Kling 05e08afcd8 IPCCompiler: Generate getters for message ID's and message names
Each endpoint namespace will have an enum class MessageID where you can
find all of its messages.
2019-08-03 16:19:14 +02:00

16 lines
191 B
C++

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