blob: c29096f47a871931dbca93636304435c6feec924 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#pragma once
#include <erebos/identity.h>
namespace erebos {
class Server
{
public:
Server(const Identity &);
~Server();
private:
struct Priv;
const std::shared_ptr<Priv> p;
};
};
|