diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2021-11-27 22:29:53 +0100 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2021-11-28 20:14:33 +0100 |
commit | 53f4c26c4682a951e084415a594fcb8d9494033f (patch) | |
tree | e9e7ed894303df434e3b8d6592fb805075fd9e73 /include | |
parent | 6810c0e213226a62db1179a7c55bd351eb71ffe9 (diff) |
Network: make Server non-copyable
Avoids issues with shared_from_this and does not make much sense anyway.
Diffstat (limited to 'include')
-rw-r--r-- | include/erebos/network.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/erebos/network.h b/include/erebos/network.h index f2ae191..252c3c7 100644 --- a/include/erebos/network.h +++ b/include/erebos/network.h @@ -16,6 +16,9 @@ public: Server(const std::shared_ptr<Priv> &); ~Server(); + Server(const Server &) = delete; + Server & operator=(const Server &) = delete; + const Head<LocalState> & localHead() const; const Bhv<LocalState> & localState() const; |