// $Id$ // This may look like C, but it's really -*- C++ -*- // Return the target of this request. ACE_INLINE CORBA::Object_ptr CORBA_Request::target (void) const { return target_; } // Return the operation name for the request. ACE_INLINE const CORBA::Char * CORBA_Request::operation (void) const { return opname_; } // Return the arguments for the request. ACE_INLINE CORBA::NVList_ptr CORBA_Request::arguments (void) { return args_; } // Return the result for the request. ACE_INLINE CORBA::NamedValue_ptr CORBA_Request::result (void) { return result_; } // Return the exceptions resulting from this request. ACE_INLINE CORBA::ExceptionList_ptr CORBA_Request::exceptions (void) { return &exceptions_; } // Return the for this request. ACE_INLINE CORBA::Environment * CORBA_Request::env (void) { return &env_; }