summaryrefslogtreecommitdiff
path: root/CIAO/examples/Hello/Sender/Sender_exec.h
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/examples/Hello/Sender/Sender_exec.h')
-rw-r--r--CIAO/examples/Hello/Sender/Sender_exec.h36
1 files changed, 16 insertions, 20 deletions
diff --git a/CIAO/examples/Hello/Sender/Sender_exec.h b/CIAO/examples/Hello/Sender/Sender_exec.h
index 2be3e033634..23949e7c80d 100644
--- a/CIAO/examples/Hello/Sender/Sender_exec.h
+++ b/CIAO/examples/Hello/Sender/Sender_exec.h
@@ -46,21 +46,19 @@ namespace CIDL_Sender_Impl
virtual ~Sender_exec_i ();
/// Operation to set the value of the attribute "local_message"
- virtual void local_message (const char * local_message
- ACE_ENV_ARG_DECL_WITH_DEFAULTS)
+ virtual void local_message (const char * local_message)
ACE_THROW_SPEC ((CORBA::SystemException));
/// Operation to get the value of the attribute "local_message"
- virtual char * local_message (void)
+ virtual char * local_message ()
ACE_THROW_SPEC ((CORBA::SystemException));
/// Operation to set the value of the attribute "hertz"
- virtual void hertz (CORBA::Long hertz
- ACE_ENV_ARG_DECL_WITH_DEFAULTS)
+ virtual void hertz (CORBA::Long hertz)
ACE_THROW_SPEC ((CORBA::SystemException));
/// Operation to get the value of the attribute "hertz"
- virtual CORBA::Long hertz (void)
+ virtual CORBA::Long hertz ()
ACE_THROW_SPEC ((CORBA::SystemException));
/* Operations for obtaining the interface reference. */
@@ -70,45 +68,43 @@ namespace CIDL_Sender_Impl
*/
// Note: You can specify the return type as ::Hello::CCM_message *
virtual Hello::CCM_ReadMessage_ptr
- get_push_message (void)
+ get_push_message ()
ACE_THROW_SPEC ((CORBA::SystemException));
virtual ::Hello::COLOR_SELECTION
- color (void)
+ color ()
ACE_THROW_SPEC ((CORBA::SystemException));
virtual void
- color (::Hello::COLOR_SELECTION
- ACE_ENV_ARG_DECL_WITH_DEFAULTS)
+ color (::Hello::COLOR_SELECTION)
ACE_THROW_SPEC ((CORBA::SystemException));
// Operation inside of the trigger interface.
- virtual void start (void)
+ virtual void start ()
ACE_THROW_SPEC ((CORBA::SystemException));
// Operations from Components::SessionComponent
- virtual void set_session_context (Components::SessionContext_ptr ctx
- ACE_ENV_ARG_DECL_WITH_DEFAULTS)
+ virtual void set_session_context (Components::SessionContext_ptr ctx)
ACE_THROW_SPEC ((CORBA::SystemException,
Components::CCMException));
- virtual void ciao_preactivate (void)
+ virtual void ciao_preactivate ()
ACE_THROW_SPEC ((CORBA::SystemException,
Components::CCMException));
- virtual void ccm_activate (void)
+ virtual void ccm_activate ()
ACE_THROW_SPEC ((CORBA::SystemException,
Components::CCMException));
- virtual void ciao_postactivate (void)
+ virtual void ciao_postactivate ()
ACE_THROW_SPEC ((CORBA::SystemException,
Components::CCMException));
- virtual void ccm_passivate (void)
+ virtual void ccm_passivate ()
ACE_THROW_SPEC ((CORBA::SystemException,
Components::CCMException));
- virtual void ccm_remove (void)
+ virtual void ccm_remove ()
ACE_THROW_SPEC ((CORBA::SystemException,
Components::CCMException));
@@ -140,7 +136,7 @@ namespace CIDL_Sender_Impl
}
virtual char *
- get_message (void)
+ get_message ()
ACE_THROW_SPEC ((CORBA::SystemException));
private:
@@ -166,7 +162,7 @@ namespace CIDL_Sender_Impl
// Implicit home operations.
virtual ::Components::EnterpriseComponent_ptr
- create (void)
+ create ()
ACE_THROW_SPEC ((CORBA::SystemException,
Components::CCMException));
};