summaryrefslogtreecommitdiff
path: root/TAO/tests/DynAny_Test/test_dynunion.h
blob: 0f5c7c51ab0e8873b042baca968efdc5a3b1f5c6 (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
// -*- c++ -*-
// $Id$
// ============================================================================
//
// = LIBRARY
//    TAO/tests/DynAny_Test
//
// = FILENAME
//    test_dynunion.h
//
// = DESCRIPTION
//    Header file for class to test DynUnion.
//
// = AUTHOR
//    Jeff Parsons <jp4@cs.wustl.edu>
//
// ============================================================================

#if !defined (TEST_DYNUNION_H)
#define TEST_DYNUNION_H

#include "tao/corba.h"

class Test_DynUnion
{
public:
  Test_DynUnion (CORBA::ORB_var orb);
  ~Test_DynUnion (void);

  const char* test_name (void) const;

  int run_test (void);

private:
  char* test_name_;
  CORBA::ORB_var orb_;
  CORBA::ULong error_count_;
};

#endif /* TEST_DYNUNION_H */