Storage initial

This commit is contained in:
IlushaShurupov 2023-07-18 23:36:51 +03:00 committed by Ilya Shurupov
parent bd1a6a44db
commit d5dfb1c304
14 changed files with 551 additions and 2 deletions

View file

@ -0,0 +1,14 @@
#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
};
}