Added NUCLEO-F103RB support

Dependents:   F103-Web-Server

Fork of mbed-rpc by Mbed

RPCType.h

Committer:
olympux
Date:
2016-08-20
Revision:
21:6c1c766b8988

File content as of revision 21:6c1c766b8988:

#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