Modified to run on Renesas GR Peach board

Dependents:   GR-PeachAHRSWeb

Fork of HTTP-Server by Francois Berder

RPCType.h

Committer:
feb11
Date:
2013-07-17
Revision:
0:9e4bcb10b3e3

File content as of revision 0:9e4bcb10b3e3:

#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