Modified to run on Renesas GR Peach board

Dependents:   GR-PeachAHRSWeb

Fork of HTTP-Server by Francois Berder

RPCType.h

Committer:
webOnBoard
Date:
2015-10-07
Revision:
11:d03f12a19999
Parent:
0:9e4bcb10b3e3

File content as of revision 11:d03f12a19999:

#ifndef RPCTYPE_H
#define RPCTYPE_H

#include <list>

class RPCType
{
    public :
        
        static RPCType& instance();
        
        void register_types();
        
        bool is_supported_type(char *type);
        
    private :

        RPCType();
        std::list<char*> supported_types;
};

#endif