summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/ImplRepo/airplane_server_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/ImplRepo/airplane_server_i.h')
-rw-r--r--TAO/orbsvcs/tests/ImplRepo/airplane_server_i.h80
1 files changed, 0 insertions, 80 deletions
diff --git a/TAO/orbsvcs/tests/ImplRepo/airplane_server_i.h b/TAO/orbsvcs/tests/ImplRepo/airplane_server_i.h
deleted file mode 100644
index 351ea8133a2..00000000000
--- a/TAO/orbsvcs/tests/ImplRepo/airplane_server_i.h
+++ /dev/null
@@ -1,80 +0,0 @@
-// -*- C++ -*-
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// TAO/orbsvcs/tests/ImplRepo
-//
-// = FILENAME
-// airplane_server_i.h
-//
-// = DESCRIPTION
-// Server that sets up the ORB and handles the registration and execution
-// of the Paper Airplane Server.
-//
-// = AUTHORS
-// Darrell Brunsch <brunsch@cs.wustl.edu>
-//
-// ============================================================================
-
-#if !defined (AIRPLANE_SERVER_I_H)
-#define AIRPLANE_SERVER_I_H
-
-#include "tao/TAO.h"
-#include "airplane_i.h"
-#include "IR_Helper.h"
-
-class Airplane_Server_i
-{
- // = TITLE
- // Paper Airplane Server Implementation Class
- //
- // = DESCRIPTION
- // Sets up everything necessary to get the Paper Airplane Server
- // running.
- //
-public:
- // = Initialization and termination methods.
- Airplane_Server_i (void);
- // Default constructor
-
- ~Airplane_Server_i (void);
- // Destructor
-
- int init (int argc, char **argv, CORBA::Environment& env);
- // Initialize the Server state - parsing arguments and waiting
-
- int run (CORBA::Environment& env);
- // Run the orb
-
-private:
- int parse_args (void);
- // Parses the commandline arguments.
-
- int argc_;
- // Number of command line arguments.
-
- char **argv_;
- // The command line arguments.
-
- TAO_ORB_Manager orb_manager_;
- // The ORB manager.
-
- Airplane_i *server_impl_;
- // The Paper Airplane Server Implementation.
-
- FILE *ior_output_file_;
- // File where the IOR of the server object is stored.
-
- IR_Helper *ir_helper_;
- // Helper class for using the IR.
-
- int register_with_ir_;
- // Flag for whether or not to register startup with the IR.
-
- int use_ir_;
- // Flag for whether or not to use the IR.
-};
-
-#endif /* AIRPLANE_SERVER_I_H */