worked on FileSystem, started to migrate logging class

This commit is contained in:
2021-02-14 15:29:21 +01:00
parent faf6e55bc5
commit 6aa951190e
19 changed files with 612 additions and 241 deletions

View File

@@ -0,0 +1,14 @@
#pragma once
/** helper class to iterate all free clusters of the Filesystem */
class FreeClusterIterator {
FS& fs;
public:
FreeClusterIterator(FS& fs) : fs(fs) {
}
};