1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-19 23:22:16 +03:00

Import fs::SeekMode enum into global namespace

This commit is contained in:
Ivan Grokhotkov 2015-08-10 15:27:28 +03:00
parent 34be16c8da
commit 15fca01031

View File

@ -105,7 +105,6 @@ public:
protected:
FSImplPtr _impl;
};
} // namespace fs
@ -113,6 +112,10 @@ protected:
using fs::FS;
using fs::File;
using fs::Dir;
using fs::SeekMode;
using fs::SeekSet;
using fs::SeekCur;
using fs::SeekEnd;
extern FS SPIFFS;