GdbFileStream.h
Go to the documentation of this file.
1 /****
2  * Sming Framework Project - Open Source framework for high efficiency native ESP8266 development.
3  * Created 2015 by Skurydin Alexey
4  * http://github.com/SmingHub/Sming
5  * All files of the Sming Core are provided under the LGPL v3 license.
6  *
7  * GdbFileStream.h
8  *
9  ****/
10 
11 #pragma once
12 
13 #include "IFS/FileStream.h"
14 #include <IFS/Gdb/FileSystem.h>
15 
21 {
22 public:
23  GdbFileStream() : IFS::FileStream(&fileSystem)
24  {
25  }
26 
27 private:
28  IFS::Gdb::FileSystem fileSystem;
29 };
File stream class.
Definition: IFS/FileStream.h:30
GDB File stream class to provide access to host files whilst running under debugger.
Definition: GdbFileStream.h:20
IFS implementation of Host filing system.
Definition: Components/IFS/src/include/IFS/Gdb/FileSystem.h:74
GdbFileStream()
Definition: GdbFileStream.h:31