blob: ba0649569d92e13f628fef921894ada94ee24371 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#pragma once
#include <erebos/state.h>
#include <erebos/uuid.h>
#include <memory>
namespace erebos {
class Service
{
public:
Service();
virtual ~Service();
class Context
{
public:
struct Priv;
Context(Priv *);
Priv & priv();
const class Ref & ref() const;
const class Peer & peer() const;
const Stored<LocalState> & local() const;
void local(const LocalState &);
private:
std::unique_ptr<Priv> p;
};
virtual UUID uuid() const = 0;
virtual void handle(Context &) = 0;
virtual void serverStarted(const class Server &);
};
}
|