diff options
author | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-03-03 02:53:24 +0000 |
---|---|---|
committer | parsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-03-03 02:53:24 +0000 |
commit | ff34af5955da2f5f1e4f6a4da98cfc225a7cfb6d (patch) | |
tree | 99845646045df09a6b2d256e2290ef91fa194b44 /TAO/tao/IOPC.h | |
parent | 9429f14f616468c6c854089cece8485b68a9d24a (diff) | |
download | ATCD-ff34af5955da2f5f1e4f6a4da98cfc225a7cfb6d.tar.gz |
Replaced Any operators.
Diffstat (limited to 'TAO/tao/IOPC.h')
-rw-r--r-- | TAO/tao/IOPC.h | 66 |
1 files changed, 48 insertions, 18 deletions
diff --git a/TAO/tao/IOPC.h b/TAO/tao/IOPC.h index a5512933cac..286278acd76 100644 --- a/TAO/tao/IOPC.h +++ b/TAO/tao/IOPC.h @@ -574,24 +574,54 @@ TAO_NAMESPACE IOP } TAO_NAMESPACE_CLOSE // module IOP -TAO_Export void operator<<= (CORBA::Any &, const IOP::TaggedProfile &); // copying version -TAO_Export void operator<<= (CORBA::Any &, IOP::TaggedProfile*); // noncopying version -TAO_Export CORBA::Boolean operator>>= (const CORBA::Any &, IOP::TaggedProfile *&); -TAO_Export void operator<<= (CORBA::Any &, const IOP::IOR &); // copying version -TAO_Export void operator<<= (CORBA::Any &, IOP::IOR*); // noncopying version -TAO_Export CORBA::Boolean operator>>= (const CORBA::Any &, IOP::IOR *&); -TAO_Export void operator<<= (CORBA::Any &, const IOP::TaggedComponent &); // copying version -TAO_Export void operator<<= (CORBA::Any &, IOP::TaggedComponent*); // noncopying version -TAO_Export CORBA::Boolean operator>>= (const CORBA::Any &, IOP::TaggedComponent *&); -TAO_Export void operator<<= (CORBA::Any &, const IOP::MultipleComponentProfile &); // copying version -TAO_Export void operator<<= (CORBA::Any &, IOP::MultipleComponentProfile*); // noncopying version -TAO_Export CORBA::Boolean operator>>= (const CORBA::Any &, IOP::MultipleComponentProfile *&); -TAO_Export void operator<<= (CORBA::Any &, const IOP::ServiceContext &); // copying version -TAO_Export void operator<<= (CORBA::Any &, IOP::ServiceContext*); // noncopying version -TAO_Export CORBA::Boolean operator>>= (const CORBA::Any &, IOP::ServiceContext *&); -TAO_Export void operator<<= (CORBA::Any &, const IOP::ServiceContextList &); // copying version -TAO_Export void operator<<= (CORBA::Any &, IOP::ServiceContextList*); // noncopying version -TAO_Export CORBA::Boolean operator>>= (const CORBA::Any &, IOP::ServiceContextList *&); +TAO_Export void operator<<= (CORBA::Any &, + const IOP::TaggedProfile &); // copying version +TAO_Export void operator<<= (CORBA::Any &, + IOP::TaggedProfile*); // noncopying version +TAO_Export CORBA::Boolean operator>>= (const CORBA::Any &, + IOP::TaggedProfile *&); // deprecated +TAO_Export CORBA::Boolean operator>>= (const CORBA::Any &, + const IOP::TaggedProfile *&); +TAO_Export void operator<<= (CORBA::Any &, + const IOP::IOR &); // copying version +TAO_Export void operator<<= (CORBA::Any &, + IOP::IOR*); // noncopying version +TAO_Export CORBA::Boolean operator>>= (const CORBA::Any &, + IOP::IOR *&); // deprecated +TAO_Export CORBA::Boolean operator>>= (const CORBA::Any &, + const IOP::IOR *&); +TAO_Export void operator<<= (CORBA::Any &, + const IOP::TaggedComponent &); // copying version +TAO_Export void operator<<= (CORBA::Any &, + IOP::TaggedComponent*); // noncopying version +TAO_Export CORBA::Boolean operator>>= (const CORBA::Any &, + IOP::TaggedComponent *&); // deprecated +TAO_Export CORBA::Boolean operator>>= (const CORBA::Any &, + const IOP::TaggedComponent *&); +TAO_Export void operator<<= (CORBA::Any &, + const IOP::MultipleComponentProfile &); // copying version +TAO_Export void operator<<= (CORBA::Any &, + IOP::MultipleComponentProfile*); // noncopying version +TAO_Export CORBA::Boolean operator>>= (const CORBA::Any &, + IOP::MultipleComponentProfile *&); // deprecated +TAO_Export CORBA::Boolean operator>>= (const CORBA::Any &, + const IOP::MultipleComponentProfile *&); +TAO_Export void operator<<= (CORBA::Any &, + const IOP::ServiceContext &); // copying version +TAO_Export void operator<<= (CORBA::Any &, + IOP::ServiceContext*); // noncopying version +TAO_Export CORBA::Boolean operator>>= (const CORBA::Any &, + IOP::ServiceContext *&); // deprecated +TAO_Export CORBA::Boolean operator>>= (const CORBA::Any &, + const IOP::ServiceContext *&); +TAO_Export void operator<<= (CORBA::Any &, + const IOP::ServiceContextList &); // copying version +TAO_Export void operator<<= (CORBA::Any &, + IOP::ServiceContextList*); // noncopying version +TAO_Export CORBA::Boolean operator>>= (const CORBA::Any &, + IOP::ServiceContextList *&); // deprecated +TAO_Export CORBA::Boolean operator>>= (const CORBA::Any &, + const IOP::ServiceContextList *&); #ifndef __ACE_INLINE__ |