summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Bug_2247_Regression/Manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/Bug_2247_Regression/Manager.h')
-rw-r--r--TAO/orbsvcs/tests/Bug_2247_Regression/Manager.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/orbsvcs/tests/Bug_2247_Regression/Manager.h b/TAO/orbsvcs/tests/Bug_2247_Regression/Manager.h
index faf7974845d..74eb1df0b67 100644
--- a/TAO/orbsvcs/tests/Bug_2247_Regression/Manager.h
+++ b/TAO/orbsvcs/tests/Bug_2247_Regression/Manager.h
@@ -13,7 +13,7 @@
class Manager
{
public:
- Manager (void);
+ Manager ();
// Ctor
void init (int argc,
@@ -21,19 +21,19 @@ public:
// Initialize the ORB, POA etc.
- int make_merged_iors (void);
+ int make_merged_iors ();
// Merges the different IORS
- int set_properties (void);
+ int set_properties ();
// Sets the properties for the profiles
- int run (void);
+ int run ();
// Run the ORB event loop..
- int write_to_file (void);
+ int write_to_file ();
// Write the merged IOR to a file
- CORBA::ORB_ptr orb (void);
+ CORBA::ORB_ptr orb ();
// Return the pointer to the copy of our ORB
private:
CORBA::ORB_var orb_;