summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/IOR_MCast/ior_mcast_client_i.h
blob: 68e8ece65756a91f08d11dc9e8b4e92248d9c4ff (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
// -*- C++ -*-
// $Id$

#if !defined (IOR_MCAST_CLIENT_I_H)
#define IOR_MCAST_CLIENT_I_H

#include "MCastC.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 (CORBA::Environment &ACE_TRY_ENV);
  // Execute the client example code.

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

 private:
  // mcast_ior
  ACE_CString mcast_url_;

};

#endif /* IOR_MCAST_CLIENT_I_H */