summaryrefslogtreecommitdiff
path: root/TAO/examples/OBV/Typed_Events/Event_Types_impl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/OBV/Typed_Events/Event_Types_impl.cpp')
-rw-r--r--TAO/examples/OBV/Typed_Events/Event_Types_impl.cpp70
1 files changed, 35 insertions, 35 deletions
diff --git a/TAO/examples/OBV/Typed_Events/Event_Types_impl.cpp b/TAO/examples/OBV/Typed_Events/Event_Types_impl.cpp
index 7ce46031ad8..a52f9f7530a 100644
--- a/TAO/examples/OBV/Typed_Events/Event_Types_impl.cpp
+++ b/TAO/examples/OBV/Typed_Events/Event_Types_impl.cpp
@@ -17,7 +17,7 @@ Event_impl::~Event_impl ()
}
::CORBA::ValueBase *
-Event_impl::_copy_value (void)
+Event_impl::_copy_value ()
{
::CORBA::ValueBase *ret_val= 0;
// Not implimented
@@ -25,7 +25,7 @@ Event_impl::_copy_value (void)
}
void
-Event_impl::do_print (void)
+Event_impl::do_print ()
{
ACE_DEBUG((LM_DEBUG, "(time %d origin %d) ",
(CORBA::ULong) this->time_(),
@@ -38,7 +38,7 @@ Event_factory::~Event_factory ()
}
TAO_OBV_CREATE_RETURN_TYPE (Event)
-Event_factory::create_for_unmarshal (void)
+Event_factory::create_for_unmarshal ()
{
return new Event_impl;
}
@@ -60,7 +60,7 @@ Temperature_impl::~Temperature_impl ()
}
::CORBA::ValueBase *
-Temperature_impl::_copy_value (void)
+Temperature_impl::_copy_value ()
{
::CORBA::ValueBase *ret_val= 0;
// Not implimented
@@ -68,7 +68,7 @@ Temperature_impl::_copy_value (void)
}
void
-Temperature_impl::do_print (void)
+Temperature_impl::do_print ()
{
// The timestamp
Event_impl::do_print ();
@@ -81,7 +81,7 @@ Temperature_factory::~Temperature_factory ()
}
TAO_OBV_CREATE_RETURN_TYPE (Temperature)
-Temperature_factory::create_for_unmarshal (void)
+Temperature_factory::create_for_unmarshal ()
{
return new Temperature_impl;
}
@@ -103,7 +103,7 @@ Position_impl::~Position_impl ()
}
::CORBA::ValueBase *
-Position_impl::_copy_value (void)
+Position_impl::_copy_value ()
{
::CORBA::ValueBase *ret_val= 0;
// Not implimented
@@ -111,7 +111,7 @@ Position_impl::_copy_value (void)
}
void
-Position_impl::do_print (void)
+Position_impl::do_print ()
{
// The timestamp
Event_impl::do_print ();
@@ -126,7 +126,7 @@ Position_impl::do_print (void)
x, y, z));
}
-CORBA::Float Position_impl::x (void)
+CORBA::Float Position_impl::x ()
{
return this->xyz()[0];
}
@@ -136,7 +136,7 @@ void Position_impl::x (CORBA::Float x)
this->xyz()[0] = x;
}
-CORBA::Float Position_impl::y (void)
+CORBA::Float Position_impl::y ()
{
return this->xyz()[1];
}
@@ -146,7 +146,7 @@ void Position_impl::y (CORBA::Float y)
this->xyz()[1] = y;
}
-CORBA::Float Position_impl::z (void)
+CORBA::Float Position_impl::z ()
{
return this->xyz()[2];
}
@@ -161,7 +161,7 @@ Position_factory::~Position_factory ()
}
TAO_OBV_CREATE_RETURN_TYPE (Position)
-Position_factory::create_for_unmarshal (void)
+Position_factory::create_for_unmarshal ()
{
return new Position_impl;
}
@@ -183,7 +183,7 @@ Log_Msg_impl::~Log_Msg_impl ()
}
::CORBA::ValueBase *
-Log_Msg_impl::_copy_value (void)
+Log_Msg_impl::_copy_value ()
{
::CORBA::ValueBase *ret_val= 0;
// Not implimented
@@ -191,7 +191,7 @@ Log_Msg_impl::_copy_value (void)
}
void
-Log_Msg_impl::do_print (void)
+Log_Msg_impl::do_print ()
{
// The timestamp
Event_impl::do_print ();
@@ -211,7 +211,7 @@ Log_Msg_factory::~Log_Msg_factory ()
}
TAO_OBV_CREATE_RETURN_TYPE (Log_Msg)
-Log_Msg_factory::create_for_unmarshal (void)
+Log_Msg_factory::create_for_unmarshal ()
{
return new Log_Msg_impl;
}
@@ -240,7 +240,7 @@ Event_List_Link_impl::~Event_List_Link_impl ()
}
::CORBA::ValueBase *
-Event_List_Link_impl::_copy_value (void)
+Event_List_Link_impl::_copy_value ()
{
::CORBA::ValueBase *ret_val= 0;
// Not implimented
@@ -248,13 +248,13 @@ Event_List_Link_impl::_copy_value (void)
}
Event*
-Event_List_Link_impl::get_event (void)
+Event_List_Link_impl::get_event ()
{
return this->my_event ();
}
Event_List_Link*
-Event_List_Link_impl::get_next_link (void)
+Event_List_Link_impl::get_next_link ()
{
return this->next ();
}
@@ -270,26 +270,26 @@ Event_List_Link_factory::~Event_List_Link_factory ()
}
TAO_OBV_CREATE_RETURN_TYPE (Event_List_Link)
-Event_List_Link_factory::create_for_unmarshal (void)
+Event_List_Link_factory::create_for_unmarshal ()
{
return new Event_List_Link_impl;
}
// Event_List implementation ===================================
-Event_List_impl::Event_List_impl (void)
+Event_List_impl::Event_List_impl ()
{
this->first_link (0);
this->last_link_cache_ = 0;
}
-Event_List_impl::~Event_List_impl (void)
+Event_List_impl::~Event_List_impl ()
{
// Destructor does nothing explicit, because the _var types do care.
}
::CORBA::ValueBase *
-Event_List_impl::_copy_value (void)
+Event_List_impl::_copy_value ()
{
::CORBA::ValueBase *ret_val= 0;
// Not implimented
@@ -337,12 +337,12 @@ Event_List_impl::store_event (Event* e)
}
}
-Event_List_factory::~Event_List_factory (void)
+Event_List_factory::~Event_List_factory ()
{
}
TAO_OBV_CREATE_RETURN_TYPE (Event_List)
-Event_List_factory::create_for_unmarshal (void)
+Event_List_factory::create_for_unmarshal ()
{
return new Event_List_impl;
}
@@ -352,12 +352,12 @@ Event_List_Iterator::Event_List_Iterator (Event_List *list)
this->init (list);
}
-Event_List_Iterator::Event_List_Iterator (void)
+Event_List_Iterator::Event_List_Iterator ()
{
// current_ is a _var and set itself to null.
}
-Event_List_Iterator::~Event_List_Iterator (void)
+Event_List_Iterator::~Event_List_Iterator ()
{
// nothing
}
@@ -428,7 +428,7 @@ Temperature_Criterion_impl::~Temperature_Criterion_impl ()
}
::CORBA::ValueBase *
-Temperature_Criterion_impl::_copy_value (void)
+Temperature_Criterion_impl::_copy_value ()
{
::CORBA::ValueBase *ret_val= 0;
// Not implimented
@@ -452,7 +452,7 @@ Temperature_Criterion_impl::is_critical (Event* e)
}
void
-Temperature_Criterion_impl::do_print (void)
+Temperature_Criterion_impl::do_print ()
{
ACE_DEBUG((LM_DEBUG, "Alarm boundary for events with origin id %d is\n",
this->origin_id_ () ));
@@ -464,7 +464,7 @@ Temperature_Criterion_factory::~Temperature_Criterion_factory ()
}
TAO_OBV_CREATE_RETURN_TYPE (Temperature_Criterion)
-Temperature_Criterion_factory::create_for_unmarshal (void)
+Temperature_Criterion_factory::create_for_unmarshal ()
{
return new Temperature_Criterion_impl;
}
@@ -487,7 +487,7 @@ Position_Criterion_impl::~Position_Criterion_impl ()
}
::CORBA::ValueBase *
-Position_Criterion_impl::_copy_value (void)
+Position_Criterion_impl::_copy_value ()
{
::CORBA::ValueBase *ret_val= 0;
// Not implimented
@@ -529,7 +529,7 @@ Position_Criterion_factory::~Position_Criterion_factory ()
}
TAO_OBV_CREATE_RETURN_TYPE (Position_Criterion)
-Position_Criterion_factory::create_for_unmarshal (void)
+Position_Criterion_factory::create_for_unmarshal ()
{
return new Position_Criterion_impl;
}
@@ -543,7 +543,7 @@ Log_Msg_Criterion_impl::~Log_Msg_Criterion_impl ()
}
::CORBA::ValueBase *
-Log_Msg_Criterion_impl::_copy_value (void)
+Log_Msg_Criterion_impl::_copy_value ()
{
::CORBA::ValueBase *ret_val= 0;
// Not implimented
@@ -564,7 +564,7 @@ Log_Msg_Criterion_impl::is_critical (Event* e)
}
void
-Log_Msg_Criterion_impl::do_print (void)
+Log_Msg_Criterion_impl::do_print ()
{
ACE_DEBUG((LM_DEBUG,
"All log messages with urgency greater zero are registered.\n" ));
@@ -575,7 +575,7 @@ Log_Msg_Criterion_factory::~Log_Msg_Criterion_factory ()
}
TAO_OBV_CREATE_RETURN_TYPE (Log_Msg_Criterion)
-Log_Msg_Criterion_factory::create_for_unmarshal (void)
+Log_Msg_Criterion_factory::create_for_unmarshal ()
{
return new Log_Msg_Criterion_impl;
}
@@ -596,7 +596,7 @@ Criterion_List_impl::~Criterion_List_impl ()
}
::CORBA::ValueBase *
-Criterion_List_impl::_copy_value (void)
+Criterion_List_impl::_copy_value ()
{
::CORBA::ValueBase *ret_val= 0;
// Not implimented