ported HTTP-Server with W5500 Ethernet Shield

Dependencies:   W5500Interface mbed-rpc mbed

Fork of HTTP-Server by Francois Berder

Revision:
4:624527ebc0fa
Parent:
3:fb0a778f2480
Child:
5:8ab27ca793cd
--- a/Formatter.h	Wed Jul 17 11:07:06 2013 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,48 +0,0 @@
-#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
-