student test for professor

Dependencies:   EthernetInterface mbed-rpc mbed-rtos mbed

Fork of HTTP-Server by Francois Berder

Formatter.h

Committer:
pricegc2
Date:
2014-10-14
Revision:
11:8d63f2e3d152
Parent:
0:9e4bcb10b3e3

File content as of revision 11:8d63f2e3d152:

#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