summaryrefslogtreecommitdiff
path: root/tests/RB_Tree_Test.cpp
blob: ef89caf72056c6b1966d3225fbf20a22219bd8c6 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
// $Id$

// ============================================================================
//
// = LIBRARY
//    tests
//
// = FILENAME
//    RB_Tree_Test.cpp
//
// = DESCRIPTION
//    This is a test to verify and illustrate the use of the ACE_RB_Tree
//    and ACE_RB_Tree_Iterator classes.  Two different key and item types are
//    used in order to demonstrate specialization of the ACE_Less_Than
//    comparison function object template: int (for which the native <
//    operator is sufficient), and char * (for which < operator semantics must
//    be replaced by strcmp semantics).  An RB tree for each of the four
//    possible type parameter permutations over int and char * is constructed
//    and filled in, and the resulting order is checked via an iterator over
//    each.
//
// = AUTHOR
//    Chris Gill <cdgill@cs.wustl.edu>
//
// ============================================================================

#include "test_config.h" /* Include first to enable ACE_ASSERT. */
#include "ace/RB_Tree.h"

ACE_RCSID(tests, RB_Tree_Test, "$Id$")

#if defined(__BORLANDC__) && __BORLANDC__ >= 0x0530
USELIB("..\ace\aced.lib");
//---------------------------------------------------------------------------
#endif /* defined(__BORLANDC__) && __BORLANDC__ >= 0x0530 */



// These arrays of numbers as ints and character strings
// are used to instantiate key and item nodes in the tree.
static char *number_strings [] = {"10", "20", "30", "40",
                                  "50", "60", "70", "80"};

static int number_integers [] = {10, 20, 30, 40,
                                 50, 60, 70, 80};

// These arrays of ints are used to shuffle the order of insertion
// of keys and items for the various trees.
static int int_int_index [] = {0, 1, 2, 3, 4, 5, 6, 7}; // LR inorder
static int int_str_index [] = {7, 6, 5, 4, 3, 2, 1, 0}; // RL inorder
static int str_int_index [] = {4, 6, 2, 7, 5, 3, 1, 0}; // RL BFS
static int str_str_index [] = {4, 2, 1, 0, 3, 6, 5, 7}; // LR preorder

// Number of entries placed in each tree.
static int RB_TREE_TEST_ENTRIES = 8;

