summaryrefslogtreecommitdiff
path: root/tests/Bug_3683_Regression/Echo_Client_i.h
blob: 2ca502721697cb6c61205590c169f36d1e2844bc (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// -*- C++ -*-
// $Id$

// ============================================================================
//
// = LIBRARY
//    TAO/tests/Simple/echo
//
// = FILENAME
//    Echo_Client_i.h
//
// = DESCRIPTION
//    This class implements the  interface calls for RMI.
//
// = AUTHOR
//
//   Balachandran Natarajan <bala@cs.wustl.edu>
//
// ============================================================================

#ifndef ECHO_CLIENT_I_H
#define ECHO_CLIENT_I_H

#include "Simple_util.h"
#include "EchoC.h"

class Echo_Client_i
{
  // = TITLE
  //   Echo_Client interface subclass.
  //
  // = DESCRIPTION
  //   This class implements the interface between the interface
  //   objects and the client .
public:
  // = Initialization and termination methods.
  Echo_Client_i (void);
  // Constructor

  ~Echo_Client_i (void);
  // Destructor

  int run (const char *, int, ACE_TCHAR **);
  // Execute the methods

private:
  int parse_args (int argc, ACE_TCHAR *argv[]);

  Client<Echo> client_;
  // Instantiate the client object.

  size_t payload_length_;
};

#endif /* TIME_CLIENT_I_H */