1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-16 00:43:00 +03:00

Filesystem: fix File::available, add File::name

This commit is contained in:
Ivan Grokhotkov
2015-08-05 07:41:12 -04:00
parent 90efba073f
commit b5d9db91aa
4 changed files with 19 additions and 3 deletions

View File

@ -33,6 +33,7 @@ public:
virtual size_t position() const = 0;
virtual size_t size() const = 0;
virtual void close() = 0;
virtual const char* name() const = 0;
};
enum OpenMode {