summaryrefslogtreecommitdiff
path: root/TAO/tests/DynAny_Test/test_dynany.h
blob: c19d5caca98c6c571cec821ab2a98ece9c610a5c (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
//=============================================================================
/**
 *  @file    test_dynany.h
 *
 *  Header file for class to test the simple dynany.
 *
 *  @author Jeff Parsons <parsons@cs.wustl.edu>
 */
//=============================================================================


#if !defined (TEST_DYNANY_H)
#define TEST_DYNANY_H

#include "tao/ORB.h"
#include "tao/AnyTypeCode/AnyTypeCode_methods.h"

class Test_DynAny
{
public:
  Test_DynAny (CORBA::ORB_var orb, int debug);
  ~Test_DynAny ();

  const char* test_name () const;

  int run_test ();

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

#endif /* TEST_DYNANY_H */