summaryrefslogtreecommitdiff
path: root/ACE/TAO/examples/Simple/chat/Server_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/examples/Simple/chat/Server_i.h')
-rw-r--r--ACE/TAO/examples/Simple/chat/Server_i.h68
1 files changed, 68 insertions, 0 deletions
diff --git a/ACE/TAO/examples/Simple/chat/Server_i.h b/ACE/TAO/examples/Simple/chat/Server_i.h
new file mode 100644
index 00000000000..ee16b3dec7b
--- /dev/null
+++ b/ACE/TAO/examples/Simple/chat/Server_i.h
@@ -0,0 +1,68 @@
+/* -*- C++ -*- */
+// $Id$
+
+// ===========================================================
+//
+//
+// = LIBRARY
+// TAO/tests/Simple/chat
+//
+// = FILENAME
+// Server_i.h
+//
+// = DESCRIPTION
+// Definition of the Chat Server_i class.
+//
+// = AUTHOR
+// Pradeep Gore <pradeep@cs.wustl.edu>
+//
+// ===========================================================
+
+#ifndef SERVER_I_H
+#define SERVER_I_H
+
+#include "Broadcaster_i.h"
+#include "tao/Utils/ORB_Manager.h"
+#include "tao/Intrusive_Ref_Count_Handle_T.h"
+
+class Server_i
+{
+ // = TITLE
+ // The class defines the server for the chat. It sets up the Orb
+ // manager and registers the Broadcaster servant object.
+
+public:
+ // = Initialization and termination methods.
+ Server_i (void);
+ // Constructor.
+
+ ~Server_i (void);
+ // Destructor.
+
+ int init (int argc,
+ ACE_TCHAR *argv[]);
+ // Initialize the server.
+
+ int run (void);
+ // Run the ORB.
+
+private:
+ int parse_args (int argc, ACE_TCHAR *argv[]);
+ // Parses the command line arguments.
+
+ int write_IOR (const char *ior);
+ // Writes the server ior to a file, for the clients to pick up
+ // later.
+
+ const ACE_TCHAR *ior_file_name_;
+ // The file name to save the ior to.
+
+ TAO_ORB_Manager orb_manager_;
+ // The tao orb manager object.
+
+ typedef TAO_Intrusive_Ref_Count_Handle<Broadcaster_i> Broadcaster_i_var;
+ Broadcaster_i_var broadcaster_i_;
+ // The servant object registered with the orb.
+};
+
+#endif /* SERVER_I_H */