Sming Framework API
Sming - Open Source framework for high efficiency WiFi SoC ESP8266 native development with C++ language.
TemplateFlashMemoryStream.h
1 /****
2  * Sming Framework Project - Open Source framework for high efficiency native ESP8266 development.
3  * Created 2015 by Skurydin Alexey
4  * http://github.com/anakod/Sming
5  * All files of the Sming Core are provided under the LGPL v3 license.
6  *
7  * TemplateFlashMemoryStream.h
8  *
9  * @author: 23 Oct 2018 - mikee47 <mike@sillyhouse.net>
10  *
11  ****/
12 
13 #ifndef _SMING_CORE_DATA_STREAM_TEMPLATE_FLASH_MEMORY_STREAM_H_
14 #define _SMING_CORE_DATA_STREAM_TEMPLATE_FLASH_MEMORY_STREAM_H_
15 
16 #include "FlashMemoryStream.h"
17 #include "TemplateStream.h"
18 
27 {
28 public:
33  {
34  }
35 };
36 
39 #endif /* _SMING_CORE_DATA_STREAM_TEMPLATE_FLASH_MEMORY_STREAM_H_ */
describes a counted string stored in flash memory
Definition: FlashString.h:171
Definition: TemplateStream.h:43
Definition: FlashMemoryStream.h:28
Template Flash memory stream class.
Definition: TemplateFlashMemoryStream.h:26
TemplateFlashMemoryStream(const FlashString &flashString)
Create a template stream on top of a flash memory stream.
Definition: TemplateFlashMemoryStream.h:32