Webserver for peach-board

RPCType.h

Committer:
thudt90
Date:
2015-03-12
Revision:
1:f1f734dd23ee
Parent:
0:6ec14f880a00

File content as of revision 1:f1f734dd23ee:

#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