Merge pull request #2303 from jwillemsen/jwi-803
[ACE_TAO.git] / TAO / examples / Simple / echo / Echo_Client_i.h
blob7596f0883ad75ff1a69e5c5651caa27547175137
1 // -*- C++ -*-
3 //=============================================================================
4 /**
5 * @file Echo_Client_i.h
7 * This class implements the interface calls for RMI.
9 * @author Balachandran Natarajan <bala@cs.wustl.edu>
11 //=============================================================================
14 #ifndef ECHO_CLIENT_I_H
15 #define ECHO_CLIENT_I_H
17 #include "../Simple_util.h"
18 #include "EchoC.h"
20 /**
21 * @class Echo_Client_i
23 * @brief Echo_Client interface subclass.
25 * This class implements the interface between the interface
26 * objects and the client .
28 class Echo_Client_i
30 public:
31 /// Constructor
32 Echo_Client_i () = default;
34 /// Destructor
35 ~Echo_Client_i () = default;
37 /// Execute the methods
38 int run (const char *, int, ACE_TCHAR **);
40 private:
41 /// Instantiate the client object.
42 Client<Echo> client_;
45 #endif /* TIME_CLIENT_I_H */