worked on FileSystem, started to migrate logging class
This commit is contained in:
14
ext/sd/fat32/FreeClusterIterator.h
Normal file
14
ext/sd/fat32/FreeClusterIterator.h
Normal 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) {
|
||||
|
||||
}
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user