summaryrefslogtreecommitdiff
path: root/TAO/tao/DynamicInterface/Request.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-02-25 11:45:47 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-02-25 11:45:47 +0100
commitab938af466a77a9992d95da9fc832ff50444255f (patch)
treeb63469e57597713738afea9d42ef0e78fcb9d7d4 /TAO/tao/DynamicInterface/Request.h
parent23b2fc3441d82e141e33428fafe094269eb1d392 (diff)
downloadATCD-ab938af466a77a9992d95da9fc832ff50444255f.tar.gz
Use delete, cleanup
* TAO/tao/Acceptor_Registry.h: * TAO/tao/Adapter_Registry.h: * TAO/tao/AnyTypeCode/Fixed_TypeCode.cpp: * TAO/tao/AnyTypeCode/Objref_TypeCode.h: * TAO/tao/AnyTypeCode/Recursive_Type_TypeCode.h: * TAO/tao/AnyTypeCode/Sequence_TypeCode.cpp: * TAO/tao/AnyTypeCode/Sequence_TypeCode_Static.cpp: * TAO/tao/AnyTypeCode/Struct_TypeCode_Static.h: * TAO/tao/AnyTypeCode/TypeCode.inl: * TAO/tao/AnyTypeCode/TypeCode_Case_Base_T.h: * TAO/tao/CORBANAME_Parser.h: * TAO/tao/Cleanup_Func_Registry.h: * TAO/tao/Compression/Compressor_Factory.h: * TAO/tao/Compression/zlib/ZlibCompressor_Factory.h: * TAO/tao/Condition.cpp: * TAO/tao/Condition.h: * TAO/tao/Connect_Strategy.cpp: * TAO/tao/Connect_Strategy.h: * TAO/tao/Connection_Handler.h: * TAO/tao/Connector_Registry.h: * TAO/tao/Connector_Registry.inl: * TAO/tao/DynamicInterface/DII_Reply_Handler.h: * TAO/tao/DynamicInterface/Request.h: * TAO/tao/IIOP_Connector.cpp: * TAO/tao/LocalObject.h: * TAO/tao/Messaging/AMH_Response_Handler.h: * TAO/tao/Object.h: * TAO/tao/ObjectKey_Table.h: * TAO/tao/RTScheduling/Distributable_Thread.cpp: * TAO/tao/RTScheduling/Distributable_Thread.h: * TAO/tao/Transport.h: * TAO/tao/TransportCurrent/Current_ORBInitializer_Base.h: * TAO/tao/Transport_Selection_Guard.h: * TAO/tao/XtResource/XtResource_Factory.cpp: * TAO/tao/default_resource.h:
Diffstat (limited to 'TAO/tao/DynamicInterface/Request.h')
-rw-r--r--TAO/tao/DynamicInterface/Request.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/tao/DynamicInterface/Request.h b/TAO/tao/DynamicInterface/Request.h
index af1b1f07563..b2431504fbf 100644
--- a/TAO/tao/DynamicInterface/Request.h
+++ b/TAO/tao/DynamicInterface/Request.h
@@ -99,11 +99,11 @@ namespace CORBA
* <<=.
*/
//@{
- CORBA::Any &add_in_arg (void);
+ CORBA::Any &add_in_arg ();
CORBA::Any &add_in_arg (const char* name);
- CORBA::Any &add_inout_arg (void);
+ CORBA::Any &add_inout_arg ();
CORBA::Any &add_inout_arg (const char* name);
- CORBA::Any &add_out_arg (void);
+ CORBA::Any &add_out_arg ();
CORBA::Any &add_out_arg (const char* name);
//@}
@@ -111,7 +111,7 @@ namespace CORBA
void set_return_type (CORBA::TypeCode_ptr tc);
/// Returns reference to Any for extraction using >>=.
- CORBA::Any &return_value (void);
+ CORBA::Any &return_value ();
/// Perform method resolution and invoke an appropriate method.
/**
@@ -125,7 +125,7 @@ namespace CORBA
* recommended as the user may not be able to propagate the
* exceptions.
*/
- void invoke (void);
+ void invoke ();
/// Send a oneway request.
/**
@@ -133,7 +133,7 @@ namespace CORBA
* recommended as the user may not be able to propagate the
* exceptions.
*/
- void send_oneway (void);
+ void send_oneway ();
/**
* @name The 'deferred synchronous' methods.
@@ -141,8 +141,8 @@ namespace CORBA
* The 'deferred synchronous' methods.
*/
//@{
- void send_deferred (void);
- void get_response (void);
+ void send_deferred ();
+ void get_response ();
CORBA::Boolean poll_response (void);
//@}