summaryrefslogtreecommitdiff
path: root/TAO/tests/NestedUpcall/Triangle_Test/server_B.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/NestedUpcall/Triangle_Test/server_B.h')
-rw-r--r--TAO/tests/NestedUpcall/Triangle_Test/server_B.h77
1 files changed, 77 insertions, 0 deletions
diff --git a/TAO/tests/NestedUpcall/Triangle_Test/server_B.h b/TAO/tests/NestedUpcall/Triangle_Test/server_B.h
new file mode 100644
index 00000000000..e4634ff7547
--- /dev/null
+++ b/TAO/tests/NestedUpcall/Triangle_Test/server_B.h
@@ -0,0 +1,77 @@
+// -*- c++ -*-
+// $Id$
+
+// ============================================================================
+//
+// = LIBRARY
+// TAO/tests/NestedUpCalls/Triangle_Test
+//
+// = FILENAME
+// server_B.h
+//
+// = DESCRIPTION
+// This class implements a simple server for the
+// Nested Upcalls - Triangle test
+//
+// = AUTHORS
+// Michael Kircher
+//
+// ============================================================================
+
+#ifndef _TRIANGLE_TEST_OBJECT_B_SERVER_H
+#define _TRIANGLE_TEST_OBJECT_B_SERVER_H
+
+#include "ace/Get_Opt.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#include "ace/Log_Msg.h"
+#include "tao/Utils/ORB_Manager.h"
+#include "Object_B_i.h"
+
+class Object_B_Server
+{
+ // = TITLE
+ // This is the server for the object A in the test.
+ //
+ // = DESCRIPTION
+ // See the README file for more information.
+
+public:
+
+ Object_B_Server (void);
+ // Default constructor
+
+ ~Object_B_Server (void);
+ // Destructor
+
+ int init (int argc,
+ char **argv);
+ // Initialize the NestedUpCalls_Server state - parsing arguments and ...
+
+ int run (void);
+ // Run the orb
+
+private:
+ int parse_args (void);
+ // Parses the commandline arguments.
+
+ FILE* ior_output_file_;
+ // File to output the IOR of the object A.
+
+ TAO_ORB_Manager orb_manager_;
+ // The ORB manager
+
+ Object_B_i object_B_i_;
+ // Implementation object of the NestedUpCalls reactor.
+
+ int argc_;
+ // Number of commandline arguments.
+
+ char **argv_;
+ // commandline arguments.
+};
+
+#endif /* _TRIANGLE_TEST_OBJECT_B_SERVER_H */