blob: 7b3951f4e11756f35f071c715f9e8f618efde936 (
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
|
// $Id$
// ============================================================================
//
// = LIBRARY
// CORBA Benchmark
//
// = FILENAME
// marshal_proxy.h
//
// = AUTHOR
// Aniruddha Gokhale
//
// ============================================================================
#if !defined(_CORBA_MARSHAL_PROXY_H_)
#define _CORBA_MARSHAL_PROXY_H_
#include "benchmark/marshal_options.h"
#include "benchmark/marshal_results.h"
class CORBA_Marshal_Proxy
{
// = TITLE
// Abstract handle for all CORBA_Marshal tests.
// = DESCRIPTION
// The IMPL class is the CORBA specific class which does the real work. The
// IMPL class must support the run method
public:
typedef CORBA_Marshal_Options OPTIONS;
typedef CORBA_Marshal_Results RESULTS;
CORBA_Marshal_Proxy (void);
// constructor
virtual ~CORBA_Marshal_Proxy (void);
// destructor
virtual int run (OPTIONS &, RESULTS &) = 0;
// run the test
};
#if defined (__ACE_INLINE__)
#include "benchmark/marshal_proxy.i"
#endif /* __ACE_INLINE__ */
#endif
|