Sensor with Web Server
Dependencies: EthernetInterface mbed-rpc mbed-rtos mbed
Diff: Formatter.h
- Revision:
- 0:c385e589a779
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Formatter.h Tue Apr 08 12:13:32 2014 +0000 @@ -0,0 +1,48 @@ +#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 +