Modules/Storage/public/RemoteStorage.hpp
2023-07-18 23:36:51 +03:00

14 lines
No EOL
275 B
C++

#pragma once
#include "Storage.hpp"
namespace tp {
class Client : public Storage {
// same as local storage file but transfers all commands to server
};
class Server {
// opens local storage and transfers all client command to it
// manages multiple clients
};
}