Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill dead code.
[simgrid.git] / examples / s4u / app-bittorrent / s4u-bittorrent.hpp
index 0895354..06fabfa 100644 (file)
@@ -77,15 +77,6 @@ public:
       : type(type), peer_id(peer_id), return_mailbox(return_mailbox), piece(piece){};
 };
 
-class HostBittorrent {
-  simgrid::s4u::Host* host = nullptr;
-
-public:
-  explicit HostBittorrent(simgrid::s4u::Host* ptr) : host(ptr) {}
-  HostBittorrent(const HostBittorrent&) = delete;
-  HostBittorrent& operator=(const HostBittorrent&) = delete;
-};
-
 extern std::default_random_engine generator;
 
 #endif /* BITTORRENT_BITTORRENT_HPP_ */