Add a couple of missing entrypoints.

This commit is contained in:
David Given
2022-08-27 18:10:10 +02:00
parent 917d5d2dd2
commit 5251a5f195

View File

@@ -126,6 +126,16 @@ public:
throw UnimplementedFilesystemException();
}
virtual void createDirectory(const Path& path)
{
throw UnimplementedFilesystemException();
}
virtual void deleteFile(const Path& path)
{
throw UnimplementedFilesystemException();
}
protected:
Filesystem(std::shared_ptr<SectorInterface> sectors);