blob: f1845ebd4979f16e54a131838ab066a43f11de4b (
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
|
// $Id$
// ============================================================================
//
// = LIBRARY
// TAO/tests/Param_Test
//
// = FILENAME
// tests.h
//
// = DESCRIPTION
// All the test objects header files included here
//
// = AUTHORS
// Aniruddha Gokhale
//
// ============================================================================
#ifndef TESTS_H
#define TESTS_H
#include "any.h"
#include "bd_long_seq.h"
#include "bd_short_seq.h"
#include "bd_str_seq.h"
#include "bd_string.h"
#include "bd_struct_seq.h"
#include "fixed_array.h"
#include "fixed_struct.h"
#include "nested_struct.h"
#include "objref_struct.h"
#include "objref.h"
#include "short.h"
#include "ulonglong.h"
#include "typecode.h"
#include "ub_any_seq.h"
#include "ub_long_seq.h"
#include "ub_objref_seq.h"
#include "ub_short_seq.h"
#include "ub_str_seq.h"
#include "ub_string.h"
#include "ub_struct_seq.h"
#include "var_array.h"
#include "var_struct.h"
#include "except.h"
#endif /* if !defined */
|