blob: 320b7eaefea3c6975495c50293a27d6030eadafb (
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
|
// -*- C++ -*-
//=============================================================================
/**
* @file Client_i.h
*
* This class is a template for a CORBA client.
* run () sends some valuetypes to a server and
* gets back a list of valuetypes.
*
*
* @author Torsten Kuepperbased on the echo examplefrom code from Balachandran Natarajan <bala@cs.wustl.edu>
*/
//=============================================================================
#ifndef ECHO_CLIENT_I_H
#define ECHO_CLIENT_I_H
#include "OBVC.h"
#include "Simple_util.h"
/**
* @class Checkpoint_Client_i
*
* @brief Checkpoint_Client interface subclass.
*
* This class implements the interface between the interface
* objects and the client .
*/
class Checkpoint_Client_i
{
public:
// = Initialization and termination methods.
/// Constructor
Checkpoint_Client_i (void);
/// Destructor
virtual ~Checkpoint_Client_i (void);
/// Execute the methods
virtual int run (const char *,int, ACE_TCHAR** );
private:
/// Instantiate the checkpoint object.
Client<Checkpoint, Checkpoint_var> checkpoint;
};
#endif /* TIME_CLIENT_I_H */
|