This source file includes following definitions.
- main
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 #include <config.h>
19
20 #include "gl_omap.hh"
21 #include "gl_array_omap.h"
22
23 #include <string.h>
24
25 #include "macros.h"
26
27 static const int integers[6] = { 0, 1, 2, 3, 4, 5 };
28
29 int
30 main (int argc, char *argv[])
31 {
32 gl_OMap<const char *, const int *> map1;
33
34 map1 = gl_OMap<const char *, const int *> (GL_ARRAY_OMAP, strcmp, NULL, NULL);
35 map1.put ("five", integers);
36 map1.put ("one", integers + 1);
37 map1.put ("two", integers + 2);
38 map1.put ("three", integers + 3);
39 map1.put ("four", integers + 4);
40 map1.put ("five", integers + 5);
41 ASSERT (map1.size () == 5);
42
43 ASSERT (map1.get ("two")[0] == 2);
44
45 gl_OMap<const char *, const int *>::iterator iter1 = map1.begin ();
46 const char *key;
47 const int *val;
48 ASSERT (iter1.next (key, val));
49 ASSERT (strcmp (key, "five") == 0);
50 ASSERT (*val == 5);
51 ASSERT (iter1.next (key, val));
52 ASSERT (strcmp (key, "four") == 0);
53 ASSERT (*val == 4);
54 ASSERT (iter1.next (key, val));
55 ASSERT (strcmp (key, "one") == 0);
56 ASSERT (*val == 1);
57 ASSERT (iter1.next (key, val));
58 ASSERT (strcmp (key, "three") == 0);
59 ASSERT (*val == 3);
60 ASSERT (iter1.next (key, val));
61 ASSERT (strcmp (key, "two") == 0);
62 ASSERT (*val == 2);
63 ASSERT (!iter1.next (key, val));
64
65 map1.free ();
66
67 return 0;
68 }