blob: f8217c8e484ffc15f84c6406ce7a65d1052f1bfa (
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
|
#include "service.h"
using namespace erebos;
Service::Service() = default;
Service::~Service() = default;
Service::Context::Context(Priv * p):
p(p)
{}
Service::Context::Priv & Service::Context::priv()
{
return *p;
}
const Ref & Service::Context::ref() const
{
return p->ref;
}
const Peer & Service::Context::peer() const
{
return p->peer;
}
|