blob: 73f054c6765eb20908780ec3049796c796bed55d (
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
|
// -*- c++ -*-
// $Id$
// ============================================================================
//
// = LIBRARY
// TAO/tests/Param_Test
//
// = FILENAME
// driver.h
//
// = DESCRIPTION
// Header file for the driver program. The driver is a singleton.
//
// = AUTHORS
// Aniruddha Gokhale
//
// ============================================================================
#ifndef DRIVER_H
#define DRIVER_H
#include "options.h"
#include "param_testC.h"
class Driver
{
// = TITLE
// Driver
//
// = DESCRIPTION
// Driver program for the client
public:
// = Constructor and destructor.
Driver (void);
~Driver (void);
int init (int argc, ACE_TCHAR **argv);
// Initialize the driver object
int run (void);
// Execute client example code.
private:
CORBA::ORB_var orb_;
// underlying ORB (we do not own it)
Param_Test_var objref_;
// object reference (we do not own it)
};
#endif /* !defined */
|