summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/IOR_MCast/ior_mcast_client_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/IOR_MCast/ior_mcast_client_i.h')
-rw-r--r--TAO/orbsvcs/tests/IOR_MCast/ior_mcast_client_i.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/TAO/orbsvcs/tests/IOR_MCast/ior_mcast_client_i.h b/TAO/orbsvcs/tests/IOR_MCast/ior_mcast_client_i.h
new file mode 100644
index 00000000000..6602be6a96e
--- /dev/null
+++ b/TAO/orbsvcs/tests/IOR_MCast/ior_mcast_client_i.h
@@ -0,0 +1,36 @@
+// -*- C++ -*-
+// $Id$
+
+#if !defined (IOR_MCAST_CLIENT_I_H)
+#define IOR_MCAST_CLIENT_I_H
+
+#include "MCastC.h"
+#include "ace/SString.h"
+
+class ior_mcast_Client_i
+{
+ // = TITLE
+ // ior_mcast_client_i.h
+ //
+ // = DESCRIPTION
+ // Helper class for the client which uses the mcast ior type to
+ // get reference to the server.
+
+ public:
+ // = COnstructor and destructor.
+ ior_mcast_Client_i (void);
+ ~ior_mcast_Client_i (void);
+
+ int run (ACE_ENV_SINGLE_ARG_DECL);
+ // Execute the client example code.
+
+ int init (int& argc, char *argv[] ACE_ENV_ARG_DECL);
+ // Initialize the client communication endpoint with the server.
+
+ private:
+ // mcast_ior
+ ACE_CString mcast_url_;
+
+};
+
+#endif /* IOR_MCAST_CLIENT_I_H */