int
main (int, ASYS_TCHAR *[])
{
  ACE_START_TEST (ASYS_TEXT ("RB_Tree_Test"));

  // Local variables used to index arrays.
  int i, k;

  // Construct eight RB_Trees.  Specialization of the ACE_Less_Than template
  // for character strings performs strcmp style string comparisons rather
  // than < operator comparison of the pointers themselves.
  ACE_RB_Tree<int, int, ACE_Less_Than<int>, ACE_Null_Mutex> int_int_tree1, int_int_tree2;
  ACE_RB_Tree<int, char *, ACE_Less_Than<int>, ACE_Null_Mutex> int_str_tree1, int_str_tree2;
  ACE_RB_Tree<char *, int, ACE_Less_Than<char *>, ACE_Null_Mutex> str_int_tree1, str_int_tree2;
  ACE_RB_Tree<char *, char *, ACE_Less_Than<char *>, ACE_Null_Mutex> str_str_tree1, str_str_tree2;

  // First, test the new ACE_Hash_Map_Manager_Ex compliant interface.
  // Fill in each tree with the key and item from the appropriate arrays,
  // using the shuffle indexes to create different insertion orders.
  for (i = 0; i < RB_TREE_TEST_ENTRIES; ++i)
    {
      char *str_item;
      int int_item;

      k = int_int_index [i];
      ACE_ASSERT ((k >= 0) && (k < RB_TREE_TEST_ENTRIES));
      int_item = -1;
      int_int_tree1.insert (number_integers [k], number_integers [k]);
      ACE_ASSERT ((int_int_tree1.find (number_integers [k], int_item) == 0) &&
                  (int_item == number_integers [k]));

      k = int_str_index [i];
      ACE_ASSERT ((k >= 0) && (k < RB_TREE_TEST_ENTRIES));
      str_item = 0;
      int_str_tree1.insert (number_integers [k], number_strings [k]);
      ACE_ASSERT ((int_str_tree1.find (number_integers [k], str_item) == 0) &&
                  (str_item == number_strings [k]));

      k = str_int_index [i];
      ACE_ASSERT ((k >= 0) && (k < RB_TREE_TEST_ENTRIES));
      int_item = -1;
      str_int_tree1.insert (number_strings [k], number_integers [k]);
      ACE_ASSERT ((str_int_tree1.find (number_strings [k], int_item) == 0) &&
                  (int_item == number_integers [k]));

      k = str_str_index [i];
      ACE_ASSERT ((k >= 0) && (k < RB_TREE_TEST_ENTRIES));
      str_item = 0;
      str_str_tree1.insert (number_strings [k], number_strings [k]);
      ACE_ASSERT ((str_str_tree1.find (number_strings [k], str_item) == 0) &&
                  (str_item == number_strings [k]));
    }


  // Second, test the deprecated interface.  This portion of the test will
  // go away when the deprecated interface is removed
  // Fill in each tree with the key and item from the appropriate arrays,
  // using the shuffle indexes to create different insertion orders.
  for (i = 0; i < RB_TREE_TEST_ENTRIES; ++i)
    {
      k = int_int_index [i];
      ACE_ASSERT ((k >= 0) && (k < RB_TREE_TEST_ENTRIES));
      int_int_tree2.insert (number_integers [k], number_integers [k]);
      ACE_ASSERT ((int_int_tree2.find (number_integers [k]) != 0) &&
                  (*int_int_tree2.find (number_integers [k]) ==
                   number_integers [k]));

      k = int_str_index [i];
      ACE_ASSERT ((k >= 0) && (k < RB_TREE_TEST_ENTRIES));
      int_str_tree2.insert (number_integers [k], number_strings [k]);
      ACE_ASSERT ((int_str_tree2.find (number_integers [k]) != 0) &&
                  (*int_str_tree2.find (number_integers [k]) ==
                   number_strings [k]));

      k = str_int_index [i];
      ACE_ASSERT ((k >= 0) && (k < RB_TREE_TEST_ENTRIES));
      str_int_tree2.insert (number_strings [k], number_integers [k]);
      ACE_ASSERT ((str_int_tree2.find (number_strings [k]) != 0) &&
                  (*str_int_tree2.find (number_strings [k]) ==
                   number_integers [k]));

      k = str_str_index [i];
      ACE_ASSERT ((k >= 0) && (k < RB_TREE_TEST_ENTRIES));
      str_str_tree2.insert (number_strings [k], number_strings [k]);
      ACE_ASSERT ((str_str_tree2.find (number_strings [k]) != 0) &&
                  (*str_str_tree2.find (number_strings [k]) ==
                   number_strings [k]));
    }


  // Construct a forward and reverse iterator for each of the trees.

  ACE_RB_Tree_Iterator<int, int, ACE_Less_Than<int>, ACE_Null_Mutex> int_int_iter1 (int_int_tree1);
  ACE_RB_Tree_Iterator<int, char *, ACE_Less_Than<int>, ACE_Null_Mutex> int_str_iter1 (int_str_tree1);
  ACE_RB_Tree_Iterator<char *, int, ACE_Less_Than<char *>, ACE_Null_Mutex> str_int_iter1 (str_int_tree1);
  ACE_RB_Tree_Iterator<char *, char *, ACE_Less_Than<char *>, ACE_Null_Mutex> str_str_iter1 (str_str_tree1);

  ACE_RB_Tree_Reverse_Iterator<int, int, ACE_Less_Than<int>, ACE_Null_Mutex> int_int_rev_iter1 (int_int_tree1);
  ACE_RB_Tree_Reverse_Iterator<int, char *, ACE_Less_Than<int>, ACE_Null_Mutex> int_str_rev_iter1 (int_str_tree1);
  ACE_RB_Tree_Reverse_Iterator<char *, int, ACE_Less_Than<char *>, ACE_Null_Mutex> str_int_rev_iter1 (str_int_tree1);
  ACE_RB_Tree_Reverse_Iterator<char *, char *, ACE_Less_Than<char *>, ACE_Null_Mutex> str_str_rev_iter1 (str_str_tree1);

  ACE_RB_Tree_Iterator<int, int, ACE_Less_Than<int>, ACE_Null_Mutex> int_int_iter2 (int_int_tree2);
  ACE_RB_Tree_Iterator<int, char *, ACE_Less_Than<int>, ACE_Null_Mutex> int_str_iter2 (int_str_tree2);
  ACE_RB_Tree_Iterator<char *, int, ACE_Less_Than<char *>, ACE_Null_Mutex> str_int_iter2 (str_int_tree2);
  ACE_RB_Tree_Iterator<char *, char *, ACE_Less_Than<char *>, ACE_Null_Mutex> str_str_iter2 (str_str_tree2);

  ACE_RB_Tree_Reverse_Iterator<int, int, ACE_Less_Than<int>, ACE_Null_Mutex> int_int_rev_iter2 (int_int_tree2);
  ACE_RB_Tree_Reverse_Iterator<int, char *, ACE_Less_Than<int>, ACE_Null_Mutex> int_str_rev_iter2 (int_str_tree2);
  ACE_RB_Tree_Reverse_Iterator<char *, int, ACE_Less_Than<char *>, ACE_Null_Mutex> str_int_rev_iter2 (str_int_tree2);
  ACE_RB_Tree_Reverse_Iterator<char *, char *, ACE_Less_Than<char *>, ACE_Null_Mutex> str_str_rev_iter2 (str_str_tree2);

  // Iterate over each of the trees, making sure their entries
  // are in the same relative order (i.e., the integers and strings
  // represent the same values at each respective position in the tree).
  for (i = 0; i < RB_TREE_TEST_ENTRIES; ++i)
    {
      char *str_item;
      int int_item;

      int_item = (*int_int_iter1).item ();
      ACE_ASSERT (int_item == number_integers [i]);

      int_item = (*int_int_rev_iter1).item ();
      ACE_ASSERT (int_item == number_integers [RB_TREE_TEST_ENTRIES - i - 1]);

      int_item = (*str_int_iter1).item ();
      ACE_ASSERT (int_item == number_integers [i]);

      int_item = (*str_int_rev_iter1).item ();
      ACE_ASSERT (int_item == number_integers [RB_TREE_TEST_ENTRIES - i - 1]);

      str_item = (*int_str_iter1).item ();
      ACE_ASSERT (str_item == number_strings [i]);

      str_item = (*int_str_rev_iter1).item ();
      ACE_ASSERT (str_item == number_strings [RB_TREE_TEST_ENTRIES - i - 1]);

      str_item = (*str_str_iter1).item ();
      ACE_ASSERT (str_item == number_strings [i]);

      str_item = (*str_str_rev_iter1).item ();
      ACE_ASSERT (str_item == number_strings [RB_TREE_TEST_ENTRIES - i - 1]);

      int_item = (*int_int_iter2).item ();
      ACE_ASSERT (int_item == number_integers [i]);

      int_item = (*int_int_rev_iter2).item ();
      ACE_ASSERT (int_item == number_integers [RB_TREE_TEST_ENTRIES - i - 1]);

      int_item = (*str_int_iter2).item ();
      ACE_ASSERT (int_item == number_integers [i]);

      int_item = (*str_int_rev_iter2).item ();
      ACE_ASSERT (int_item == number_integers [RB_TREE_TEST_ENTRIES - i - 1]);

      str_item = (*int_str_iter2).item ();
      ACE_ASSERT (str_item == number_strings [i]);

      str_item = (*int_str_rev_iter2).item ();
      ACE_ASSERT (str_item == number_strings [RB_TREE_TEST_ENTRIES - i - 1]);

      str_item = (*str_str_iter2).item ();
      ACE_ASSERT (str_item == number_strings [i]);

      str_item = (*str_str_rev_iter2).item ();
      ACE_ASSERT (str_item == number_strings [RB_TREE_TEST_ENTRIES - i - 1]);


      // Advance each iterator.
      ++int_int_iter1;
      ++int_str_iter1;
      ++str_int_iter1;
      ++str_str_iter1;
      ++int_int_rev_iter1;
      ++int_str_rev_iter1;
      ++str_int_rev_iter1;
      ++str_str_rev_iter1;
      ++int_int_iter2;
      ++int_str_iter2;
      ++str_int_iter2;
      ++str_str_iter2;
      ++int_int_rev_iter2;
      ++int_str_rev_iter2;
      ++str_int_rev_iter2;
      ++str_str_rev_iter2;
    }

  // Make sure each item in each tree has been visited
  ACE_ASSERT (int_int_iter1.done () == 1);
  ACE_ASSERT (int_str_iter1.done () == 1);
  ACE_ASSERT (str_int_iter1.done () == 1);
  ACE_ASSERT (str_str_iter1.done () == 1);
  ACE_ASSERT (int_int_rev_iter1.done () == 1);
  ACE_ASSERT (int_str_rev_iter1.done () == 1);
  ACE_ASSERT (str_int_rev_iter1.done () == 1);
  ACE_ASSERT (str_str_rev_iter1.done () == 1);
  ACE_ASSERT (int_int_iter2.done () == 1);
  ACE_ASSERT (int_str_iter2.done () == 1);
  ACE_ASSERT (str_int_iter2.done () == 1);
  ACE_ASSERT (str_str_iter2.done () == 1);
  ACE_ASSERT (int_int_rev_iter2.done () == 1);
  ACE_ASSERT (int_str_rev_iter2.done () == 1);
  ACE_ASSERT (str_int_rev_iter2.done () == 1);
  ACE_ASSERT (str_str_rev_iter2.done () == 1);

  // Remove the even numbered entries from each of the trees.  New interface.
  for (i = 0; i < RB_TREE_TEST_ENTRIES; i += 2)
    {
      ACE_ASSERT (int_int_tree1.unbind (number_integers [i]) == 0);
      ACE_ASSERT (int_str_tree1.unbind (number_integers [i]) == 0);
      ACE_ASSERT (str_int_tree1.unbind (number_strings [i]) == 0);
      ACE_ASSERT (str_str_tree1.unbind (number_strings [i]) == 0);
    }

  // Remove the even numbered entries from each of the trees.  Deprecated interface.
  for (i = 0; i < RB_TREE_TEST_ENTRIES; i += 2)
    {
      ACE_ASSERT (int_int_tree2.remove (number_integers [i]) == 1);
      ACE_ASSERT (int_str_tree2.remove (number_integers [i]) == 1);
      ACE_ASSERT (str_int_tree2.remove (number_strings [i]) == 1);
      ACE_ASSERT (str_str_tree2.remove (number_strings [i]) == 1);
    }

  // Reset iterators

  int_int_iter1 = int_int_tree1.begin ();
  int_str_iter1 = int_str_tree1.begin ();
  str_int_iter1 = str_int_tree1.begin ();
  str_str_iter1 = str_str_tree1.begin ();
  int_int_rev_iter1 = int_int_tree1.rbegin ();
  int_str_rev_iter1 = int_str_tree1.rbegin ();
  str_int_rev_iter1 = str_int_tree1.rbegin ();
  str_str_rev_iter1 = str_str_tree1.rbegin ();
  int_int_iter2 = int_int_tree2.begin ();
  int_str_iter2 = int_str_tree2.begin ();
  str_int_iter2 = str_int_tree2.begin ();
  str_str_iter2 = str_str_tree2.begin ();
  int_int_rev_iter2 = int_int_tree2.rbegin ();
  int_str_rev_iter2 = int_str_tree2.rbegin ();
  str_int_rev_iter2 = str_int_tree2.rbegin ();
  str_str_rev_iter2 = str_str_tree2.rbegin ();


  // Iterate over each of the trees, making sure their entries are
  // still in the same relative order (i.e., the integers and strings
  // represent the same values at each respective position in the tree).
  for (i = 1; i < RB_TREE_TEST_ENTRIES; i += 2)
    {
      char *str_item;
      int int_item;

      int_item = (*int_int_iter1).item ();
      ACE_ASSERT (int_item == number_integers [i]);

      int_item = (*int_int_rev_iter1).item ();
      ACE_ASSERT (int_item == number_integers [RB_TREE_TEST_ENTRIES - i]);

      int_item = (*str_int_iter1).item ();
      ACE_ASSERT (int_item == number_integers [i]);

      int_item = (*str_int_rev_iter1).item ();
      ACE_ASSERT (int_item == number_integers [RB_TREE_TEST_ENTRIES - i]);

      str_item = (*int_str_iter1).item ();
      ACE_ASSERT (str_item == number_strings [i]);

      str_item = (*int_str_rev_iter1).item ();
      ACE_ASSERT (str_item == number_strings [RB_TREE_TEST_ENTRIES - i]);

      str_item = (*str_str_iter1).item ();
      ACE_ASSERT (str_item == number_strings [i]);

      str_item = (*str_str_rev_iter1).item ();
      ACE_ASSERT (str_item == number_strings [RB_TREE_TEST_ENTRIES - i]);

      int_item = (*int_int_iter2).item ();
      ACE_ASSERT (int_item == number_integers [i]);

      int_item = (*int_int_rev_iter2).item ();
      ACE_ASSERT (int_item == number_integers [RB_TREE_TEST_ENTRIES - i]);

      int_item = (*str_int_iter2).item ();
      ACE_ASSERT (int_item == number_integers [i]);

      int_item = (*str_int_rev_iter2).item ();
      ACE_ASSERT (int_item == number_integers [RB_TREE_TEST_ENTRIES - i]);

      str_item = (*int_str_iter2).item ();
      ACE_ASSERT (str_item == number_strings [i]);

      str_item = (*int_str_rev_iter2).item ();
      ACE_ASSERT (str_item == number_strings [RB_TREE_TEST_ENTRIES - i]);

      str_item = (*str_str_iter2).item ();
      ACE_ASSERT (str_item == number_strings [i]);

      str_item = (*str_str_rev_iter2).item ();
      ACE_ASSERT (str_item == number_strings [RB_TREE_TEST_ENTRIES - i]);

      // Advance each iterator via postfix increment.
      int_int_iter1++;
      int_str_iter1++;
      str_int_iter1++;
      str_str_iter1++;
      int_int_rev_iter1++;
      int_str_rev_iter1++;
      str_int_rev_iter1++;
      str_str_rev_iter1++;
      int_int_iter2++;
      int_str_iter2++;
      str_int_iter2++;
      str_str_iter2++;
      int_int_rev_iter2++;
      int_str_rev_iter2++;
      str_int_rev_iter2++;
      str_str_rev_iter2++;
    }

  // Make sure each item in each tree has been visited a second time.
  ACE_ASSERT (int_int_rev_iter1.done () == 1);
  ACE_ASSERT (int_str_rev_iter1.done () == 1);
  ACE_ASSERT (str_int_rev_iter1.done () == 1);
  ACE_ASSERT (str_str_rev_iter1.done () == 1);
  ACE_ASSERT (int_int_rev_iter2.done () == 1);
  ACE_ASSERT (int_str_rev_iter2.done () == 1);
  ACE_ASSERT (str_int_rev_iter2.done () == 1);
  ACE_ASSERT (str_str_rev_iter2.done () == 1);
  ACE_ASSERT (int_int_iter1.done () == 1);
  ACE_ASSERT (int_str_iter1.done () == 1);
  ACE_ASSERT (str_int_iter1.done () == 1);
  ACE_ASSERT (str_str_iter1.done () == 1);
  ACE_ASSERT (int_int_iter2.done () == 1);
  ACE_ASSERT (int_str_iter2.done () == 1);
  ACE_ASSERT (str_int_iter2.done () == 1);
  ACE_ASSERT (str_str_iter2.done () == 1);

  ACE_END_TEST;
  return 0;
}

