TX1 node

Revision:
21:6c1c766b8988
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/RPCType.h	Sat Aug 20 23:09:11 2016 +0000
@@ -0,0 +1,23 @@
+#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
+