summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/InterfaceRepo/Application_Test/ifr_dii_client.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/InterfaceRepo/Application_Test/ifr_dii_client.h')
-rw-r--r--TAO/orbsvcs/tests/InterfaceRepo/Application_Test/ifr_dii_client.h17
1 files changed, 8 insertions, 9 deletions
diff --git a/TAO/orbsvcs/tests/InterfaceRepo/Application_Test/ifr_dii_client.h b/TAO/orbsvcs/tests/InterfaceRepo/Application_Test/ifr_dii_client.h
index a362e0053cc..d236e868046 100644
--- a/TAO/orbsvcs/tests/InterfaceRepo/Application_Test/ifr_dii_client.h
+++ b/TAO/orbsvcs/tests/InterfaceRepo/Application_Test/ifr_dii_client.h
@@ -19,11 +19,10 @@ public:
~IFR_DII_Client (void);
int init (int argc,
- char *argv[]
- ACE_ENV_ARG_DECL);
+ char *argv[]);
// Initialize the client.
- int run (ACE_ENV_SINGLE_ARG_DECL);
+ int run (void);
// Run the client.
private:
@@ -31,20 +30,20 @@ private:
char *argv[]);
// Process the command line arguments.
- int find_interface_def (ACE_ENV_SINGLE_ARG_DECL);
+ int find_interface_def (void);
// Query the object reference to get its InterfaceDef in the IFR.
- int lookup_interface_def (ACE_ENV_SINGLE_ARG_DECL);
+ int lookup_interface_def (void);
// Look up the InterfaceDef by name in the IFR.
- void get_operation_def (ACE_ENV_SINGLE_ARG_DECL);
+ void get_operation_def (void);
// Find the desired operation in the interface definition.
- void create_dii_request (ACE_ENV_SINGLE_ARG_DECL);
+ void create_dii_request (void);
// Query the interface definition to get the info needed
// to construct a CORBA::Request.
- void invoke_and_display (ACE_ENV_SINGLE_ARG_DECL);
+ void invoke_and_display (void);
// Do the invocation and display the results.
CORBA::ORB_var orb_;
@@ -77,7 +76,7 @@ private:
// Are we looking up info on the target object by querying the
// IFR directly with the target's name, or indirectly
// by calling _get_interface() on the target object?
-
+
bool debug_;
// Display results and debugging info?
};