Webserver for peach-board

Revision:
1:f1f734dd23ee
Parent:
0:6ec14f880a00
--- a/Formatter.h	Wed Mar 04 02:16:31 2015 +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
-