summaryrefslogtreecommitdiff
path: root/trunk/TAO/orbsvcs/tests/IOR_MCast/ior_mcast_client_i.h
blob: 46ca60befd481472f53b574a81ab30f30b0b8a84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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 (void);
  // Execute the client example code.

  int init (int& argc, char *argv[]);
  // Initialize the client communication endpoint with the server.

 private:
  // mcast_ior
  ACE_CString mcast_url_;

};

#endif /* IOR_MCAST_CLIENT_I_H */