RPC mbed Server (basierend auf HTTP Protokoll) mit UI via Browser

Dependencies:   EthernetInterface mbed-rpc mbed-rtos mbed

Fork of IoTKit_RPC-Server by mc-b

RPCType.h

Committer:
marcel1691
Date:
2015-01-15
Revision:
11:cfb3bf29211f
Parent:
0:9e4bcb10b3e3

File content as of revision 11:cfb3bf29211f:

#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