summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/LifeCycle_Service/LifeCycle_Service.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/LifeCycle_Service/LifeCycle_Service.h')
-rw-r--r--TAO/orbsvcs/LifeCycle_Service/LifeCycle_Service.h11
1 files changed, 3 insertions, 8 deletions
diff --git a/TAO/orbsvcs/LifeCycle_Service/LifeCycle_Service.h b/TAO/orbsvcs/LifeCycle_Service/LifeCycle_Service.h
index 80efaaf5bd3..636b1d99d03 100644
--- a/TAO/orbsvcs/LifeCycle_Service/LifeCycle_Service.h
+++ b/TAO/orbsvcs/LifeCycle_Service/LifeCycle_Service.h
@@ -38,14 +38,15 @@ public:
// Destructor
int init (int argc,
- char *argv[]
+ ACE_TCHAR *argv[]
ACE_ENV_ARG_DECL);
// Initialize the Server state - parsing arguments and ...
int run (ACE_ENV_SINGLE_ARG_DECL);
// Run the orb.
- u_int parse_args (void);
+ u_int parse_args (int argc,
+ ACE_TCHAR* argv[]);
// Parse the passed parameters.
private:
@@ -58,12 +59,6 @@ private:
CosNaming::NamingContext_var namingContext_var_;
// reference to the naming service
- int argc_;
- // Number of commandline arguments.
-
- char **argv_;
- // commandline arguments.
-
int debug_level_;
// debug level (0 = quiet, 1 = default, informative, 2+ = noisy);
};