summaryrefslogtreecommitdiff
path: root/TAO/examples/Event_Comm/Notifier_Server.cpp
diff options
context:
space:
mode:
authorpradeep <pradeep@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-23 20:40:26 +0000
committerpradeep <pradeep@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-23 20:40:26 +0000
commit9aed515bf9628e916b3d7ab2f1d10aa2cbb6c2ad (patch)
tree409e220f59bd9a046fe87ebef7169755d83f3d70 /TAO/examples/Event_Comm/Notifier_Server.cpp
parent911605b00b1c9d4374f97f2705f72cc2b59099c4 (diff)
downloadATCD-9aed515bf9628e916b3d7ab2f1d10aa2cbb6c2ad.tar.gz
*** empty log message ***
Diffstat (limited to 'TAO/examples/Event_Comm/Notifier_Server.cpp')
-rw-r--r--TAO/examples/Event_Comm/Notifier_Server.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/TAO/examples/Event_Comm/Notifier_Server.cpp b/TAO/examples/Event_Comm/Notifier_Server.cpp
index a5269e6c3a6..57b765540c9 100644
--- a/TAO/examples/Event_Comm/Notifier_Server.cpp
+++ b/TAO/examples/Event_Comm/Notifier_Server.cpp
@@ -3,12 +3,14 @@
ACE_RCSID(Echo, Server_i, "$Id$")
// Constructor.
+
Notifier_Server::Notifier_Server (void)
{
// no-op.
}
// Destructor.
+
Notifier_Server::~Notifier_Server (void)
{
// no-op.
@@ -22,7 +24,8 @@ Notifier_Server::close (void)
// Name the object.
CosNaming::Name notifier_obj_name (1);
notifier_obj_name.length (1);
- notifier_obj_name[0].id = CORBA::string_dup (NOTIFIER_BIND_NAME);
+ notifier_obj_name[0].id =
+ CORBA::string_dup (NOTIFIER_BIND_NAME);
this->naming_server_->unbind (notifier_obj_name,
TAO_TRY_ENV);
@@ -131,7 +134,8 @@ Notifier_Server::run (CORBA::Environment &TAO_TRY_ENV)
return 0;
}
-ACE_Reactor* Notifier_Server::reactor(void)
+ACE_Reactor *
+Notifier_Server::reactor (void)
{
return TAO_ORB_Core_instance ()->reactor ();
}