TX1 node

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers RPCType.h Source File

RPCType.h

00001 #ifndef RPCTYPE_H
00002 #define RPCTYPE_H
00003 
00004 #include <list>
00005 
00006 class RPCType
00007 {
00008     public :
00009         
00010         static RPCType& instance();
00011         
00012         void register_types();
00013         
00014         bool is_supported_type(char *type);
00015         
00016     private :
00017 
00018         RPCType();
00019         std::list<char*> supported_types;
00020 };
00021 
00022 #endif
00023