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,19 @@
#pragma once
#include "Common.hpp"
namespace tp {
class FileSystemHandle {
void* stream;
public:
FileSystemHandle();
~FileSystemHandle();
void open(const char*, bool);
bool isOpen();
void close();
void seekp(ualni);
void read(int1*, ualni);
void write(const int1*, ualni);
ualni size();
};
}