mirror of
https://github.com/ZmnSCPxj/clboss.git
synced 2026-08-16 13:00:59 +02:00
28 lines
490 B
C++
28 lines
490 B
C++
#ifndef BOSS_MOD_PEERSTATISTICIAN_HPP
|
|
#define BOSS_MOD_PEERSTATISTICIAN_HPP
|
|
|
|
#include<memory>
|
|
|
|
namespace S { class Bus; }
|
|
|
|
namespace Boss { namespace Mod {
|
|
|
|
class PeerStatistician {
|
|
private:
|
|
class Impl;
|
|
std::unique_ptr<Impl> pimpl;
|
|
|
|
public:
|
|
PeerStatistician() =delete;
|
|
PeerStatistician(PeerStatistician const&) =delete;
|
|
|
|
PeerStatistician(PeerStatistician&&);
|
|
~PeerStatistician();
|
|
|
|
explicit
|
|
PeerStatistician(S::Bus& bus);
|
|
};
|
|
|
|
}}
|
|
|
|
#endif /* !defined(BOSS_MOD_PEERSTATISTICIAN_HPP) */
|