Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: EthernetInterface mbed-rpc mbed-rtos mbed
Fork of IoTKit_RPC-Server by
Formatter.h
- Committer:
- marcel1691
- Date:
- 2015-03-23
- Revision:
- 12:e04008977007
- Parent:
- 0:9e4bcb10b3e3
File content as of revision 12:e04008977007:
#ifndef FORMATTER #define FORMATTER class Formatter { public : Formatter(int nbChunk = 1); char* get_page(char *reply); protected : virtual void get_chunk(const int c, char *reply); private : int currentChunk; int nbChunk; }; class SimpleHTMLFormatter : public Formatter { public : SimpleHTMLFormatter(); protected : virtual void get_chunk(const int c, char *reply); }; class InteractiveHTMLFormatter : public Formatter { public : InteractiveHTMLFormatter(); protected : virtual void get_chunk(const int c, char *reply); }; #endif