summaryrefslogtreecommitdiff
path: root/TAO/tao/Messaging/MessagingC.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2006-04-19 09:45:01 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2006-04-19 09:45:01 +0000
commitffb3a0eb1b420b865cdb0ca3330790327eda5c50 (patch)
tree95a7bfd2ae5dbe44cfe36766ed6f76097489cf4c /TAO/tao/Messaging/MessagingC.cpp
parentc760501c5e5f95aae57d479dbe7000c77e45776c (diff)
downloadATCD-ffb3a0eb1b420b865cdb0ca3330790327eda5c50.tar.gz
ChangeLogTag: Wed Apr 19 07:44:49 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/Messaging/MessagingC.cpp')
-rw-r--r--TAO/tao/Messaging/MessagingC.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/TAO/tao/Messaging/MessagingC.cpp b/TAO/tao/Messaging/MessagingC.cpp
index e8c429787c5..a6db499d6e0 100644
--- a/TAO/tao/Messaging/MessagingC.cpp
+++ b/TAO/tao/Messaging/MessagingC.cpp
@@ -67,7 +67,7 @@ TAO::Objref_Traits<Messaging::ReplyHandler>::release (
Messaging::ReplyHandler_ptr p
)
{
- CORBA::release (p);
+ ::CORBA::release (p);
}
Messaging::ReplyHandler_ptr
@@ -86,7 +86,7 @@ TAO::Objref_Traits<Messaging::ReplyHandler>::marshal (
}
// Function pointer for collocation factory initialization.
-TAO::Collocation_Proxy_Broker *
+TAO::Collocation_Proxy_Broker *
(*Messaging__TAO_ReplyHandler_Proxy_Broker_Factory_function_pointer) (
::CORBA::Object_ptr obj
) = 0;
@@ -110,12 +110,12 @@ Messaging::ReplyHandler::Messaging_ReplyHandler_setup_collocation ()
Messaging::ReplyHandler::~ReplyHandler (void)
{}
-void
+void
Messaging::ReplyHandler::_tao_any_destructor (void *_tao_void_pointer)
{
ReplyHandler *_tao_tmp_pointer =
static_cast<ReplyHandler *> (_tao_void_pointer);
- CORBA::release (_tao_tmp_pointer);
+ ::CORBA::release (_tao_tmp_pointer);
}
Messaging::ReplyHandler_ptr
@@ -151,18 +151,18 @@ Messaging::ReplyHandler::_unchecked_narrow (
Messaging::ReplyHandler_ptr
Messaging::ReplyHandler::_duplicate (ReplyHandler_ptr obj)
{
- if (! CORBA::is_nil (obj))
+ if (! ::CORBA::is_nil (obj))
{
obj->_add_ref ();
}
-
+
return obj;
}
void
Messaging::ReplyHandler::_tao_release (ReplyHandler_ptr obj)
{
- CORBA::release (obj);
+ ::CORBA::release (obj);
}
::CORBA::Boolean
@@ -186,7 +186,7 @@ Messaging::ReplyHandler::_is_a (
}
else
{
- return this->ACE_NESTED_CLASS ( ::CORBA, Object)::_is_a (
+ return this->::CORBA::Object::_is_a (
value
ACE_ENV_ARG_PARAMETER
);
@@ -222,21 +222,21 @@ Messaging::ReplyHandler::marshal (TAO_OutputCDR &cdr)
)
{
::CORBA::Object_var obj;
-
+
if (!(strm >> obj.inout ()))
{
return false;
}
-
+
typedef ::Messaging::ReplyHandler RHS_SCOPED_NAME;
-
+
// Narrow to the right type.
_tao_objref =
TAO::Narrow_Utils<RHS_SCOPED_NAME>::unchecked_narrow (
obj.in (),
Messaging__TAO_ReplyHandler_Proxy_Broker_Factory_function_pointer
);
-
+
return 1;
}