mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
73fdbba59c
This was a workaround to be able to build on case-insensitive file systems where it might get confused about <string.h> vs <String.h>. Let's just not support building that way, so String.h can have an objectively nicer name. :^)
25 lines
325 B
C++
25 lines
325 B
C++
#pragma once
|
|
|
|
#include <AK/String.h>
|
|
#include <AK/OwnPtr.h>
|
|
|
|
namespace AK {
|
|
class BufferStream;
|
|
}
|
|
|
|
class IMessage;
|
|
|
|
class IEndpoint {
|
|
public:
|
|
virtual ~IEndpoint();
|
|
|
|
virtual String name() const = 0;
|
|
virtual OwnPtr<IMessage> handle(const IMessage&) = 0;
|
|
|
|
protected:
|
|
IEndpoint();
|
|
|
|
private:
|
|
String m_name;
|
|
};
|