summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/POA_Current.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-02-11 12:51:42 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-02-11 12:51:42 +0000
commit8448cf1afd4b7667cb1451cf7fac0b864c091681 (patch)
treee7cd895a2fa466e22075c21c31fc83ebc30f476d /TAO/tao/PortableServer/POA_Current.h
parentd7d4b1b0c8cd2333e509eec6cc3cfd0566cbdfd7 (diff)
downloadATCD-8448cf1afd4b7667cb1451cf7fac0b864c091681.tar.gz
Sun Feb 11 12:38:14 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/PortableServer/POA_Current.h')
-rw-r--r--TAO/tao/PortableServer/POA_Current.h16
1 files changed, 4 insertions, 12 deletions
diff --git a/TAO/tao/PortableServer/POA_Current.h b/TAO/tao/PortableServer/POA_Current.h
index 57a97f0e37e..204190abccd 100644
--- a/TAO/tao/PortableServer/POA_Current.h
+++ b/TAO/tao/PortableServer/POA_Current.h
@@ -48,18 +48,14 @@ namespace TAO
* Can raise the @c NoContext exception if this function is
* not invoked in the context of an upcall.
*/
- PortableServer::POA_ptr get_POA (void)
- ACE_THROW_SPEC ((CORBA::SystemException,
- PortableServer::Current::NoContext));
+ PortableServer::POA_ptr get_POA (void);
/**
* Returns the object id of the current request being invoked. Can
* raise the @c NoContext exception if this function is not
* invoked in the context of an upcall.
*/
- PortableServer::ObjectId *get_object_id (void)
- ACE_THROW_SPEC ((CORBA::SystemException,
- PortableServer::Current::NoContext));
+ PortableServer::ObjectId *get_object_id (void);
/**
* This operation returns a locally manufactured reference to the object
@@ -70,18 +66,14 @@ namespace TAO
* Object::is_equivalent operation to compare the two references may not
* necessarily return true.
*/
- CORBA::Object_ptr get_reference (void)
- ACE_THROW_SPEC ((CORBA::SystemException,
- PortableServer::Current::NoContext));
+ CORBA::Object_ptr get_reference (void);
/**
* Returns a reference to the servant that hosts the object in whose
* context it is called. If called outside the context of the POA
* dispatched operation, a NoContext exception is raised
*/
- PortableServer::Servant get_servant (void)
- ACE_THROW_SPEC ((CORBA::SystemException,
- PortableServer::Current::NoContext));
+ PortableServer::Servant get_servant (void);
/// Returns the class that implements this interface.
POA_Current_Impl *implementation (void);