bettola/common/src/i_network_bridge.h
Ritchie Cunningham 4f5436f376 [Refactor] Implement in-memory VFS cache.
Refactors VFS to use a cetralised, in memory caching on the server. This
resolves performance and state sync issues from the previous
implementation.
2025-10-12 01:05:23 +01:00

12 lines
206 B
C++

#pragma once
#include <string>
class Machine;
class INetworkBridge {
public:
virtual Machine* get_machine_by_ip(const std::string& ip) = 0;
virtual void release_machine(long long machine_id) = 0;
};