summaryrefslogtreecommitdiff
path: root/include/erebos/network.h
blob: 47c7e7abf70b6a73eee5a379a40e1bf202a80460 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include <erebos/identity.h>

namespace erebos {

class Server
{
public:
	Server(const Identity &);
	~Server();

	struct Peer;
private:
	struct Priv;
	const std::shared_ptr<Priv> p;
};

};