2 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
5 TAO_Service_Context::TAO_Service_Context ()
10 ACE_INLINE IOP::ServiceContextList &
11 TAO_Service_Context::service_info ()
13 return this->service_context_;
16 ACE_INLINE const IOP::ServiceContextList &
17 TAO_Service_Context::service_info () const
19 return this->service_context_;
23 TAO_Service_Context::set_context (IOP::ServiceId id, TAO_OutputCDR &cdr)
25 this->set_context_i (id, cdr);
29 TAO_Service_Context::set_context (IOP::ServiceContext &context,
32 this->set_context_i (context, cdr);
36 TAO_Service_Context::is_service_id (IOP::ServiceId id)
38 for (CORBA::ULong i = 0;
39 i != this->service_context_.length ();
42 if (id == this->service_context_[i].context_id)
51 TAO_Service_Context::set_context (IOP::ServiceContext &context)
53 this->add_context_i (context);
56 TAO_END_VERSIONED_NAMESPACE_DECL