File tree 2 files changed +11
-9
lines changed
2 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
+ #include " vfs_api.h"
16
+
15
17
extern " C" {
16
18
#include < sys/unistd.h>
17
19
#include < sys/stat.h>
@@ -23,6 +25,14 @@ extern "C" {
23
25
24
26
using namespace fs ;
25
27
28
+ class SPIFFSImpl : public VFSImpl
29
+ {
30
+ public:
31
+ SPIFFSImpl ();
32
+ virtual ~SPIFFSImpl () { }
33
+ virtual bool exists (const char * path);
34
+ };
35
+
26
36
SPIFFSImpl::SPIFFSImpl ()
27
37
{
28
38
}
Original file line number Diff line number Diff line change 14
14
#ifndef _SPIFFS_H_
15
15
#define _SPIFFS_H_
16
16
17
- #include " vfs_api .h"
17
+ #include " FS .h"
18
18
19
19
namespace fs
20
20
{
21
21
22
- class SPIFFSImpl : public VFSImpl
23
- {
24
- public:
25
- SPIFFSImpl ();
26
- virtual ~SPIFFSImpl () { }
27
- virtual bool exists (const char * path);
28
- };
29
-
30
22
class SPIFFSFS : public FS
31
23
{
32
24
public:
You can’t perform that action at this time.
0 commit comments