Delta / Mbed 2 deprecated NNN40_APmodeToSTAmodeByHTTPServer

Dependencies:   WIFI_API_32kRAM mbed

Revision:
12:eca9b56155c7
Parent:
0:9e4bcb10b3e3
--- a/Formatter.h	Wed Sep 16 02:43:42 2015 +0000
+++ b/Formatter.h	Wed Sep 23 03:08:49 2015 +0000
@@ -4,45 +4,56 @@
 
 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;
+public :
+
+    Formatter(int nbChunk = 3);
+
+    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);
+{
+public :
+
+    SimpleHTMLFormatter();
+
+protected :
+
+    virtual void get_chunk(const int c, char *reply);
 
 };
 
 class InteractiveHTMLFormatter : public Formatter
 {
-    public :
-    
-        InteractiveHTMLFormatter();
+public :
+
+    InteractiveHTMLFormatter();
 
-    protected :
-        
-        virtual void get_chunk(const int c, char *reply);
+protected :
+
+    virtual void get_chunk(const int c, char *reply);
+
 };
 
+class DeltaWifiSettingHTMLFormatter : public Formatter
+{
 
-#endif
+public :
+
+    DeltaWifiSettingHTMLFormatter();    
 
+protected :
+
+    virtual void get_chunk(const int c, char *reply);
+};
+
+#endif
\ No newline at end of file