#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
template class ACE_RB_Tree<int, int, ACE_Less_Than<int>, ACE_Null_Mutex>;
template class ACE_RB_Tree_Node<int, int>;
template class ACE_RB_Tree_Iterator_Base<int, int, ACE_Less_Than<int>, ACE_Null_Mutex>;
template class ACE_RB_Tree_Iterator<int, int, ACE_Less_Than<int>, ACE_Null_Mutex>;
template class ACE_RB_Tree_Reverse_Iterator<int, int, ACE_Less_Than<int>, ACE_Null_Mutex>;
template class ACE_RB_Tree<int, char *, ACE_Less_Than<int>, ACE_Null_Mutex>;
template class ACE_RB_Tree_Node<int, char *>;
template class ACE_RB_Tree_Iterator_Base<int, char *, ACE_Less_Than<int>, ACE_Null_Mutex>;
template class ACE_RB_Tree_Iterator<int, char *, ACE_Less_Than<int>, ACE_Null_Mutex>;
template class ACE_RB_Tree_Reverse_Iterator<int, char *, ACE_Less_Than<int>, ACE_Null_Mutex>;
template class ACE_RB_Tree<char *, int, ACE_Less_Than<char *>, ACE_Null_Mutex>;
template class ACE_RB_Tree_Node<char *, int>;
template class ACE_RB_Tree_Iterator_Base<char *, int, ACE_Less_Than<char *>, ACE_Null_Mutex>;
template class ACE_RB_Tree_Iterator<char *, int, ACE_Less_Than<char *>, ACE_Null_Mutex>;
template class ACE_RB_Tree_Reverse_Iterator<char *, int, ACE_Less_Than<char *>, ACE_Null_Mutex>;
template class ACE_RB_Tree<char *, char *, ACE_Less_Than<char *>, ACE_Null_Mutex>;
template class ACE_RB_Tree_Node<char *, char *>;
template class ACE_RB_Tree_Iterator_Base<char *, char *, ACE_Less_Than<char *>, ACE_Null_Mutex>;
template class ACE_RB_Tree_Iterator<char *, char *, ACE_Less_Than<char *>, ACE_Null_Mutex>;
template class ACE_RB_Tree_Reverse_Iterator<char *, char *, ACE_Less_Than<char *>, ACE_Null_Mutex>;
template class ACE_Less_Than<int>;

