#include <IOR_Parser.h>
Inheritance diagram for TAO_IOR_Parser:
Public Member Functions | |
virtual | ~TAO_IOR_Parser (void) |
The destructor. | |
virtual bool | match_prefix (const char *ior_string) const=0 |
virtual CORBA::Object_ptr | parse_string (const char *ior, CORBA::ORB_ptr orb)=0 |
The ORB is able to dynamically load the list of IOR formats it understands. That allow us to integrate formats such as corbaname:, http: or ftp: only when required. This class provides a uniform interface for all the IOR parsers
Definition at line 48 of file IOR_Parser.h.
|
The destructor.
Definition at line 10 of file IOR_Parser.cpp.
00011 { 00012 } |
|
Return true if ior_string starts with a prefix known to this IOR parser Implemented in TAO_CORBALOC_Parser, TAO_CORBANAME_Parser, TAO_DLL_Parser, TAO_FILE_Parser, TAO_HTTP_Parser, and TAO_MCAST_Parser. |
|
Parse the ior argument and return an object reference. The call may raise the standard system exceptions (NO_MEMORY, INV_OBJREF, etc.) Implemented in TAO_CORBALOC_Parser, TAO_CORBANAME_Parser, TAO_DLL_Parser, TAO_FILE_Parser, TAO_HTTP_Parser, and TAO_MCAST_Parser. Referenced by CORBA::ORB::string_to_object(). |