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.h69
1 files changed, 0 insertions, 69 deletions
diff --git a/TAO/orbsvcs/LifeCycle_Service/LifeCycle_Service.h b/TAO/orbsvcs/LifeCycle_Service/LifeCycle_Service.h
deleted file mode 100644
index 8691ee6547d..00000000000
--- a/TAO/orbsvcs/LifeCycle_Service/LifeCycle_Service.h
+++ /dev/null
@@ -1,69 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = FILENAME
-// LifeCycle_Service.h
-//
-// = DESCRIPTION
-// A creation service for objects using the CosLifeCycle GenericFactory.
-//
-// = AUTHOR
-// Michael Kircher (mk1@cs.wustl.edu)
-//
-// ============================================================================
-
-#include "ace/Get_Opt.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-# pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "tao/TAO.h"
-#include "LifeCycle_Service_i.h"
-
-#ifndef LIFECYCLE_SERVICE_H
-#define LIFECYCLE_SERVICE_H
-
-class Life_Cycle_Service_Server
-{
- // = TILE
- // Server object for the LifeCycle Service
-
-public:
- Life_Cycle_Service_Server (void);
- // Default constructor
-
- ~Life_Cycle_Service_Server (void);
- // Destructor
-
- int init (int argc,
- char *argv[],
- CORBA::Environment& env);
- // Initialize the Server state - parsing arguments and ...
-
- int run (CORBA::Environment& env);
- // Run the orb.
-
- u_int parse_args (void);
- // Parse the passed parameters.
-
-private:
- TAO_ORB_Manager orb_manager_;
- // instance of the ORB Manager
-
- Life_Cycle_Service_i *life_Cycle_Service_i_ptr_;
- // Instance of the creation service
-
- CosNaming::NamingContext_var namingContext_var_;
- // reference to the naming service
-
- int argc_;
- // Number of commandline arguments.
-
- char **argv_;
- // commandline arguments.
-};
-
-#endif /* LIFECYCLE_SERVICE_H */
-