summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-07-12 00:08:53 +0000
committerkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-07-12 00:08:53 +0000
commit60fde16c4cc01547d96706f6c395ef339329134d (patch)
tree7414f2f472bb6e636cbed39f35056ea964d050fd
parent84cc3087bc5f495c91a65144bacf71010e776cc7 (diff)
downloadATCD-60fde16c4cc01547d96706f6c395ef339329134d.tar.gz
declared the TAO specific _received_exception and _sending_exception
methods
-rw-r--r--TAO/tao/PortableInterceptorC.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/TAO/tao/PortableInterceptorC.h b/TAO/tao/PortableInterceptorC.h
index 0bad4f4eb8b..cf23ba672f6 100644
--- a/TAO/tao/PortableInterceptorC.h
+++ b/TAO/tao/PortableInterceptorC.h
@@ -1029,6 +1029,17 @@ public:
CORBA::SystemException
));
+ // = TAO specific,has been added because there is no extraction
+ // operator for getting an exception out of an Any. Seems more like a
+ // bug in the spec.
+ virtual CORBA::Exception * _received_exception (
+ CORBA::Environment &ACE_TRY_ENV =
+ TAO_default_environment ()
+ )
+ ACE_THROW_SPEC ((
+ CORBA::SystemException
+ ));
+
virtual char * received_exception_id (
CORBA::Environment &ACE_TRY_ENV =
TAO_default_environment ()
@@ -1198,6 +1209,17 @@ public:
CORBA::SystemException
));
+ // = TAO specific,has been added because there is no extraction
+ // operator for getting an exception out of an Any. Seems more like a
+ // bug in the spec.
+ virtual CORBA::Exception * _sending_exception (
+ CORBA::Environment &ACE_TRY_ENV =
+ TAO_default_environment ()
+ )
+ ACE_THROW_SPEC ((
+ CORBA::SystemException
+ ));
+
virtual PortableInterceptor::OctetSeq * object_id (
CORBA::Environment &ACE_TRY_ENV =
TAO_default_environment ()