#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)

#pragma instantiate ACE_RB_Tree<int, int, ACE_Less_Than<int>, ACE_Null_Mutex>
#pragma instantiate ACE_RB_Tree_Node<int, int>
#pragma instantiate ACE_RB_Tree_Iterator_Base<int, int, ACE_Less_Than<int>, ACE_Null_Mutex>
#pragma instantiate ACE_RB_Tree_Iterator<int, int, ACE_Less_Than<int>, ACE_Null_Mutex>
#pragma instantiate ACE_RB_Tree_Reverse_Iterator<int, int, ACE_Less_Than<int>, ACE_Null_Mutex>
#pragma instantiate ACE_RB_Tree<int, char *, ACE_Less_Than<int>, ACE_Null_Mutex>
#pragma instantiate ACE_RB_Tree_Node<int, char *>
#pragma instantiate ACE_RB_Tree_Iterator_Base<int, char *, ACE_Less_Than<int>, ACE_Null_Mutex>
#pragma instantiate ACE_RB_Tree_Iterator<int, char *, ACE_Less_Than<int>, ACE_Null_Mutex>
#pragma instantiate ACE_RB_Tree_Reverse_Iterator<int, char *, ACE_Less_Than<int>, ACE_Null_Mutex>
#pragma instantiate ACE_RB_Tree<char *, int, ACE_Less_Than<char *>, ACE_Null_Mutex>
#pragma instantiate ACE_RB_Tree_Node<char *, int>
#pragma instantiate ACE_RB_Tree_Iterator_Base<char *, int, ACE_Less_Than<char *>, ACE_Null_Mutex>
#pragma instantiate ACE_RB_Tree_Iterator<char *, int, ACE_Less_Than<char *>, ACE_Null_Mutex>
#pragma instantiate ACE_RB_Tree_Reverse_Iterator<char *, int, ACE_Less_Than<char *>, ACE_Null_Mutex>
#pragma instantiate ACE_RB_Tree<char *, char *, ACE_Less_Than<char *>, ACE_Null_Mutex>
#pragma instantiate ACE_RB_Tree_Node<char *, char *>
#pragma instantiate ACE_RB_Tree_Iterator_Base<char *, char *, ACE_Less_Than<char *>, ACE_Null_Mutex>
#pragma instantiate ACE_RB_Tree_Iterator<char *, char *, ACE_Less_Than<char *>, ACE_Null_Mutex>
#pragma instantiate ACE_RB_Tree_Reverse_Iterator<char *, char *, ACE_Less_Than<char *>, ACE_Null_Mutex>
#pragma instantiate ACE_Less_Than<int>

#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */