summaryrefslogtreecommitdiff
path: root/TAO/Benchmark/benchmark/marshal_proxy.h
blob: de81ccf95ea507f83e229a15944449402b59bbc6 (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
// ============================================================================
//
// = 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