TX1 node

RPCType.h

Committer:
MadhuraT
Date:
2019-06-13
Revision:
22:9cdb46d0668b
Parent:
21:6c1c766b8988

File content as of revision 22:9cdb46d0668b:

#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