summaryrefslogtreecommitdiff
path: root/TAO/tests/NestedUpcall/Triangle_Test/initiator.h
diff options
context:
space:
mode:
authormk1 <mk1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-06-26 00:49:53 +0000
committermk1 <mk1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-06-26 00:49:53 +0000
commit1ff8f71368c1c59250d751e24e3e6747b2e7ef9f (patch)
tree8c37ba0db91a07734d6d0ed78b3349d15c677812 /TAO/tests/NestedUpcall/Triangle_Test/initiator.h
parent83140cfdd596c33368ce726b29d904e5bf5b6e75 (diff)
downloadATCD-1ff8f71368c1c59250d751e24e3e6747b2e7ef9f.tar.gz
ChangeLog entry: Thu Jun 25 19:35:50 1998 Michael Kircher <mk1@cs.wustl.edu>
Diffstat (limited to 'TAO/tests/NestedUpcall/Triangle_Test/initiator.h')
-rw-r--r--TAO/tests/NestedUpcall/Triangle_Test/initiator.h85
1 files changed, 85 insertions, 0 deletions
diff --git a/TAO/tests/NestedUpcall/Triangle_Test/initiator.h b/TAO/tests/NestedUpcall/Triangle_Test/initiator.h
new file mode 100644
index 00000000000..749571b7fcc
--- /dev/null
+++ b/TAO/tests/NestedUpcall/Triangle_Test/initiator.h
@@ -0,0 +1,85 @@
+// -*- c++ -*-
+// $Id$
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO/tests/NestedUpCalls/Triangle_Test
+//
+// = FILENAME
+// initiator.h
+//
+// = DESCRIPTION
+// This class implements a simple server for the
+// Nested Upcalls - Triangle test
+//
+// = AUTHORS
+// Michael Kircher
+//
+// ============================================================================
+
+#if !defined (_TRIANGLE_TEST_INITITATOR_SERVER_H)
+#define _TRIANGLE_TEST_INITITATOR_SERVER_H
+
+#include "ace/Get_Opt.h"
+#include "ace/Log_Msg.h"
+#include "tao/TAO.h"
+#include "Initiator_Impl.h"
+
+class Initiator_Server
+{
+ // = TITLE
+ // This is the server for the Initiator in the test.
+ //
+ // = DESCRIPTION
+ // See the README file for more information.
+
+public:
+
+ Initiator_Server (void);
+ // Default constructor
+
+ ~Initiator_Server (void);
+ // Destructor
+
+ int read_ior (char *filename, unsigned int A_B);
+ // read in the IOR's for the two objects A and B
+
+ int init (int argc,
+ char **argv,
+ CORBA::Environment& env);
+ // Initialize the Initiator_Server state - parsing arguments and ...
+
+ int run (CORBA::Environment& env);
+ // Run the orb
+
+private:
+ int parse_args (void);
+ // Parses the commandline arguments.
+
+ char * object_A_key_;
+ // The IOR of object A
+
+ char * object_B_key_;
+ // The IOR of object B
+
+ Object_A_var object_A_var_;
+ // reference to object A
+
+ Object_B_var object_B_var_;
+ // reference to object B
+
+ TAO_ORB_Manager orb_manager_;
+ // The ORB manager
+
+ Initiator_Impl *initiator_Impl_ptr_;
+ // Implementation object of the Initiator
+
+ int argc_;
+ // Number of commandline arguments.
+
+ char **argv_;
+ // commandline arguments.
+};
+
+#endif /* _TRIANGLE_TEST_INITITATOR_SERVER_H */