summaryrefslogtreecommitdiffstats
path: root/develop/class_h5_1_1_pred_type.html
blob: 325aca20d1e53e4010860637ff48892c5745892d (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
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.9.1"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>HDF5: PredType Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */
  $(document).ready(function() { init_search(); });
/* @license-end */
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
<link href="hdf5doxy.css" rel="stylesheet" type="text/css">
<!-- <link href="hdf5doxy.css" rel="stylesheet" type="text/css"/>
 -->
<script type="text/javascript" src="hdf5_navtree_hacks.js"></script>
</head>
<body>
<div style="background:#FFDDDD;font-size:120%;text-align:center;margin:0;padding:5px">Please, help us to better serve our user community by answering the following short survey:  <a href="https://www.hdfgroup.org/website-survey/">https://www.hdfgroup.org/website-survey/</a></div>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
 <tbody>
 <tr style="height: 56px;">
  <td id="projectlogo"><img alt="Logo" src="HDFG-logo.png"/></td>
  <td id="projectalign" style="padding-left: 0.5em;">
   <div id="projectname"><a href="https://www.hdfgroup.org">HDF5</a>
   &#160;<span id="projectnumber">1.15.0.0fa3029</span>
   </div>
   <div id="projectbrief">API Reference</div>
  </td>
   <td>        <div id="MSearchBox" class="MSearchBoxInactive">
        <span class="left">
          <img id="MSearchSelect" src="search/mag_sel.svg"
               onmouseover="return searchBox.OnSearchSelectShow()"
               onmouseout="return searchBox.OnSearchSelectHide()"
               alt=""/>
          <input type="text" id="MSearchField" value="Search" accesskey="S"
               onfocus="searchBox.OnSearchFieldFocus(true)" 
               onblur="searchBox.OnSearchFieldFocus(false)" 
               onkeyup="searchBox.OnSearchFieldChange(event)"/>
          </span><span class="right">
            <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.svg" alt=""/></a>
          </span>
        </div>
</td>
 </tr>
 </tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.9.1 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */
var searchBox = new SearchBox("searchBox", "search",false,'Search','.html');
/* @license-end */
</script>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
  <div id="nav-tree">
    <div id="nav-tree-contents">
      <div id="nav-sync" class="sync"></div>
    </div>
  </div>
  <div id="splitbar" style="-moz-user-select:none;" 
       class="ui-resizable-handle">
  </div>
</div>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */
$(document).ready(function(){initNavTree('class_h5_1_1_pred_type.html',''); initResizable(); });
/* @license-end */
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
     onmouseover="return searchBox.OnSearchSelectShow()"
     onmouseout="return searchBox.OnSearchSelectHide()"
     onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>

<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0" 
        name="MSearchResults" id="MSearchResults">
</iframe>
</div>

<div class="header">
  <div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#pub-static-methods">Static Public Member Functions</a> &#124;
<a href="#pub-static-attribs">Static Public Attributes</a> &#124;
<a href="#pro-methods">Protected Member Functions</a>  </div>
  <div class="headertitle">
<div class="title">PredType Class Reference</div>  </div>
</div><!--header-->
<div class="contents">

<p><code>#include &lt;c++/src/H5PredType.h&gt;</code></p>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>Class <a class="el" href="class_h5_1_1_pred_type.html" title="Class PredType holds the definition of all the HDF5 predefined datatypes.">PredType</a> holds the definition of all the HDF5 predefined datatypes. </p>
<p>These types can only be made copy of, not created by H5Tcreate or closed by H5Tclose. They are treated as constants. </p>
</div><div id="dynsection-0" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;">
  <img id="dynsection-0-trigger" src="closed.png" alt="+"/> Inheritance diagram for PredType:</div>
<div id="dynsection-0-summary" class="dynsummary" style="display:block;">
</div>
<div id="dynsection-0-content" class="dyncontent" style="display:none;">
<div class="center"><img src="class_h5_1_1_pred_type__inherit__graph.png" border="0" usemap="#a_pred_type_inherit__map" alt="Inheritance graph"/></div>
<map name="a_pred_type_inherit__map" id="a_pred_type_inherit__map">
<area shape="rect" title="Class PredType holds the definition of all the HDF5 predefined datatypes." alt="" coords="19,379,101,405"/>
<area shape="rect" href="class_h5_1_1_atom_type.html" title="AtomType is a base class, inherited by IntType, FloatType, StrType, and PredType." alt="" coords="17,304,103,331"/>
<area shape="rect" href="class_h5_1_1_data_type.html" title="Class DataType provides generic operations on HDF5 datatypes." alt="" coords="19,229,101,256"/>
<area shape="rect" href="class_h5_1_1_h5_object.html" title="Class H5Object is a bridge between H5Location and DataSet, DataType, and Group." alt="" coords="19,155,101,181"/>
<area shape="rect" href="class_h5_1_1_h5_location.html" title="H5Location is an abstract base class, added in version 1.8.12." alt="" coords="13,80,107,107"/>
<area shape="rect" href="class_h5_1_1_id_component.html" title="Class IdComponent provides wrappers of the C functions that operate on an HDF5 identifier." alt="" coords="5,5,115,32"/>
</map>
<center><span class="legend">[<a target="top" href="graph_legend.html">legend</a>]</span></center></div>
<div id="dynsection-1" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;">
  <img id="dynsection-1-trigger" src="closed.png" alt="+"/> Collaboration diagram for PredType:</div>
<div id="dynsection-1-summary" class="dynsummary" style="display:block;">
</div>
<div id="dynsection-1-content" class="dyncontent" style="display:none;">
<div class="center"><img src="class_h5_1_1_pred_type__coll__graph.png" border="0" usemap="#a_pred_type_coll__map" alt="Collaboration graph"/></div>
<map name="a_pred_type_coll__map" id="a_pred_type_coll__map">
<area shape="rect" title="Class PredType holds the definition of all the HDF5 predefined datatypes." alt="" coords="19,453,101,479"/>
<area shape="rect" href="class_h5_1_1_atom_type.html" title="AtomType is a base class, inherited by IntType, FloatType, StrType, and PredType." alt="" coords="17,309,103,336"/>
<area shape="rect" href="class_h5_1_1_data_type.html" title="Class DataType provides generic operations on HDF5 datatypes." alt="" coords="19,233,101,260"/>
<area shape="rect" href="class_h5_1_1_h5_object.html" title="Class H5Object is a bridge between H5Location and DataSet, DataType, and Group." alt="" coords="19,157,101,184"/>
<area shape="rect" href="class_h5_1_1_h5_location.html" title="H5Location is an abstract base class, added in version 1.8.12." alt="" coords="13,81,107,108"/>
<area shape="rect" href="class_h5_1_1_id_component.html" title="Class IdComponent provides wrappers of the C functions that operate on an HDF5 identifier." alt="" coords="5,5,115,32"/>
</map>
<center><span class="legend">[<a target="top" href="graph_legend.html">legend</a>]</span></center></div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:a71c2693398514fad4828112c9d21554b"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a71c2693398514fad4828112c9d21554b">fromClass</a> () const override</td></tr>
<tr class="memdesc:a71c2693398514fad4828112c9d21554b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns this class name.  <a href="class_h5_1_1_pred_type.html#a71c2693398514fad4828112c9d21554b">More...</a><br /></td></tr>
<tr class="separator:a71c2693398514fad4828112c9d21554b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9159fa10f791c9804f855277ba92750b"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a9159fa10f791c9804f855277ba92750b">operator=</a> (const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;rhs)</td></tr>
<tr class="separator:a9159fa10f791c9804f855277ba92750b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a74aed1c169ad2aa28626c66a5c749def"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a74aed1c169ad2aa28626c66a5c749def">PredType</a> (const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;original)</td></tr>
<tr class="separator:a74aed1c169ad2aa28626c66a5c749def"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae04cd8134110c73b1fa978f3780828e9"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#ae04cd8134110c73b1fa978f3780828e9">~PredType</a> () override</td></tr>
<tr class="separator:ae04cd8134110c73b1fa978f3780828e9"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a945f14456f64ae4a419a8ac804183e3c"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a945f14456f64ae4a419a8ac804183e3c">commit</a> (<a class="el" href="class_h5_1_1_h5_location.html">H5Location</a> &amp;loc, const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;name)</td></tr>
<tr class="memdesc:a945f14456f64ae4a419a8ac804183e3c"><td class="mdescLeft">&#160;</td><td class="mdescRight">This dummy function do not inherit from <a class="el" href="class_h5_1_1_data_type.html" title="Class DataType provides generic operations on HDF5 datatypes.">DataType</a> - it will throw a <a class="el" href="class_h5_1_1_data_type_i_exception.html">DataTypeIException</a> if invoked.  <a href="class_h5_1_1_pred_type.html#a945f14456f64ae4a419a8ac804183e3c">More...</a><br /></td></tr>
<tr class="separator:a945f14456f64ae4a419a8ac804183e3c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a27fd12e2a8a970323dc9120b9b9b9584"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a27fd12e2a8a970323dc9120b9b9b9584">commit</a> (<a class="el" href="class_h5_1_1_h5_location.html">H5Location</a> &amp;loc, const char *name)</td></tr>
<tr class="memdesc:a27fd12e2a8a970323dc9120b9b9b9584"><td class="mdescLeft">&#160;</td><td class="mdescRight">This dummy function do not inherit from <a class="el" href="class_h5_1_1_data_type.html" title="Class DataType provides generic operations on HDF5 datatypes.">DataType</a> - it will throw a <a class="el" href="class_h5_1_1_data_type_i_exception.html">DataTypeIException</a> if invoked.  <a href="class_h5_1_1_pred_type.html#a27fd12e2a8a970323dc9120b9b9b9584">More...</a><br /></td></tr>
<tr class="separator:a27fd12e2a8a970323dc9120b9b9b9584"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abc7cb58bd820bc9b197012ec6563a1fe"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#abc7cb58bd820bc9b197012ec6563a1fe">committed</a> ()</td></tr>
<tr class="memdesc:abc7cb58bd820bc9b197012ec6563a1fe"><td class="mdescLeft">&#160;</td><td class="mdescRight">This dummy function do not inherit from <a class="el" href="class_h5_1_1_data_type.html" title="Class DataType provides generic operations on HDF5 datatypes.">DataType</a> - it will throw a <a class="el" href="class_h5_1_1_data_type_i_exception.html">DataTypeIException</a> if invoked.  <a href="class_h5_1_1_pred_type.html#abc7cb58bd820bc9b197012ec6563a1fe">More...</a><br /></td></tr>
<tr class="separator:abc7cb58bd820bc9b197012ec6563a1fe"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_class_h5_1_1_atom_type"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_class_h5_1_1_atom_type')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="class_h5_1_1_atom_type.html">AtomType</a></td></tr>
<tr class="memitem:a32d5be3dc2293ec664acf2bdf0bd79d9 inherit pub_methods_class_h5_1_1_atom_type"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_tpublic_8h.html#a2a6a8eb856a0829fecaac60f803c9fd0">H5T_order_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_atom_type.html#a32d5be3dc2293ec664acf2bdf0bd79d9">getOrder</a> () const</td></tr>
<tr class="separator:a32d5be3dc2293ec664acf2bdf0bd79d9 inherit pub_methods_class_h5_1_1_atom_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa19021300533962e38dd781e208e4588 inherit pub_methods_class_h5_1_1_atom_type"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_tpublic_8h.html#a2a6a8eb856a0829fecaac60f803c9fd0">H5T_order_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_atom_type.html#aa19021300533962e38dd781e208e4588">getOrder</a> (<a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;order_string) const</td></tr>
<tr class="separator:aa19021300533962e38dd781e208e4588 inherit pub_methods_class_h5_1_1_atom_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0ac1800ce2f1f0e204340d5e4272f7e0 inherit pub_methods_class_h5_1_1_atom_type"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_atom_type.html#a0ac1800ce2f1f0e204340d5e4272f7e0">setOrder</a> (<a class="el" href="_h5_tpublic_8h.html#a2a6a8eb856a0829fecaac60f803c9fd0">H5T_order_t</a> order) const</td></tr>
<tr class="separator:a0ac1800ce2f1f0e204340d5e4272f7e0 inherit pub_methods_class_h5_1_1_atom_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a036e8716650111764f1b672aa4ad9ea5 inherit pub_methods_class_h5_1_1_atom_type"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_atom_type.html#a036e8716650111764f1b672aa4ad9ea5">getOffset</a> () const</td></tr>
<tr class="separator:a036e8716650111764f1b672aa4ad9ea5 inherit pub_methods_class_h5_1_1_atom_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3c705fc297d5bcc6a727e3dde1801f14 inherit pub_methods_class_h5_1_1_atom_type"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_atom_type.html#a3c705fc297d5bcc6a727e3dde1801f14">setOffset</a> (size_t offset) const</td></tr>
<tr class="separator:a3c705fc297d5bcc6a727e3dde1801f14 inherit pub_methods_class_h5_1_1_atom_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abf3e78720e9d2456fd51162fed5eb57e inherit pub_methods_class_h5_1_1_atom_type"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_atom_type.html#abf3e78720e9d2456fd51162fed5eb57e">getPad</a> (<a class="el" href="_h5_tpublic_8h.html#a361ad902a75bcf442c17bf3d0bc103aa">H5T_pad_t</a> &amp;lsb, <a class="el" href="_h5_tpublic_8h.html#a361ad902a75bcf442c17bf3d0bc103aa">H5T_pad_t</a> &amp;msb) const</td></tr>
<tr class="separator:abf3e78720e9d2456fd51162fed5eb57e inherit pub_methods_class_h5_1_1_atom_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a07b12abe2d2082c306a02d2cdad0b21a inherit pub_methods_class_h5_1_1_atom_type"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_atom_type.html#a07b12abe2d2082c306a02d2cdad0b21a">setPad</a> (<a class="el" href="_h5_tpublic_8h.html#a361ad902a75bcf442c17bf3d0bc103aa">H5T_pad_t</a> lsb, <a class="el" href="_h5_tpublic_8h.html#a361ad902a75bcf442c17bf3d0bc103aa">H5T_pad_t</a> msb) const</td></tr>
<tr class="separator:a07b12abe2d2082c306a02d2cdad0b21a inherit pub_methods_class_h5_1_1_atom_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9489c24ba65608a86c049e82583959fd inherit pub_methods_class_h5_1_1_atom_type"><td class="memItemLeft" align="right" valign="top">size_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_atom_type.html#a9489c24ba65608a86c049e82583959fd">getPrecision</a> () const</td></tr>
<tr class="separator:a9489c24ba65608a86c049e82583959fd inherit pub_methods_class_h5_1_1_atom_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adb483716591e812740a25e0c8cc3d4dd inherit pub_methods_class_h5_1_1_atom_type"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_atom_type.html#adb483716591e812740a25e0c8cc3d4dd">setPrecision</a> (size_t precision) const</td></tr>
<tr class="separator:adb483716591e812740a25e0c8cc3d4dd inherit pub_methods_class_h5_1_1_atom_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acd38a901287034b403cbbd866d552762 inherit pub_methods_class_h5_1_1_atom_type"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_atom_type.html#acd38a901287034b403cbbd866d552762">setSize</a> (size_t size) const</td></tr>
<tr class="separator:acd38a901287034b403cbbd866d552762 inherit pub_methods_class_h5_1_1_atom_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa281e89eb733ca079633073534436059 inherit pub_methods_class_h5_1_1_atom_type"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_atom_type.html#aa281e89eb733ca079633073534436059">AtomType</a> (const <a class="el" href="class_h5_1_1_atom_type.html">AtomType</a> &amp;original)</td></tr>
<tr class="separator:aa281e89eb733ca079633073534436059 inherit pub_methods_class_h5_1_1_atom_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8f3b5ef0a0844781df7a205824c2250f inherit pub_methods_class_h5_1_1_atom_type"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_atom_type.html#a8f3b5ef0a0844781df7a205824c2250f">~AtomType</a> () override</td></tr>
<tr class="separator:a8f3b5ef0a0844781df7a205824c2250f inherit pub_methods_class_h5_1_1_atom_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_class_h5_1_1_data_type"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_class_h5_1_1_data_type')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="class_h5_1_1_data_type.html">DataType</a></td></tr>
<tr class="memitem:ac068dc8eaf28593e581a14753d298a06 inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#ac068dc8eaf28593e581a14753d298a06">DataType</a> (const <a class="el" href="_h5_tpublic_8h.html#a071841985f647f69516dbe77d93167f2">H5T_class_t</a> type_class, size_t size)</td></tr>
<tr class="separator:ac068dc8eaf28593e581a14753d298a06 inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae596f82e2d8d45e42b5796251bd84872 inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#ae596f82e2d8d45e42b5796251bd84872">DataType</a> (const <a class="el" href="class_h5_1_1_data_type.html">DataType</a> &amp;original)</td></tr>
<tr class="separator:ae596f82e2d8d45e42b5796251bd84872 inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a901b356513ad184c95024b05eb06c17e inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#a901b356513ad184c95024b05eb06c17e">DataType</a> (const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;pred_type)</td></tr>
<tr class="separator:a901b356513ad184c95024b05eb06c17e inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a40abdbbca1f4e1201e6085cc4b3d2d27 inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#a40abdbbca1f4e1201e6085cc4b3d2d27">DataType</a> (const <a class="el" href="class_h5_1_1_h5_location.html">H5Location</a> &amp;loc, const char *name)</td></tr>
<tr class="separator:a40abdbbca1f4e1201e6085cc4b3d2d27 inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a56c3bcb8e34b473b7bac61270e18b0f7 inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#a56c3bcb8e34b473b7bac61270e18b0f7">DataType</a> (const <a class="el" href="class_h5_1_1_h5_location.html">H5Location</a> &amp;loc, const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;name)</td></tr>
<tr class="separator:a56c3bcb8e34b473b7bac61270e18b0f7 inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7e04965012f5b9d52c41cfb5b60a150f inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#a7e04965012f5b9d52c41cfb5b60a150f">DataType</a> (const <a class="el" href="class_h5_1_1_h5_location.html">H5Location</a> &amp;loc, const void *ref, <a class="el" href="_h5_rpublic_8h.html#a7d148ddc165e65b01efabfd738ac056e">H5R_type_t</a> ref_type=<a class="el" href="_h5_rpublic_8h.html#ae1ffa09875ca6778df3a577592dacbd2">H5R_OBJECT</a>, const <a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;plist=<a class="el" href="class_h5_1_1_prop_list.html#a5b68b4892eb2eff8946c3ea40babca0a">PropList::DEFAULT</a>)</td></tr>
<tr class="separator:a7e04965012f5b9d52c41cfb5b60a150f inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a547c58c858ce4a8fdfd32b25523f4c03 inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#a547c58c858ce4a8fdfd32b25523f4c03">close</a> () override</td></tr>
<tr class="separator:a547c58c858ce4a8fdfd32b25523f4c03 inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7fd949dcd92437d29d3078649f3d684f inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#a7fd949dcd92437d29d3078649f3d684f">copy</a> (const <a class="el" href="class_h5_1_1_data_type.html">DataType</a> &amp;like_type)</td></tr>
<tr class="separator:a7fd949dcd92437d29d3078649f3d684f inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a466942a4b3c9215b66f8c1074f8cfed8 inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#a466942a4b3c9215b66f8c1074f8cfed8">copy</a> (const <a class="el" href="class_h5_1_1_data_set.html">DataSet</a> &amp;dset)</td></tr>
<tr class="separator:a466942a4b3c9215b66f8c1074f8cfed8 inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af58a39507bc65b3803c237e585f23ed3 inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="class_h5_1_1_data_type.html">DataType</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#af58a39507bc65b3803c237e585f23ed3">decode</a> () const</td></tr>
<tr class="separator:af58a39507bc65b3803c237e585f23ed3 inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a983efb9188e4573a470b3ec367342fe5 inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#a983efb9188e4573a470b3ec367342fe5">encode</a> ()</td></tr>
<tr class="separator:a983efb9188e4573a470b3ec367342fe5 inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af6c59c79679f50dd9c9e3ae05d2ec3c5 inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_tpublic_8h.html#a071841985f647f69516dbe77d93167f2">H5T_class_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#af6c59c79679f50dd9c9e3ae05d2ec3c5">getClass</a> () const</td></tr>
<tr class="separator:af6c59c79679f50dd9c9e3ae05d2ec3c5 inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a50c72aa320066e0c782cbbe4d4f68a55 inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#a50c72aa320066e0c782cbbe4d4f68a55">commit</a> (const <a class="el" href="class_h5_1_1_h5_location.html">H5Location</a> &amp;loc, const char *name)</td></tr>
<tr class="separator:a50c72aa320066e0c782cbbe4d4f68a55 inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adac246f2356cc6ce8526dc09d9838ebd inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#adac246f2356cc6ce8526dc09d9838ebd">commit</a> (const <a class="el" href="class_h5_1_1_h5_location.html">H5Location</a> &amp;loc, const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;name)</td></tr>
<tr class="separator:adac246f2356cc6ce8526dc09d9838ebd inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af0874817151faa42361bb657f397e0dc inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#af0874817151faa42361bb657f397e0dc">committed</a> () const</td></tr>
<tr class="separator:af0874817151faa42361bb657f397e0dc inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1422bcd1c9fc4bfb85a596eb08cdfed6 inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_tdevelop_8h.html#a5dcae1e3122cc65cb9553ce72d9ddc54">H5T_conv_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#a1422bcd1c9fc4bfb85a596eb08cdfed6">find</a> (const <a class="el" href="class_h5_1_1_data_type.html">DataType</a> &amp;dest, <a class="el" href="struct_h5_t__cdata__t.html">H5T_cdata_t</a> **pcdata) const</td></tr>
<tr class="separator:a1422bcd1c9fc4bfb85a596eb08cdfed6 inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4c923e6248632f7dc8a09bc3def3c073 inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#a4c923e6248632f7dc8a09bc3def3c073">convert</a> (const <a class="el" href="class_h5_1_1_data_type.html">DataType</a> &amp;dest, size_t nelmts, void *buf, void *background, const <a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;plist=<a class="el" href="class_h5_1_1_prop_list.html#a5b68b4892eb2eff8946c3ea40babca0a">PropList::DEFAULT</a>) const</td></tr>
<tr class="separator:a4c923e6248632f7dc8a09bc3def3c073 inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a37df55706ef514cff6c3b79bd3600ebd inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_data_type.html">DataType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#a37df55706ef514cff6c3b79bd3600ebd">operator=</a> (const <a class="el" href="class_h5_1_1_data_type.html">DataType</a> &amp;rhs)</td></tr>
<tr class="separator:a37df55706ef514cff6c3b79bd3600ebd inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af0fb071be13085933196b2f5dffee8bf inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#af0fb071be13085933196b2f5dffee8bf">operator==</a> (const <a class="el" href="class_h5_1_1_data_type.html">DataType</a> &amp;compared_type) const</td></tr>
<tr class="separator:af0fb071be13085933196b2f5dffee8bf inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a389235a1d1b8904d9a44b2d9d227d2e2 inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#a389235a1d1b8904d9a44b2d9d227d2e2">operator!=</a> (const <a class="el" href="class_h5_1_1_data_type.html">DataType</a> &amp;compared_type) const</td></tr>
<tr class="separator:a389235a1d1b8904d9a44b2d9d227d2e2 inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0af0c6e3920cd67025211889c98807db inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#a0af0c6e3920cd67025211889c98807db">lock</a> () const</td></tr>
<tr class="separator:a0af0c6e3920cd67025211889c98807db inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9be1e4285daa77fe397767c097fbdc66 inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">size_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#a9be1e4285daa77fe397767c097fbdc66">getSize</a> () const</td></tr>
<tr class="separator:a9be1e4285daa77fe397767c097fbdc66 inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3f31d16a2dae9f56a6370a5efb9e4007 inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_data_type.html">DataType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#a3f31d16a2dae9f56a6370a5efb9e4007">getSuper</a> () const</td></tr>
<tr class="separator:a3f31d16a2dae9f56a6370a5efb9e4007 inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a44bd5fea29b828eccd4d42bb6fadbb29 inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#a44bd5fea29b828eccd4d42bb6fadbb29">registerFunc</a> (<a class="el" href="_h5_tdevelop_8h.html#ade8bfa5625e0b17bae72f10246be3c7e">H5T_pers_t</a> pers, const char *name, const <a class="el" href="class_h5_1_1_data_type.html">DataType</a> &amp;dest, <a class="el" href="_h5_tdevelop_8h.html#a5dcae1e3122cc65cb9553ce72d9ddc54">H5T_conv_t</a> func) const</td></tr>
<tr class="separator:a44bd5fea29b828eccd4d42bb6fadbb29 inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae02f131fcd48c885d4bd15856821331b inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#ae02f131fcd48c885d4bd15856821331b">registerFunc</a> (<a class="el" href="_h5_tdevelop_8h.html#ade8bfa5625e0b17bae72f10246be3c7e">H5T_pers_t</a> pers, const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;name, const <a class="el" href="class_h5_1_1_data_type.html">DataType</a> &amp;dest, <a class="el" href="_h5_tdevelop_8h.html#a5dcae1e3122cc65cb9553ce72d9ddc54">H5T_conv_t</a> func) const</td></tr>
<tr class="separator:ae02f131fcd48c885d4bd15856821331b inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2d6f6b9d5b788b2c5c42212c17ee54bf inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#a2d6f6b9d5b788b2c5c42212c17ee54bf">unregister</a> (<a class="el" href="_h5_tdevelop_8h.html#ade8bfa5625e0b17bae72f10246be3c7e">H5T_pers_t</a> pers, const char *name, const <a class="el" href="class_h5_1_1_data_type.html">DataType</a> &amp;dest, <a class="el" href="_h5_tdevelop_8h.html#a5dcae1e3122cc65cb9553ce72d9ddc54">H5T_conv_t</a> func) const</td></tr>
<tr class="separator:a2d6f6b9d5b788b2c5c42212c17ee54bf inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa5fddd8b26eae8f07e05736b46163655 inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#aa5fddd8b26eae8f07e05736b46163655">unregister</a> (<a class="el" href="_h5_tdevelop_8h.html#ade8bfa5625e0b17bae72f10246be3c7e">H5T_pers_t</a> pers, const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;name, const <a class="el" href="class_h5_1_1_data_type.html">DataType</a> &amp;dest, <a class="el" href="_h5_tdevelop_8h.html#a5dcae1e3122cc65cb9553ce72d9ddc54">H5T_conv_t</a> func) const</td></tr>
<tr class="separator:aa5fddd8b26eae8f07e05736b46163655 inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acafe68636c5a715a05962321f9c2bf29 inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#acafe68636c5a715a05962321f9c2bf29">setTag</a> (const char *tag) const</td></tr>
<tr class="separator:acafe68636c5a715a05962321f9c2bf29 inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a40c235955a7679e52e0c0e6c1795f7c1 inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#a40c235955a7679e52e0c0e6c1795f7c1">setTag</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;tag) const</td></tr>
<tr class="separator:a40c235955a7679e52e0c0e6c1795f7c1 inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8a70a1093aa221aeeda4875ff1f73f08 inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#a8a70a1093aa221aeeda4875ff1f73f08">getTag</a> () const</td></tr>
<tr class="separator:a8a70a1093aa221aeeda4875ff1f73f08 inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7d7c7b81297aee1a1442240e98f135de inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#a7d7c7b81297aee1a1442240e98f135de">detectClass</a> (<a class="el" href="_h5_tpublic_8h.html#a071841985f647f69516dbe77d93167f2">H5T_class_t</a> cls) const</td></tr>
<tr class="separator:a7d7c7b81297aee1a1442240e98f135de inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7cf8f832989cccfea47bd7d7da80e007 inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#a7cf8f832989cccfea47bd7d7da80e007">isVariableStr</a> () const</td></tr>
<tr class="separator:a7cf8f832989cccfea47bd7d7da80e007 inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a73dd93a02b9d3cccf7c81ae96f3e9e95 inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_prop_list.html">PropList</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#a73dd93a02b9d3cccf7c81ae96f3e9e95">getCreatePlist</a> () const</td></tr>
<tr class="separator:a73dd93a02b9d3cccf7c81ae96f3e9e95 inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adeb53ea465a862947e76ad5d26e431a3 inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#adeb53ea465a862947e76ad5d26e431a3">DataType</a> (const <a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> type_id)</td></tr>
<tr class="separator:adeb53ea465a862947e76ad5d26e431a3 inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a156d4c7e0f8fa447b0c4514641060f8b inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#a156d4c7e0f8fa447b0c4514641060f8b">DataType</a> ()</td></tr>
<tr class="separator:a156d4c7e0f8fa447b0c4514641060f8b inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab9be2c6047a50fe6c0eb8c6756f272f2 inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#ab9be2c6047a50fe6c0eb8c6756f272f2">hasBinaryDesc</a> () const</td></tr>
<tr class="separator:ab9be2c6047a50fe6c0eb8c6756f272f2 inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa5eda254838615bd58b46e86bfbb717f inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#aa5eda254838615bd58b46e86bfbb717f">getId</a> () const override</td></tr>
<tr class="separator:aa5eda254838615bd58b46e86bfbb717f inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa2ed0fc985843a1d07751fe8f12e988d inherit pub_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#aa2ed0fc985843a1d07751fe8f12e988d">~DataType</a> () override</td></tr>
<tr class="separator:aa2ed0fc985843a1d07751fe8f12e988d inherit pub_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_class_h5_1_1_h5_object"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_class_h5_1_1_h5_object')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="class_h5_1_1_h5_object.html">H5Object</a></td></tr>
<tr class="memitem:aa12b8a193aa396b38f1a81768c107769 inherit pub_methods_class_h5_1_1_h5_object"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_attribute.html">Attribute</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_object.html#aa12b8a193aa396b38f1a81768c107769">createAttribute</a> (const char *name, const <a class="el" href="class_h5_1_1_data_type.html">DataType</a> &amp;type, const <a class="el" href="class_h5_1_1_data_space.html">DataSpace</a> &amp;space, const <a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;create_plist=<a class="el" href="class_h5_1_1_prop_list.html#a5b68b4892eb2eff8946c3ea40babca0a">PropList::DEFAULT</a>) const</td></tr>
<tr class="separator:aa12b8a193aa396b38f1a81768c107769 inherit pub_methods_class_h5_1_1_h5_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adc53f6b5de306e6d3f8713f99ef6b2ef inherit pub_methods_class_h5_1_1_h5_object"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_attribute.html">Attribute</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_object.html#adc53f6b5de306e6d3f8713f99ef6b2ef">createAttribute</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;name, const <a class="el" href="class_h5_1_1_data_type.html">DataType</a> &amp;type, const <a class="el" href="class_h5_1_1_data_space.html">DataSpace</a> &amp;space, const <a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;create_plist=<a class="el" href="class_h5_1_1_prop_list.html#a5b68b4892eb2eff8946c3ea40babca0a">PropList::DEFAULT</a>) const</td></tr>
<tr class="separator:adc53f6b5de306e6d3f8713f99ef6b2ef inherit pub_methods_class_h5_1_1_h5_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a30ede2759440861003206ea463950912 inherit pub_methods_class_h5_1_1_h5_object"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_attribute.html">Attribute</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_object.html#a30ede2759440861003206ea463950912">openAttribute</a> (const char *name) const</td></tr>
<tr class="separator:a30ede2759440861003206ea463950912 inherit pub_methods_class_h5_1_1_h5_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6c770f5047e9b960741cdbe8f8bdd333 inherit pub_methods_class_h5_1_1_h5_object"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_attribute.html">Attribute</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_object.html#a6c770f5047e9b960741cdbe8f8bdd333">openAttribute</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;name) const</td></tr>
<tr class="separator:a6c770f5047e9b960741cdbe8f8bdd333 inherit pub_methods_class_h5_1_1_h5_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7d4fa78efce7c3f38c8de49341d70349 inherit pub_methods_class_h5_1_1_h5_object"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_attribute.html">Attribute</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_object.html#a7d4fa78efce7c3f38c8de49341d70349">openAttribute</a> (const unsigned int idx) const</td></tr>
<tr class="separator:a7d4fa78efce7c3f38c8de49341d70349 inherit pub_methods_class_h5_1_1_h5_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad95b9c9b0653998fa39d40a403fcdd65 inherit pub_methods_class_h5_1_1_h5_object"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_object.html#ad95b9c9b0653998fa39d40a403fcdd65">iterateAttrs</a> (<a class="el" href="namespace_h5.html#aaff4ab7e0bf94f2082ac3b1991a4ec5d">attr_operator_t</a> user_op, unsigned *idx=NULL, void *op_data=NULL)</td></tr>
<tr class="separator:ad95b9c9b0653998fa39d40a403fcdd65 inherit pub_methods_class_h5_1_1_h5_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7b5efa6e905253d02af31c642a2395cf inherit pub_methods_class_h5_1_1_h5_object"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_object.html#a7b5efa6e905253d02af31c642a2395cf">visit</a> (<a class="el" href="_h5public_8h.html#a8203c78e10ab2d89d8bce688a31afad3">H5_index_t</a> idx_type, <a class="el" href="_h5public_8h.html#a6a6ddd1504d1ed61939d46d91d9441b9">H5_iter_order_t</a> order, <a class="el" href="namespace_h5.html#a947845193996f95f6017b1ae6d3044c7">visit_operator_t</a> user_op, void *op_data, unsigned int fields)</td></tr>
<tr class="separator:a7b5efa6e905253d02af31c642a2395cf inherit pub_methods_class_h5_1_1_h5_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7ef85ec76e25ccffe2807f0a174f4f1c inherit pub_methods_class_h5_1_1_h5_object"><td class="memItemLeft" align="right" valign="top">unsigned&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_object.html#a7ef85ec76e25ccffe2807f0a174f4f1c">objVersion</a> () const</td></tr>
<tr class="separator:a7ef85ec76e25ccffe2807f0a174f4f1c inherit pub_methods_class_h5_1_1_h5_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2dcc2ca0ddc9b07a609579c3a2011b8e inherit pub_methods_class_h5_1_1_h5_object"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_object.html#a2dcc2ca0ddc9b07a609579c3a2011b8e">getNumAttrs</a> () const</td></tr>
<tr class="separator:a2dcc2ca0ddc9b07a609579c3a2011b8e inherit pub_methods_class_h5_1_1_h5_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1e5442864521bd4a43538b978c7a182c inherit pub_methods_class_h5_1_1_h5_object"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_object.html#a1e5442864521bd4a43538b978c7a182c">attrExists</a> (const char *name) const</td></tr>
<tr class="separator:a1e5442864521bd4a43538b978c7a182c inherit pub_methods_class_h5_1_1_h5_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac55c51e061707be942daaa679628f29e inherit pub_methods_class_h5_1_1_h5_object"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_object.html#ac55c51e061707be942daaa679628f29e">attrExists</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;name) const</td></tr>
<tr class="separator:ac55c51e061707be942daaa679628f29e inherit pub_methods_class_h5_1_1_h5_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a466ba22ebe37cb75c4b24af16c16c065 inherit pub_methods_class_h5_1_1_h5_object"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_object.html#a466ba22ebe37cb75c4b24af16c16c065">renameAttr</a> (const char *oldname, const char *newname) const</td></tr>
<tr class="separator:a466ba22ebe37cb75c4b24af16c16c065 inherit pub_methods_class_h5_1_1_h5_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a087afa9443078f97819d9cf16ae81430 inherit pub_methods_class_h5_1_1_h5_object"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_object.html#a087afa9443078f97819d9cf16ae81430">renameAttr</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;oldname, const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;newname) const</td></tr>
<tr class="separator:a087afa9443078f97819d9cf16ae81430 inherit pub_methods_class_h5_1_1_h5_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aad69c130fccb203bbd467fd5d7696a2a inherit pub_methods_class_h5_1_1_h5_object"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_object.html#aad69c130fccb203bbd467fd5d7696a2a">removeAttr</a> (const char *name) const</td></tr>
<tr class="separator:aad69c130fccb203bbd467fd5d7696a2a inherit pub_methods_class_h5_1_1_h5_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8728ae132f488efef9b00e65a7de552f inherit pub_methods_class_h5_1_1_h5_object"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_object.html#a8728ae132f488efef9b00e65a7de552f">removeAttr</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;name) const</td></tr>
<tr class="separator:a8728ae132f488efef9b00e65a7de552f inherit pub_methods_class_h5_1_1_h5_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a20fb8e3aab8e4c65ce4f3585e806f65f inherit pub_methods_class_h5_1_1_h5_object"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#af629ed855824cf5955b54529adf78ad6">ssize_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_object.html#a20fb8e3aab8e4c65ce4f3585e806f65f">getObjName</a> (char *obj_name, size_t buf_size=0) const</td></tr>
<tr class="separator:a20fb8e3aab8e4c65ce4f3585e806f65f inherit pub_methods_class_h5_1_1_h5_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a49e2783100d5d3a8e123f1c874ed2a98 inherit pub_methods_class_h5_1_1_h5_object"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#af629ed855824cf5955b54529adf78ad6">ssize_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_object.html#a49e2783100d5d3a8e123f1c874ed2a98">getObjName</a> (<a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;obj_name, size_t len=0) const</td></tr>
<tr class="separator:a49e2783100d5d3a8e123f1c874ed2a98 inherit pub_methods_class_h5_1_1_h5_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adaeae65f817e7fd05de5c4493819e15c inherit pub_methods_class_h5_1_1_h5_object"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_object.html#adaeae65f817e7fd05de5c4493819e15c">getObjName</a> () const</td></tr>
<tr class="separator:adaeae65f817e7fd05de5c4493819e15c inherit pub_methods_class_h5_1_1_h5_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_class_h5_1_1_h5_location"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_class_h5_1_1_h5_location')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="class_h5_1_1_h5_location.html">H5Location</a></td></tr>
<tr class="memitem:a5b6a3c3a1ce9b32908d16c3889f4640a inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a5b6a3c3a1ce9b32908d16c3889f4640a">nameExists</a> (const char *name, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:a5b6a3c3a1ce9b32908d16c3889f4640a inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6accdac30fdf67f625c7d056383b08d6 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a6accdac30fdf67f625c7d056383b08d6">nameExists</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;name, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:a6accdac30fdf67f625c7d056383b08d6 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1fc65b060b1dfe574db45aabc40f2e49 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a1fc65b060b1dfe574db45aabc40f2e49">exists</a> (const char *name, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:a1fc65b060b1dfe574db45aabc40f2e49 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:add6c77c673fec9822200470e994fa86e inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#add6c77c673fec9822200470e994fa86e">exists</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;name, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:add6c77c673fec9822200470e994fa86e inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2104e3fc68762ce4429c7be29c28db97 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a2104e3fc68762ce4429c7be29c28db97">flush</a> (<a class="el" href="_h5_fpublic_8h.html#ac9db1b1211555797021daed9b54b8cdf">H5F_scope_t</a> scope) const</td></tr>
<tr class="separator:a2104e3fc68762ce4429c7be29c28db97 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6bf9c11f574b7c96c339a422df957ba5 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a6bf9c11f574b7c96c339a422df957ba5">getFileName</a> () const</td></tr>
<tr class="separator:a6bf9c11f574b7c96c339a422df957ba5 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac3ff28dfead33f31d4a306ac64a2e8ea inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_gpublic_8h.html#a4ee921b13233a7c297b81a49022a1dd6">H5G_obj_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#ac3ff28dfead33f31d4a306ac64a2e8ea">getObjType</a> (void *ref, <a class="el" href="_h5_rpublic_8h.html#a7d148ddc165e65b01efabfd738ac056e">H5R_type_t</a> ref_type=<a class="el" href="_h5_rpublic_8h.html#ae1ffa09875ca6778df3a577592dacbd2">H5R_OBJECT</a>) const</td></tr>
<tr class="separator:ac3ff28dfead33f31d4a306ac64a2e8ea inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0764f5065e3d73bf9d8622abad6ff04f inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_opublic_8h.html#a929ff459574495f461657f6be804cdec">H5O_type_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a0764f5065e3d73bf9d8622abad6ff04f">getRefObjType</a> (void *ref, <a class="el" href="_h5_rpublic_8h.html#a7d148ddc165e65b01efabfd738ac056e">H5R_type_t</a> ref_type=<a class="el" href="_h5_rpublic_8h.html#ae1ffa09875ca6778df3a577592dacbd2">H5R_OBJECT</a>) const</td></tr>
<tr class="separator:a0764f5065e3d73bf9d8622abad6ff04f inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa56c64dfb8674c33950b433743071959 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#aa56c64dfb8674c33950b433743071959">setComment</a> (const char *name, const char *comment) const</td></tr>
<tr class="separator:aa56c64dfb8674c33950b433743071959 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af9ec33f378ba999692a80d444f1fbf10 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#af9ec33f378ba999692a80d444f1fbf10">setComment</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;name, const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;comment) const</td></tr>
<tr class="separator:af9ec33f378ba999692a80d444f1fbf10 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a19a0a1fceafc2da4168edb9e955309e0 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a19a0a1fceafc2da4168edb9e955309e0">setComment</a> (const char *comment) const</td></tr>
<tr class="separator:a19a0a1fceafc2da4168edb9e955309e0 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abc8f03c5c6adfd59dc5ddbe3b8023f71 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#abc8f03c5c6adfd59dc5ddbe3b8023f71">setComment</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;comment) const</td></tr>
<tr class="separator:abc8f03c5c6adfd59dc5ddbe3b8023f71 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adccf847e61fa75526eba225cfbfcb1a9 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#af629ed855824cf5955b54529adf78ad6">ssize_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#adccf847e61fa75526eba225cfbfcb1a9">getComment</a> (const char *name, size_t buf_size, char *comment) const</td></tr>
<tr class="separator:adccf847e61fa75526eba225cfbfcb1a9 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6b474a93bea01095f8bdfef23783b417 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a6b474a93bea01095f8bdfef23783b417">getComment</a> (const char *name, size_t buf_size=0) const</td></tr>
<tr class="separator:a6b474a93bea01095f8bdfef23783b417 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac19e0d3c4cc726e0496b4c6637b7a898 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#ac19e0d3c4cc726e0496b4c6637b7a898">getComment</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;name, size_t buf_size=0) const</td></tr>
<tr class="separator:ac19e0d3c4cc726e0496b4c6637b7a898 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1502537157b519256fbc8c1b86964c30 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a1502537157b519256fbc8c1b86964c30">removeComment</a> (const char *name) const</td></tr>
<tr class="separator:a1502537157b519256fbc8c1b86964c30 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a781501efc74cb885ac35cf19cb7b6034 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a781501efc74cb885ac35cf19cb7b6034">removeComment</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;name) const</td></tr>
<tr class="separator:a781501efc74cb885ac35cf19cb7b6034 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a70afc0096783fa2029e5fd68090a8178 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a70afc0096783fa2029e5fd68090a8178">reference</a> (void *ref, const char *name, <a class="el" href="_h5_rpublic_8h.html#a7d148ddc165e65b01efabfd738ac056e">H5R_type_t</a> ref_type=<a class="el" href="_h5_rpublic_8h.html#ae1ffa09875ca6778df3a577592dacbd2">H5R_OBJECT</a>) const</td></tr>
<tr class="separator:a70afc0096783fa2029e5fd68090a8178 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8b07c2bc74f5d041795e19a7dbb5938b inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a8b07c2bc74f5d041795e19a7dbb5938b">reference</a> (void *ref, const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;name, <a class="el" href="_h5_rpublic_8h.html#a7d148ddc165e65b01efabfd738ac056e">H5R_type_t</a> ref_type=<a class="el" href="_h5_rpublic_8h.html#ae1ffa09875ca6778df3a577592dacbd2">H5R_OBJECT</a>) const</td></tr>
<tr class="separator:a8b07c2bc74f5d041795e19a7dbb5938b inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7938549264e27dc774bdc971aedf6a14 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a7938549264e27dc774bdc971aedf6a14">reference</a> (void *ref, const char *name, const <a class="el" href="class_h5_1_1_data_space.html">DataSpace</a> &amp;dataspace, <a class="el" href="_h5_rpublic_8h.html#a7d148ddc165e65b01efabfd738ac056e">H5R_type_t</a> ref_type=<a class="el" href="_h5_rpublic_8h.html#a2a28c48c03a4616a02f9157fca4b2df0">H5R_DATASET_REGION</a>) const</td></tr>
<tr class="separator:a7938549264e27dc774bdc971aedf6a14 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa9c6429cbae80da2d9c205d288ed9b56 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#aa9c6429cbae80da2d9c205d288ed9b56">reference</a> (void *ref, const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;name, const <a class="el" href="class_h5_1_1_data_space.html">DataSpace</a> &amp;dataspace, <a class="el" href="_h5_rpublic_8h.html#a7d148ddc165e65b01efabfd738ac056e">H5R_type_t</a> ref_type=<a class="el" href="_h5_rpublic_8h.html#a2a28c48c03a4616a02f9157fca4b2df0">H5R_DATASET_REGION</a>) const</td></tr>
<tr class="separator:aa9c6429cbae80da2d9c205d288ed9b56 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6606634f31d164f52528bd4acf58a0c2 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a6606634f31d164f52528bd4acf58a0c2">dereference</a> (const <a class="el" href="class_h5_1_1_h5_location.html">H5Location</a> &amp;loc, const void *ref, <a class="el" href="_h5_rpublic_8h.html#a7d148ddc165e65b01efabfd738ac056e">H5R_type_t</a> ref_type=<a class="el" href="_h5_rpublic_8h.html#ae1ffa09875ca6778df3a577592dacbd2">H5R_OBJECT</a>, const <a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;plist=<a class="el" href="class_h5_1_1_prop_list.html#a5b68b4892eb2eff8946c3ea40babca0a">PropList::DEFAULT</a>)</td></tr>
<tr class="separator:a6606634f31d164f52528bd4acf58a0c2 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5bf58c348bd0fd46883c47a1b0b636ac inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_data_space.html">DataSpace</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a5bf58c348bd0fd46883c47a1b0b636ac">getRegion</a> (void *ref, <a class="el" href="_h5_rpublic_8h.html#a7d148ddc165e65b01efabfd738ac056e">H5R_type_t</a> ref_type=<a class="el" href="_h5_rpublic_8h.html#a2a28c48c03a4616a02f9157fca4b2df0">H5R_DATASET_REGION</a>) const</td></tr>
<tr class="separator:a5bf58c348bd0fd46883c47a1b0b636ac inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1170b4bbd897073e8b9c9597c453fb83 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_group.html">Group</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a1170b4bbd897073e8b9c9597c453fb83">createGroup</a> (const char *name, const <a class="el" href="class_h5_1_1_link_creat_prop_list.html">LinkCreatPropList</a> &amp;lcpl) const</td></tr>
<tr class="separator:a1170b4bbd897073e8b9c9597c453fb83 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a28388d632549aa09f4852bbbbca8df81 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_group.html">Group</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a28388d632549aa09f4852bbbbca8df81">createGroup</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;name, const <a class="el" href="class_h5_1_1_link_creat_prop_list.html">LinkCreatPropList</a> &amp;lcpl) const</td></tr>
<tr class="separator:a28388d632549aa09f4852bbbbca8df81 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aaf8c5b6e837f3ab5b227f763b3fc51a6 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_group.html">Group</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#aaf8c5b6e837f3ab5b227f763b3fc51a6">createGroup</a> (const char *name, size_t size_hint=0) const</td></tr>
<tr class="separator:aaf8c5b6e837f3ab5b227f763b3fc51a6 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2a7447fa8365da6a0ba8ff8fc6c7b02b inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_group.html">Group</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a2a7447fa8365da6a0ba8ff8fc6c7b02b">createGroup</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;name, size_t size_hint=0) const</td></tr>
<tr class="separator:a2a7447fa8365da6a0ba8ff8fc6c7b02b inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a301193cbd19f2a72fedda3bf01bb8c1c inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_group.html">Group</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a301193cbd19f2a72fedda3bf01bb8c1c">openGroup</a> (const char *name) const</td></tr>
<tr class="separator:a301193cbd19f2a72fedda3bf01bb8c1c inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a40786ac7741054bf9b626160f5fae558 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_group.html">Group</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a40786ac7741054bf9b626160f5fae558">openGroup</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;name) const</td></tr>
<tr class="separator:a40786ac7741054bf9b626160f5fae558 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0ab5e67af561d801c121e2b6bce9cb9c inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_data_set.html">DataSet</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a0ab5e67af561d801c121e2b6bce9cb9c">createDataSet</a> (const char *name, const <a class="el" href="class_h5_1_1_data_type.html">DataType</a> &amp;data_type, const <a class="el" href="class_h5_1_1_data_space.html">DataSpace</a> &amp;data_space, const <a class="el" href="class_h5_1_1_d_set_creat_prop_list.html">DSetCreatPropList</a> &amp;create_plist=<a class="el" href="class_h5_1_1_d_set_creat_prop_list.html#a63ed1e479ff9a4db8c636fa7d6932ddc">DSetCreatPropList::DEFAULT</a>, const <a class="el" href="class_h5_1_1_d_set_acc_prop_list.html">DSetAccPropList</a> &amp;dapl=<a class="el" href="class_h5_1_1_d_set_acc_prop_list.html#aa1c3c364336f0d365f119e1c6a555e17">DSetAccPropList::DEFAULT</a>, const <a class="el" href="class_h5_1_1_link_creat_prop_list.html">LinkCreatPropList</a> &amp;lcpl=<a class="el" href="class_h5_1_1_link_creat_prop_list.html#a018f6d174b04c91a4eca27f16c819fd1">LinkCreatPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:a0ab5e67af561d801c121e2b6bce9cb9c inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a834121f8aaca0e2aac7895eeeac8cea9 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_data_set.html">DataSet</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a834121f8aaca0e2aac7895eeeac8cea9">createDataSet</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;name, const <a class="el" href="class_h5_1_1_data_type.html">DataType</a> &amp;data_type, const <a class="el" href="class_h5_1_1_data_space.html">DataSpace</a> &amp;data_space, const <a class="el" href="class_h5_1_1_d_set_creat_prop_list.html">DSetCreatPropList</a> &amp;create_plist=<a class="el" href="class_h5_1_1_d_set_creat_prop_list.html#a63ed1e479ff9a4db8c636fa7d6932ddc">DSetCreatPropList::DEFAULT</a>, const <a class="el" href="class_h5_1_1_d_set_acc_prop_list.html">DSetAccPropList</a> &amp;dapl=<a class="el" href="class_h5_1_1_d_set_acc_prop_list.html#aa1c3c364336f0d365f119e1c6a555e17">DSetAccPropList::DEFAULT</a>, const <a class="el" href="class_h5_1_1_link_creat_prop_list.html">LinkCreatPropList</a> &amp;lcpl=<a class="el" href="class_h5_1_1_link_creat_prop_list.html#a018f6d174b04c91a4eca27f16c819fd1">LinkCreatPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:a834121f8aaca0e2aac7895eeeac8cea9 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab272fc7c02575b1dd1f203a4fa6d8977 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_data_set.html">DataSet</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#ab272fc7c02575b1dd1f203a4fa6d8977">openDataSet</a> (const char *name, const <a class="el" href="class_h5_1_1_d_set_acc_prop_list.html">DSetAccPropList</a> &amp;dapl=<a class="el" href="class_h5_1_1_d_set_acc_prop_list.html#aa1c3c364336f0d365f119e1c6a555e17">DSetAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:ab272fc7c02575b1dd1f203a4fa6d8977 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a346eb9503d81d44b5e2a74f66f71f5ce inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_data_set.html">DataSet</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a346eb9503d81d44b5e2a74f66f71f5ce">openDataSet</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;name, const <a class="el" href="class_h5_1_1_d_set_acc_prop_list.html">DSetAccPropList</a> &amp;dapl=<a class="el" href="class_h5_1_1_d_set_acc_prop_list.html#aa1c3c364336f0d365f119e1c6a555e17">DSetAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:a346eb9503d81d44b5e2a74f66f71f5ce inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2cf5041c59c32e737aa2c11075af27b9 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="struct_h5_l__info2__t.html">H5L_info2_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a2cf5041c59c32e737aa2c11075af27b9">getLinkInfo</a> (const char *link_name, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:a2cf5041c59c32e737aa2c11075af27b9 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6ff35cde90cbb2bde649eec44a39c481 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="struct_h5_l__info2__t.html">H5L_info2_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a6ff35cde90cbb2bde649eec44a39c481">getLinkInfo</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;link_name, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:a6ff35cde90cbb2bde649eec44a39c481 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab8d8111c98847ff0c154fae00b195368 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#ab8d8111c98847ff0c154fae00b195368">getLinkval</a> (const char *link_name, size_t size=0) const</td></tr>
<tr class="separator:ab8d8111c98847ff0c154fae00b195368 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a927626dd6ffa9d76ce1a92afeaa988a4 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a927626dd6ffa9d76ce1a92afeaa988a4">getLinkval</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;link_name, size_t size=0) const</td></tr>
<tr class="separator:a927626dd6ffa9d76ce1a92afeaa988a4 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a229810034cc99e1d839b1c3d99142301 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a229810034cc99e1d839b1c3d99142301">getNumObjs</a> () const</td></tr>
<tr class="separator:a229810034cc99e1d839b1c3d99142301 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4675ca8d4a4138820836fae7577e8b91 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a4675ca8d4a4138820836fae7577e8b91">getObjnameByIdx</a> (<a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a> idx) const</td></tr>
<tr class="separator:a4675ca8d4a4138820836fae7577e8b91 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac479605d59dd4ef73e2839f4d62af8ce inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#af629ed855824cf5955b54529adf78ad6">ssize_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#ac479605d59dd4ef73e2839f4d62af8ce">getObjnameByIdx</a> (<a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a> idx, char *name, size_t size) const</td></tr>
<tr class="separator:ac479605d59dd4ef73e2839f4d62af8ce inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a39e51dee8e8e44a1317173805d6cd458 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5public_8h.html#af629ed855824cf5955b54529adf78ad6">ssize_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a39e51dee8e8e44a1317173805d6cd458">getObjnameByIdx</a> (<a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a> idx, <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;name, size_t size) const</td></tr>
<tr class="separator:a39e51dee8e8e44a1317173805d6cd458 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a315669ed438a23f1f6b174bdaaf7a0e4 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_opublic_8h.html#a929ff459574495f461657f6be804cdec">H5O_type_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a315669ed438a23f1f6b174bdaaf7a0e4">childObjType</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;objname) const</td></tr>
<tr class="separator:a315669ed438a23f1f6b174bdaaf7a0e4 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac33546570ade4c5cc55b5d265d96e97c inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_opublic_8h.html#a929ff459574495f461657f6be804cdec">H5O_type_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#ac33546570ade4c5cc55b5d265d96e97c">childObjType</a> (const char *objname) const</td></tr>
<tr class="separator:ac33546570ade4c5cc55b5d265d96e97c inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac0436c82ef1e538e2789e7b7b8e69c46 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_opublic_8h.html#a929ff459574495f461657f6be804cdec">H5O_type_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#ac0436c82ef1e538e2789e7b7b8e69c46">childObjType</a> (<a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a> index, <a class="el" href="_h5public_8h.html#a8203c78e10ab2d89d8bce688a31afad3">H5_index_t</a> index_type=<a class="el" href="_h5public_8h.html#a8203c78e10ab2d89d8bce688a31afad3a644e6701706be4d37660864336c7bd3e">H5_INDEX_NAME</a>, <a class="el" href="_h5public_8h.html#a6a6ddd1504d1ed61939d46d91d9441b9">H5_iter_order_t</a> order=<a class="el" href="_h5public_8h.html#a6a6ddd1504d1ed61939d46d91d9441b9a80c3e083c0a77063b1a66553decfcb08">H5_ITER_INC</a>, const char *objname=&quot;.&quot;) const</td></tr>
<tr class="separator:ac0436c82ef1e538e2789e7b7b8e69c46 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6f31a372d6fd95e6191175faab7784f7 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">unsigned&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a6f31a372d6fd95e6191175faab7784f7">childObjVersion</a> (const char *objname) const</td></tr>
<tr class="separator:a6f31a372d6fd95e6191175faab7784f7 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a86667af38fe350840b53cafb33f55700 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">unsigned&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a86667af38fe350840b53cafb33f55700">childObjVersion</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;objname) const</td></tr>
<tr class="separator:a86667af38fe350840b53cafb33f55700 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0ffe7e82c2ac2bc76fa3c6b76356eba3 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a0ffe7e82c2ac2bc76fa3c6b76356eba3">getObjinfo</a> (<a class="el" href="struct_h5_o__info2__t.html">H5O_info2_t</a> &amp;objinfo, unsigned fields=<a class="el" href="_h5_opublic_8h.html#addd3f3f27f124a16a52c390b8431a878">H5O_INFO_BASIC</a>) const</td></tr>
<tr class="separator:a0ffe7e82c2ac2bc76fa3c6b76356eba3 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5802aac2ce1a720da0bf7bd1824fbe9c inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a5802aac2ce1a720da0bf7bd1824fbe9c">getObjinfo</a> (const char *name, <a class="el" href="struct_h5_o__info2__t.html">H5O_info2_t</a> &amp;objinfo, unsigned fields=<a class="el" href="_h5_opublic_8h.html#addd3f3f27f124a16a52c390b8431a878">H5O_INFO_BASIC</a>, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:a5802aac2ce1a720da0bf7bd1824fbe9c inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae5e17b3d1e96f9d085db02d5a52d6a32 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#ae5e17b3d1e96f9d085db02d5a52d6a32">getObjinfo</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;name, <a class="el" href="struct_h5_o__info2__t.html">H5O_info2_t</a> &amp;objinfo, unsigned fields=<a class="el" href="_h5_opublic_8h.html#addd3f3f27f124a16a52c390b8431a878">H5O_INFO_BASIC</a>, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:ae5e17b3d1e96f9d085db02d5a52d6a32 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aeb286e69724cef8008d1e3744655d839 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#aeb286e69724cef8008d1e3744655d839">getObjinfo</a> (const char *grp_name, <a class="el" href="_h5public_8h.html#a8203c78e10ab2d89d8bce688a31afad3">H5_index_t</a> idx_type, <a class="el" href="_h5public_8h.html#a6a6ddd1504d1ed61939d46d91d9441b9">H5_iter_order_t</a> order, <a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a> idx, <a class="el" href="struct_h5_o__info2__t.html">H5O_info2_t</a> &amp;objinfo, unsigned fields=<a class="el" href="_h5_opublic_8h.html#addd3f3f27f124a16a52c390b8431a878">H5O_INFO_BASIC</a>, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:aeb286e69724cef8008d1e3744655d839 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7e5b8ac90f35599a09d112c5a66bd57e inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a7e5b8ac90f35599a09d112c5a66bd57e">getObjinfo</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;grp_name, <a class="el" href="_h5public_8h.html#a8203c78e10ab2d89d8bce688a31afad3">H5_index_t</a> idx_type, <a class="el" href="_h5public_8h.html#a6a6ddd1504d1ed61939d46d91d9441b9">H5_iter_order_t</a> order, <a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a> idx, <a class="el" href="struct_h5_o__info2__t.html">H5O_info2_t</a> &amp;objinfo, unsigned fields=<a class="el" href="_h5_opublic_8h.html#addd3f3f27f124a16a52c390b8431a878">H5O_INFO_BASIC</a>, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:a7e5b8ac90f35599a09d112c5a66bd57e inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad8f50a9493e6a9c772a3a7e211346673 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#ad8f50a9493e6a9c772a3a7e211346673">getNativeObjinfo</a> (<a class="el" href="struct_h5_o__native__info__t.html">H5O_native_info_t</a> &amp;objinfo, unsigned fields=<a class="el" href="_h5_opublic_8h.html#a41832cc0fcd1f5063f28e796733761e2">H5O_NATIVE_INFO_HDR</a>) const</td></tr>
<tr class="separator:ad8f50a9493e6a9c772a3a7e211346673 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0ee01275b10ed8d4066250653fb9cdf2 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a0ee01275b10ed8d4066250653fb9cdf2">getNativeObjinfo</a> (const char *name, <a class="el" href="struct_h5_o__native__info__t.html">H5O_native_info_t</a> &amp;objinfo, unsigned fields=<a class="el" href="_h5_opublic_8h.html#a41832cc0fcd1f5063f28e796733761e2">H5O_NATIVE_INFO_HDR</a>, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:a0ee01275b10ed8d4066250653fb9cdf2 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5de1a845431517b20e8dfe5a40c836e9 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a5de1a845431517b20e8dfe5a40c836e9">getNativeObjinfo</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;name, <a class="el" href="struct_h5_o__native__info__t.html">H5O_native_info_t</a> &amp;objinfo, unsigned fields=<a class="el" href="_h5_opublic_8h.html#a41832cc0fcd1f5063f28e796733761e2">H5O_NATIVE_INFO_HDR</a>, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:a5de1a845431517b20e8dfe5a40c836e9 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aae659675c63b83e2b200c7d696589e3e inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#aae659675c63b83e2b200c7d696589e3e">getNativeObjinfo</a> (const char *grp_name, <a class="el" href="_h5public_8h.html#a8203c78e10ab2d89d8bce688a31afad3">H5_index_t</a> idx_type, <a class="el" href="_h5public_8h.html#a6a6ddd1504d1ed61939d46d91d9441b9">H5_iter_order_t</a> order, <a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a> idx, <a class="el" href="struct_h5_o__native__info__t.html">H5O_native_info_t</a> &amp;objinfo, unsigned fields=<a class="el" href="_h5_opublic_8h.html#a41832cc0fcd1f5063f28e796733761e2">H5O_NATIVE_INFO_HDR</a>, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:aae659675c63b83e2b200c7d696589e3e inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad54f2a701109e623ec157b6b6aa0e86e inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#ad54f2a701109e623ec157b6b6aa0e86e">getNativeObjinfo</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;grp_name, <a class="el" href="_h5public_8h.html#a8203c78e10ab2d89d8bce688a31afad3">H5_index_t</a> idx_type, <a class="el" href="_h5public_8h.html#a6a6ddd1504d1ed61939d46d91d9441b9">H5_iter_order_t</a> order, <a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a> idx, <a class="el" href="struct_h5_o__native__info__t.html">H5O_native_info_t</a> &amp;objinfo, unsigned fields=<a class="el" href="_h5_opublic_8h.html#a41832cc0fcd1f5063f28e796733761e2">H5O_NATIVE_INFO_HDR</a>, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:ad54f2a701109e623ec157b6b6aa0e86e inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5a303b1490791b7e7f2a647a6e672c69 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_gpublic_8h.html#a4ee921b13233a7c297b81a49022a1dd6">H5G_obj_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a5a303b1490791b7e7f2a647a6e672c69">getObjTypeByIdx</a> (<a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a> idx) const</td></tr>
<tr class="separator:a5a303b1490791b7e7f2a647a6e672c69 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aaef8a6c338909ef0eb36c3c82e3ba2ac inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_gpublic_8h.html#a4ee921b13233a7c297b81a49022a1dd6">H5G_obj_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#aaef8a6c338909ef0eb36c3c82e3ba2ac">getObjTypeByIdx</a> (<a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a> idx, char *type_name) const</td></tr>
<tr class="separator:aaef8a6c338909ef0eb36c3c82e3ba2ac inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a109d2428307af12670d5e32aa3d4bc9f inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_gpublic_8h.html#a4ee921b13233a7c297b81a49022a1dd6">H5G_obj_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a109d2428307af12670d5e32aa3d4bc9f">getObjTypeByIdx</a> (<a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a> idx, <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;type_name) const</td></tr>
<tr class="separator:a109d2428307af12670d5e32aa3d4bc9f inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a011442df22e7f4933260150c98d7c18c inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a011442df22e7f4933260150c98d7c18c">getObjinfo</a> (const char *name, <a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> follow_link, <a class="el" href="struct_h5_g__stat__t.html">H5G_stat_t</a> &amp;statbuf) const</td></tr>
<tr class="separator:a011442df22e7f4933260150c98d7c18c inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afcd71b04ffffd2dc3df863d939e67e30 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#afcd71b04ffffd2dc3df863d939e67e30">getObjinfo</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;name, <a class="el" href="_h5public_8h.html#ad470b00eccd2115c707c02de5fa1120d">hbool_t</a> follow_link, <a class="el" href="struct_h5_g__stat__t.html">H5G_stat_t</a> &amp;statbuf) const</td></tr>
<tr class="separator:afcd71b04ffffd2dc3df863d939e67e30 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aabe02b95a3180f8c71cf6a6a6b40416c inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#aabe02b95a3180f8c71cf6a6a6b40416c">getObjinfo</a> (const char *name, <a class="el" href="struct_h5_g__stat__t.html">H5G_stat_t</a> &amp;statbuf) const</td></tr>
<tr class="separator:aabe02b95a3180f8c71cf6a6a6b40416c inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a069dffb1bfcc9e2f5793e9656b2d5e97 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a069dffb1bfcc9e2f5793e9656b2d5e97">getObjinfo</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;name, <a class="el" href="struct_h5_g__stat__t.html">H5G_stat_t</a> &amp;statbuf) const</td></tr>
<tr class="separator:a069dffb1bfcc9e2f5793e9656b2d5e97 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a479bdfa38610b3b5a09d9cfbbf24602c inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a479bdfa38610b3b5a09d9cfbbf24602c">iterateElems</a> (const char *name, int *idx, <a class="el" href="_h5_gpublic_8h.html#aa2bdcd48141dd7db6e4a6d2534801697">H5G_iterate_t</a> op, void *op_data)</td></tr>
<tr class="separator:a479bdfa38610b3b5a09d9cfbbf24602c inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a15e9ece54538c0b2ba669ce487d4e754 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a15e9ece54538c0b2ba669ce487d4e754">iterateElems</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;name, int *idx, <a class="el" href="_h5_gpublic_8h.html#aa2bdcd48141dd7db6e4a6d2534801697">H5G_iterate_t</a> op, void *op_data)</td></tr>
<tr class="separator:a15e9ece54538c0b2ba669ce487d4e754 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a845f8458d7018ac0d384b471ee0e1d1d inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a845f8458d7018ac0d384b471ee0e1d1d">link</a> (const char *target_name, const char *link_name, const <a class="el" href="class_h5_1_1_link_creat_prop_list.html">LinkCreatPropList</a> &amp;lcpl=<a class="el" href="class_h5_1_1_link_creat_prop_list.html#a018f6d174b04c91a4eca27f16c819fd1">LinkCreatPropList::DEFAULT</a>, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:a845f8458d7018ac0d384b471ee0e1d1d inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1d7d588c48fa5c70d838271824e37b63 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a1d7d588c48fa5c70d838271824e37b63">link</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;target_name, const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;link_name, const <a class="el" href="class_h5_1_1_link_creat_prop_list.html">LinkCreatPropList</a> &amp;lcpl=<a class="el" href="class_h5_1_1_link_creat_prop_list.html#a018f6d174b04c91a4eca27f16c819fd1">LinkCreatPropList::DEFAULT</a>, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:a1d7d588c48fa5c70d838271824e37b63 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2cefc83bcb2c70f5d418ea5d34788cdc inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a2cefc83bcb2c70f5d418ea5d34788cdc">link</a> (const char *curr_name, const <a class="el" href="class_h5_1_1_group.html">Group</a> &amp;new_loc, const char *new_name, const <a class="el" href="class_h5_1_1_link_creat_prop_list.html">LinkCreatPropList</a> &amp;lcpl=<a class="el" href="class_h5_1_1_link_creat_prop_list.html#a018f6d174b04c91a4eca27f16c819fd1">LinkCreatPropList::DEFAULT</a>, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:a2cefc83bcb2c70f5d418ea5d34788cdc inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adb471ad7e170e9a8f19dfcf390fec7b6 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#adb471ad7e170e9a8f19dfcf390fec7b6">link</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;curr_name, const <a class="el" href="class_h5_1_1_group.html">Group</a> &amp;new_loc, const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;new_name, const <a class="el" href="class_h5_1_1_link_creat_prop_list.html">LinkCreatPropList</a> &amp;lcpl=<a class="el" href="class_h5_1_1_link_creat_prop_list.html#a018f6d174b04c91a4eca27f16c819fd1">LinkCreatPropList::DEFAULT</a>, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:adb471ad7e170e9a8f19dfcf390fec7b6 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a594827af14cb67aabb7fd9a8f5be7b57 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a594827af14cb67aabb7fd9a8f5be7b57">link</a> (const char *curr_name, const <a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> same_loc, const char *new_name, const <a class="el" href="class_h5_1_1_link_creat_prop_list.html">LinkCreatPropList</a> &amp;lcpl=<a class="el" href="class_h5_1_1_link_creat_prop_list.html#a018f6d174b04c91a4eca27f16c819fd1">LinkCreatPropList::DEFAULT</a>, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:a594827af14cb67aabb7fd9a8f5be7b57 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab6cc62e0a6bd6ac4e2e032be978be6ef inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#ab6cc62e0a6bd6ac4e2e032be978be6ef">link</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;curr_name, const <a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> same_loc, const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;new_name, const <a class="el" href="class_h5_1_1_link_creat_prop_list.html">LinkCreatPropList</a> &amp;lcpl=<a class="el" href="class_h5_1_1_link_creat_prop_list.html#a018f6d174b04c91a4eca27f16c819fd1">LinkCreatPropList::DEFAULT</a>, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:ab6cc62e0a6bd6ac4e2e032be978be6ef inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7235310eac4c5c59ef0c0cb3ea92837c inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a7235310eac4c5c59ef0c0cb3ea92837c">link</a> (<a class="el" href="_h5_lpublic_8h.html#a1e3c5d37c60e7a59b0179e26a4094a48">H5L_type_t</a> link_type, const char *curr_name, const char *new_name) const</td></tr>
<tr class="separator:a7235310eac4c5c59ef0c0cb3ea92837c inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad786e2f951b9634504870e5e8a53a5da inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#ad786e2f951b9634504870e5e8a53a5da">link</a> (<a class="el" href="_h5_lpublic_8h.html#a1e3c5d37c60e7a59b0179e26a4094a48">H5L_type_t</a> link_type, const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;curr_name, const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;new_name) const</td></tr>
<tr class="separator:ad786e2f951b9634504870e5e8a53a5da inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a691bf93d225de96ed59ab2081ffaf593 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a691bf93d225de96ed59ab2081ffaf593">unlink</a> (const char *link_name, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:a691bf93d225de96ed59ab2081ffaf593 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a31549ff86c790a59bdbf57deb1cc720e inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a31549ff86c790a59bdbf57deb1cc720e">unlink</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;link_name, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:a31549ff86c790a59bdbf57deb1cc720e inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad443b50438f2d8a461c135145b1ec5b1 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#ad443b50438f2d8a461c135145b1ec5b1">mount</a> (const char *name, const <a class="el" href="class_h5_1_1_h5_file.html">H5File</a> &amp;child, const <a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;plist) const</td></tr>
<tr class="separator:ad443b50438f2d8a461c135145b1ec5b1 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3bfa9bc0b7b4cce18fcc84e43538fd2f inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a3bfa9bc0b7b4cce18fcc84e43538fd2f">mount</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;name, const <a class="el" href="class_h5_1_1_h5_file.html">H5File</a> &amp;child, const <a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;plist) const</td></tr>
<tr class="separator:a3bfa9bc0b7b4cce18fcc84e43538fd2f inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae09b0dcfd726a556d5d65a0d4400da62 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#ae09b0dcfd726a556d5d65a0d4400da62">unmount</a> (const char *name) const</td></tr>
<tr class="separator:ae09b0dcfd726a556d5d65a0d4400da62 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7e22c0f5247af50825ffb867a2e8ba80 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a7e22c0f5247af50825ffb867a2e8ba80">unmount</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;name) const</td></tr>
<tr class="separator:a7e22c0f5247af50825ffb867a2e8ba80 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4903d4193fdb6a8730eaecbd6c9e41f9 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a4903d4193fdb6a8730eaecbd6c9e41f9">copyLink</a> (const char *src_name, const <a class="el" href="class_h5_1_1_group.html">Group</a> &amp;dst, const char *dst_name, const <a class="el" href="class_h5_1_1_link_creat_prop_list.html">LinkCreatPropList</a> &amp;lcpl=<a class="el" href="class_h5_1_1_link_creat_prop_list.html#a018f6d174b04c91a4eca27f16c819fd1">LinkCreatPropList::DEFAULT</a>, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:a4903d4193fdb6a8730eaecbd6c9e41f9 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae3f54f4b79b0692450926707ff44582f inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#ae3f54f4b79b0692450926707ff44582f">copyLink</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;src_name, const <a class="el" href="class_h5_1_1_group.html">Group</a> &amp;dst, const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;dst_name, const <a class="el" href="class_h5_1_1_link_creat_prop_list.html">LinkCreatPropList</a> &amp;lcpl=<a class="el" href="class_h5_1_1_link_creat_prop_list.html#a018f6d174b04c91a4eca27f16c819fd1">LinkCreatPropList::DEFAULT</a>, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:ae3f54f4b79b0692450926707ff44582f inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab1698c48a6857307bbeed81b845fe375 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#ab1698c48a6857307bbeed81b845fe375">copyLink</a> (const char *src_name, const char *dst_name, const <a class="el" href="class_h5_1_1_link_creat_prop_list.html">LinkCreatPropList</a> &amp;lcpl=<a class="el" href="class_h5_1_1_link_creat_prop_list.html#a018f6d174b04c91a4eca27f16c819fd1">LinkCreatPropList::DEFAULT</a>, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:ab1698c48a6857307bbeed81b845fe375 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a21553c03b077979007ed2cc75b5b70a7 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a21553c03b077979007ed2cc75b5b70a7">copyLink</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;src_name, const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;dst_name, const <a class="el" href="class_h5_1_1_link_creat_prop_list.html">LinkCreatPropList</a> &amp;lcpl=<a class="el" href="class_h5_1_1_link_creat_prop_list.html#a018f6d174b04c91a4eca27f16c819fd1">LinkCreatPropList::DEFAULT</a>, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:a21553c03b077979007ed2cc75b5b70a7 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2ea4c23b57d66f11608b6e0d4ee5bee4 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a2ea4c23b57d66f11608b6e0d4ee5bee4">moveLink</a> (const char *src_name, const <a class="el" href="class_h5_1_1_group.html">Group</a> &amp;dst, const char *dst_name, const <a class="el" href="class_h5_1_1_link_creat_prop_list.html">LinkCreatPropList</a> &amp;lcpl=<a class="el" href="class_h5_1_1_link_creat_prop_list.html#a018f6d174b04c91a4eca27f16c819fd1">LinkCreatPropList::DEFAULT</a>, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:a2ea4c23b57d66f11608b6e0d4ee5bee4 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acbd9a759a3b316e11b5c055418a58451 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#acbd9a759a3b316e11b5c055418a58451">moveLink</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;src_name, const <a class="el" href="class_h5_1_1_group.html">Group</a> &amp;dst, const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;dst_name, const <a class="el" href="class_h5_1_1_link_creat_prop_list.html">LinkCreatPropList</a> &amp;lcpl=<a class="el" href="class_h5_1_1_link_creat_prop_list.html#a018f6d174b04c91a4eca27f16c819fd1">LinkCreatPropList::DEFAULT</a>, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:acbd9a759a3b316e11b5c055418a58451 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5dab35b1bfcca90dae281950469829e9 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a5dab35b1bfcca90dae281950469829e9">moveLink</a> (const char *src_name, const char *dst_name, const <a class="el" href="class_h5_1_1_link_creat_prop_list.html">LinkCreatPropList</a> &amp;lcpl=<a class="el" href="class_h5_1_1_link_creat_prop_list.html#a018f6d174b04c91a4eca27f16c819fd1">LinkCreatPropList::DEFAULT</a>, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:a5dab35b1bfcca90dae281950469829e9 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a047814ea13799efa6ace318ac914b5bc inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a047814ea13799efa6ace318ac914b5bc">moveLink</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;src_name, const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;dst_name, const <a class="el" href="class_h5_1_1_link_creat_prop_list.html">LinkCreatPropList</a> &amp;lcpl=<a class="el" href="class_h5_1_1_link_creat_prop_list.html#a018f6d174b04c91a4eca27f16c819fd1">LinkCreatPropList::DEFAULT</a>, const <a class="el" href="class_h5_1_1_link_acc_prop_list.html">LinkAccPropList</a> &amp;lapl=<a class="el" href="class_h5_1_1_link_acc_prop_list.html#a3b968b673bee76df37a66399f3d977c4">LinkAccPropList::DEFAULT</a>) const</td></tr>
<tr class="separator:a047814ea13799efa6ace318ac914b5bc inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab8322f4878c3cf3f144f6c4bc9e873c1 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#ab8322f4878c3cf3f144f6c4bc9e873c1">move</a> (const char *src, const char *dst) const</td></tr>
<tr class="separator:ab8322f4878c3cf3f144f6c4bc9e873c1 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7419e931ae49b34b4e5d8d1c14fa3c43 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a7419e931ae49b34b4e5d8d1c14fa3c43">move</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;src, const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;dst) const</td></tr>
<tr class="separator:a7419e931ae49b34b4e5d8d1c14fa3c43 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a660ad74ec78f74e35f8ed372d27d9a80 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a660ad74ec78f74e35f8ed372d27d9a80">throwException</a> (const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;func_name, const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;msg) const</td></tr>
<tr class="memdesc:a660ad74ec78f74e35f8ed372d27d9a80 inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">For subclasses, <a class="el" href="class_h5_1_1_h5_file.html" title="Class H5File represents an HDF5 file and inherits from class Group as file is a root group.">H5File</a> and <a class="el" href="class_h5_1_1_group.html" title="Class Group represents an HDF5 group.">Group</a>, to throw appropriate exception.  <a href="class_h5_1_1_h5_location.html#a660ad74ec78f74e35f8ed372d27d9a80">More...</a><br /></td></tr>
<tr class="separator:a660ad74ec78f74e35f8ed372d27d9a80 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9ba81e4e740236d21f3699872e82f41e inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a9ba81e4e740236d21f3699872e82f41e">H5Location</a> ()</td></tr>
<tr class="separator:a9ba81e4e740236d21f3699872e82f41e inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_class_h5_1_1_id_component"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_class_h5_1_1_id_component')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="class_h5_1_1_id_component.html">IdComponent</a></td></tr>
<tr class="memitem:aaa982b0a0eba28a3c45c8703b50b2cdc inherit pub_methods_class_h5_1_1_id_component"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_id_component.html#aaa982b0a0eba28a3c45c8703b50b2cdc">incRefCount</a> (const <a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> obj_id) const</td></tr>
<tr class="separator:aaa982b0a0eba28a3c45c8703b50b2cdc inherit pub_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a68f1f3d122061267fc7ba9ff26a8e116 inherit pub_methods_class_h5_1_1_id_component"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_id_component.html#a68f1f3d122061267fc7ba9ff26a8e116">incRefCount</a> () const</td></tr>
<tr class="separator:a68f1f3d122061267fc7ba9ff26a8e116 inherit pub_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af6fd1ad4b3de42fd56c1af67bafc16bb inherit pub_methods_class_h5_1_1_id_component"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_id_component.html#af6fd1ad4b3de42fd56c1af67bafc16bb">decRefCount</a> (const <a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> obj_id) const</td></tr>
<tr class="separator:af6fd1ad4b3de42fd56c1af67bafc16bb inherit pub_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8ef8ed7ea6de87c0efd63545807ffa19 inherit pub_methods_class_h5_1_1_id_component"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_id_component.html#a8ef8ed7ea6de87c0efd63545807ffa19">decRefCount</a> () const</td></tr>
<tr class="separator:a8ef8ed7ea6de87c0efd63545807ffa19 inherit pub_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3d474b97d3fcdb866c662b7c45afc101 inherit pub_methods_class_h5_1_1_id_component"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_id_component.html#a3d474b97d3fcdb866c662b7c45afc101">getCounter</a> (const <a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> obj_id) const</td></tr>
<tr class="separator:a3d474b97d3fcdb866c662b7c45afc101 inherit pub_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9e1c79c2f7ea65f480003c4162ade647 inherit pub_methods_class_h5_1_1_id_component"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_id_component.html#a9e1c79c2f7ea65f480003c4162ade647">getCounter</a> () const</td></tr>
<tr class="separator:a9e1c79c2f7ea65f480003c4162ade647 inherit pub_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab7818457e11039a6720b8daa491a2a23 inherit pub_methods_class_h5_1_1_id_component"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_ipublic_8h.html#a13afe14178faf81b89fa2167e7ab832b">H5I_type_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_id_component.html#ab7818457e11039a6720b8daa491a2a23">getHDFObjType</a> () const</td></tr>
<tr class="separator:ab7818457e11039a6720b8daa491a2a23 inherit pub_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acbbb9aa6baaaa2bd7a1722bc239e9e56 inherit pub_methods_class_h5_1_1_id_component"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_id_component.html">IdComponent</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_id_component.html#acbbb9aa6baaaa2bd7a1722bc239e9e56">operator=</a> (const <a class="el" href="class_h5_1_1_id_component.html">IdComponent</a> &amp;rhs)</td></tr>
<tr class="separator:acbbb9aa6baaaa2bd7a1722bc239e9e56 inherit pub_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af2cb88c7456b7e40fcda2f3f438162cd inherit pub_methods_class_h5_1_1_id_component"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_id_component.html#af2cb88c7456b7e40fcda2f3f438162cd">setId</a> (const <a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> new_id)</td></tr>
<tr class="separator:af2cb88c7456b7e40fcda2f3f438162cd inherit pub_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad73041310c0799fde5df3017a21062a8 inherit pub_methods_class_h5_1_1_id_component"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_id_component.html#ad73041310c0799fde5df3017a21062a8">inMemFunc</a> (const char *func_name) const</td></tr>
<tr class="separator:ad73041310c0799fde5df3017a21062a8 inherit pub_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae7045827074fe80027567132ee143761 inherit pub_methods_class_h5_1_1_id_component"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_id_component.html#ae7045827074fe80027567132ee143761">~IdComponent</a> ()</td></tr>
<tr class="separator:ae7045827074fe80027567132ee143761 inherit pub_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-methods"></a>
Static Public Member Functions</h2></td></tr>
<tr class="memitem:afd46e0aaace492e09ece03be530dd13a"><td class="memItemLeft" align="right" valign="top">static void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#afd46e0aaace492e09ece03be530dd13a">deleteConstants</a> ()</td></tr>
<tr class="separator:afd46e0aaace492e09ece03be530dd13a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_static_methods_class_h5_1_1_data_type"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_class_h5_1_1_data_type')"><img src="closed.png" alt="-"/>&#160;Static Public Member Functions inherited from <a class="el" href="class_h5_1_1_data_type.html">DataType</a></td></tr>
<tr class="memitem:ada8f566b113567dedb7d66c01dc39675 inherit pub_static_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">static bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#ada8f566b113567dedb7d66c01dc39675">detectClass</a> (const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;pred_type, <a class="el" href="_h5_tpublic_8h.html#a071841985f647f69516dbe77d93167f2">H5T_class_t</a> cls)</td></tr>
<tr class="separator:ada8f566b113567dedb7d66c01dc39675 inherit pub_static_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_static_methods_class_h5_1_1_id_component"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_class_h5_1_1_id_component')"><img src="closed.png" alt="-"/>&#160;Static Public Member Functions inherited from <a class="el" href="class_h5_1_1_id_component.html">IdComponent</a></td></tr>
<tr class="memitem:abc3fbcf4fff6fdc48838675a8db06253 inherit pub_static_methods_class_h5_1_1_id_component"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="_h5_ipublic_8h.html#a13afe14178faf81b89fa2167e7ab832b">H5I_type_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_id_component.html#abc3fbcf4fff6fdc48838675a8db06253">getHDFObjType</a> (const <a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> obj_id)</td></tr>
<tr class="separator:abc3fbcf4fff6fdc48838675a8db06253 inherit pub_static_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad101d2b666ffdd27c1888559cb48862e inherit pub_static_methods_class_h5_1_1_id_component"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="_h5public_8h.html#a7f81cce70fb546af88da24d9285d3c1c">hsize_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_id_component.html#ad101d2b666ffdd27c1888559cb48862e">getNumMembers</a> (<a class="el" href="_h5_ipublic_8h.html#a13afe14178faf81b89fa2167e7ab832b">H5I_type_t</a> type)</td></tr>
<tr class="separator:ad101d2b666ffdd27c1888559cb48862e inherit pub_static_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac121ded620518cc83d13cbe0eed6648e inherit pub_static_methods_class_h5_1_1_id_component"><td class="memItemLeft" align="right" valign="top">static bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_id_component.html#ac121ded620518cc83d13cbe0eed6648e">isValid</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> an_id)</td></tr>
<tr class="separator:ac121ded620518cc83d13cbe0eed6648e inherit pub_static_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abad7a77fcb34ef1721f640c5a35fae2d inherit pub_static_methods_class_h5_1_1_id_component"><td class="memItemLeft" align="right" valign="top">static bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_id_component.html#abad7a77fcb34ef1721f640c5a35fae2d">typeExists</a> (<a class="el" href="_h5_ipublic_8h.html#a13afe14178faf81b89fa2167e7ab832b">H5I_type_t</a> type)</td></tr>
<tr class="separator:abad7a77fcb34ef1721f640c5a35fae2d inherit pub_static_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-attribs"></a>
Static Public Attributes</h2></td></tr>
<tr class="memitem:ae6a0d577724c9b8496f75bee11fbd5a7"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#ae6a0d577724c9b8496f75bee11fbd5a7">STD_I8BE</a></td></tr>
<tr class="memdesc:ae6a0d577724c9b8496f75bee11fbd5a7"><td class="mdescLeft">&#160;</td><td class="mdescRight"><a class="el" href="class_h5_1_1_pred_type.html" title="Class PredType holds the definition of all the HDF5 predefined datatypes.">PredType</a> constants.  <a href="class_h5_1_1_pred_type.html#ae6a0d577724c9b8496f75bee11fbd5a7">More...</a><br /></td></tr>
<tr class="separator:ae6a0d577724c9b8496f75bee11fbd5a7"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a434511c7e9b8f31247defeb45f5702a9"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a434511c7e9b8f31247defeb45f5702a9">STD_I8LE</a></td></tr>
<tr class="separator:a434511c7e9b8f31247defeb45f5702a9"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9e09d50ba0956c3e0a54a6584e4b7097"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a9e09d50ba0956c3e0a54a6584e4b7097">STD_I16BE</a></td></tr>
<tr class="separator:a9e09d50ba0956c3e0a54a6584e4b7097"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acdc37fdc7e5a79af864f6b5c0271925a"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#acdc37fdc7e5a79af864f6b5c0271925a">STD_I16LE</a></td></tr>
<tr class="separator:acdc37fdc7e5a79af864f6b5c0271925a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2ec31185b3d61fec4c62e165e4e07114"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a2ec31185b3d61fec4c62e165e4e07114">STD_I32BE</a></td></tr>
<tr class="separator:a2ec31185b3d61fec4c62e165e4e07114"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a418605538126dbf9e858f2b58e4d4604"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a418605538126dbf9e858f2b58e4d4604">STD_I32LE</a></td></tr>
<tr class="separator:a418605538126dbf9e858f2b58e4d4604"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acd1766c0e26eb9e0c56015e26b07e61c"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#acd1766c0e26eb9e0c56015e26b07e61c">STD_I64BE</a></td></tr>
<tr class="separator:acd1766c0e26eb9e0c56015e26b07e61c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af8ade184b4369639cda087ae0427fec6"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#af8ade184b4369639cda087ae0427fec6">STD_I64LE</a></td></tr>
<tr class="separator:af8ade184b4369639cda087ae0427fec6"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1ebcc04c66439fff89f7b808094f76bd"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a1ebcc04c66439fff89f7b808094f76bd">STD_U8BE</a></td></tr>
<tr class="separator:a1ebcc04c66439fff89f7b808094f76bd"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5420ed17b954f134a5804746f6356186"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a5420ed17b954f134a5804746f6356186">STD_U8LE</a></td></tr>
<tr class="separator:a5420ed17b954f134a5804746f6356186"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6df15667c0ab70f99ff9a223b37f0133"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a6df15667c0ab70f99ff9a223b37f0133">STD_U16BE</a></td></tr>
<tr class="separator:a6df15667c0ab70f99ff9a223b37f0133"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a345d706d95cfcb82227e6cbbd128c19e"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a345d706d95cfcb82227e6cbbd128c19e">STD_U16LE</a></td></tr>
<tr class="separator:a345d706d95cfcb82227e6cbbd128c19e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2648761b8936e37773f404a872effd2e"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a2648761b8936e37773f404a872effd2e">STD_U32BE</a></td></tr>
<tr class="separator:a2648761b8936e37773f404a872effd2e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1b2e74b044c8d47ca37d68582a87b01b"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a1b2e74b044c8d47ca37d68582a87b01b">STD_U32LE</a></td></tr>
<tr class="separator:a1b2e74b044c8d47ca37d68582a87b01b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a198e5cb3109667ecb30c3191672fbcad"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a198e5cb3109667ecb30c3191672fbcad">STD_U64BE</a></td></tr>
<tr class="separator:a198e5cb3109667ecb30c3191672fbcad"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aac16a938989a1c34fe613a44f8c1ea0a"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#aac16a938989a1c34fe613a44f8c1ea0a">STD_U64LE</a></td></tr>
<tr class="separator:aac16a938989a1c34fe613a44f8c1ea0a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a65e13b26beb96a52644d7bf34d2a32ff"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a65e13b26beb96a52644d7bf34d2a32ff">STD_B8BE</a></td></tr>
<tr class="separator:a65e13b26beb96a52644d7bf34d2a32ff"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a659db73e0e9b86f7aa9e3e2fd4b02a75"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a659db73e0e9b86f7aa9e3e2fd4b02a75">STD_B8LE</a></td></tr>
<tr class="separator:a659db73e0e9b86f7aa9e3e2fd4b02a75"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a47ef1261c9cf232ebca14aece391dbc0"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a47ef1261c9cf232ebca14aece391dbc0">STD_B16BE</a></td></tr>
<tr class="separator:a47ef1261c9cf232ebca14aece391dbc0"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a63b3a59185e50c98cf06903893a0e7ef"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a63b3a59185e50c98cf06903893a0e7ef">STD_B16LE</a></td></tr>
<tr class="separator:a63b3a59185e50c98cf06903893a0e7ef"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af5c0c516e7b468fe1f3d72d2d9248ef2"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#af5c0c516e7b468fe1f3d72d2d9248ef2">STD_B32BE</a></td></tr>
<tr class="separator:af5c0c516e7b468fe1f3d72d2d9248ef2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a99ccca2259734b163e302aa7bb097a60"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a99ccca2259734b163e302aa7bb097a60">STD_B32LE</a></td></tr>
<tr class="separator:a99ccca2259734b163e302aa7bb097a60"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a302ee95ba2a425e261c74ebbd30983ab"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a302ee95ba2a425e261c74ebbd30983ab">STD_B64BE</a></td></tr>
<tr class="separator:a302ee95ba2a425e261c74ebbd30983ab"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af901efe222b5dd1b20b34db733c7ae8a"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#af901efe222b5dd1b20b34db733c7ae8a">STD_B64LE</a></td></tr>
<tr class="separator:af901efe222b5dd1b20b34db733c7ae8a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3466142b993758e0e148aa5babe368dc"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a3466142b993758e0e148aa5babe368dc">STD_REF_OBJ</a></td></tr>
<tr class="separator:a3466142b993758e0e148aa5babe368dc"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af57fc6cd7ed951267ee857b9feef935c"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#af57fc6cd7ed951267ee857b9feef935c">STD_REF_DSETREG</a></td></tr>
<tr class="separator:af57fc6cd7ed951267ee857b9feef935c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2f0fff9702167d3576c1ba055e9dfa42"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a2f0fff9702167d3576c1ba055e9dfa42">C_S1</a></td></tr>
<tr class="separator:a2f0fff9702167d3576c1ba055e9dfa42"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa2b1b48ce9c8bdef149aed2a6c336288"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#aa2b1b48ce9c8bdef149aed2a6c336288">FORTRAN_S1</a></td></tr>
<tr class="separator:aa2b1b48ce9c8bdef149aed2a6c336288"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7590c0298cc6bd0233fedf35cbe1b040"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a7590c0298cc6bd0233fedf35cbe1b040">IEEE_F32BE</a></td></tr>
<tr class="separator:a7590c0298cc6bd0233fedf35cbe1b040"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a525ee09ae9df55dbca67db4a15a854eb"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a525ee09ae9df55dbca67db4a15a854eb">IEEE_F32LE</a></td></tr>
<tr class="separator:a525ee09ae9df55dbca67db4a15a854eb"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a05163dd1a02ad3c391b4a07034c602ce"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a05163dd1a02ad3c391b4a07034c602ce">IEEE_F64BE</a></td></tr>
<tr class="separator:a05163dd1a02ad3c391b4a07034c602ce"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af06cae93503b9805f7ee8fbac4738102"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#af06cae93503b9805f7ee8fbac4738102">IEEE_F64LE</a></td></tr>
<tr class="separator:af06cae93503b9805f7ee8fbac4738102"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a22e1aca75044d41f58c14cf1de3fbebf"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a22e1aca75044d41f58c14cf1de3fbebf">UNIX_D32BE</a></td></tr>
<tr class="separator:a22e1aca75044d41f58c14cf1de3fbebf"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a517fa687a889266fae8be8a247d6a8ff"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a517fa687a889266fae8be8a247d6a8ff">UNIX_D32LE</a></td></tr>
<tr class="separator:a517fa687a889266fae8be8a247d6a8ff"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3bc0393a9bae509be3d89ae5882c9ed5"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a3bc0393a9bae509be3d89ae5882c9ed5">UNIX_D64BE</a></td></tr>
<tr class="separator:a3bc0393a9bae509be3d89ae5882c9ed5"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab777bec004f0b273864986a5a1973c1e"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#ab777bec004f0b273864986a5a1973c1e">UNIX_D64LE</a></td></tr>
<tr class="separator:ab777bec004f0b273864986a5a1973c1e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afd9287b2ee21a00ed95853c4e30b4f16"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#afd9287b2ee21a00ed95853c4e30b4f16">INTEL_I8</a></td></tr>
<tr class="separator:afd9287b2ee21a00ed95853c4e30b4f16"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0847fe3bad13ff848d5968f32ac3f038"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a0847fe3bad13ff848d5968f32ac3f038">INTEL_I16</a></td></tr>
<tr class="separator:a0847fe3bad13ff848d5968f32ac3f038"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a54201329a62562d979e470f358f2ba45"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a54201329a62562d979e470f358f2ba45">INTEL_I32</a></td></tr>
<tr class="separator:a54201329a62562d979e470f358f2ba45"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6eff4a03ecd6d7f884af43e5e2d5e33e"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a6eff4a03ecd6d7f884af43e5e2d5e33e">INTEL_I64</a></td></tr>
<tr class="separator:a6eff4a03ecd6d7f884af43e5e2d5e33e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad4e82b630ba7276dc3f2906e89e042ef"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#ad4e82b630ba7276dc3f2906e89e042ef">INTEL_U8</a></td></tr>
<tr class="separator:ad4e82b630ba7276dc3f2906e89e042ef"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0f081bf6c7337a2925b23ed14cc41c7d"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a0f081bf6c7337a2925b23ed14cc41c7d">INTEL_U16</a></td></tr>
<tr class="separator:a0f081bf6c7337a2925b23ed14cc41c7d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a36690bab3e6968f56ca237708ccaac8e"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a36690bab3e6968f56ca237708ccaac8e">INTEL_U32</a></td></tr>
<tr class="separator:a36690bab3e6968f56ca237708ccaac8e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9c23efe61b9c833e01777110f3a6fb06"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a9c23efe61b9c833e01777110f3a6fb06">INTEL_U64</a></td></tr>
<tr class="separator:a9c23efe61b9c833e01777110f3a6fb06"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab38e7327ef3ee136d0c9a29737bdd246"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#ab38e7327ef3ee136d0c9a29737bdd246">INTEL_B8</a></td></tr>
<tr class="separator:ab38e7327ef3ee136d0c9a29737bdd246"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae49d40abcffaf92c117916a2ce1ca1b1"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#ae49d40abcffaf92c117916a2ce1ca1b1">INTEL_B16</a></td></tr>
<tr class="separator:ae49d40abcffaf92c117916a2ce1ca1b1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af7fff3b0586f46e2949fa18b806844d2"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#af7fff3b0586f46e2949fa18b806844d2">INTEL_B32</a></td></tr>
<tr class="separator:af7fff3b0586f46e2949fa18b806844d2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a206cb5c1131a37f5e669cb2238d662d0"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a206cb5c1131a37f5e669cb2238d662d0">INTEL_B64</a></td></tr>
<tr class="separator:a206cb5c1131a37f5e669cb2238d662d0"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a108f6585ad5c1bc005af3a2142df3dd3"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a108f6585ad5c1bc005af3a2142df3dd3">INTEL_F32</a></td></tr>
<tr class="separator:a108f6585ad5c1bc005af3a2142df3dd3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a91f49f19d14100dcfbfe4a44d6b476ed"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a91f49f19d14100dcfbfe4a44d6b476ed">INTEL_F64</a></td></tr>
<tr class="separator:a91f49f19d14100dcfbfe4a44d6b476ed"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab3161cf574f6505d723a7c5787bc6caf"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#ab3161cf574f6505d723a7c5787bc6caf">ALPHA_I8</a></td></tr>
<tr class="separator:ab3161cf574f6505d723a7c5787bc6caf"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2c78182f4b6814b8cf334cee185cbd65"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a2c78182f4b6814b8cf334cee185cbd65">ALPHA_I16</a></td></tr>
<tr class="separator:a2c78182f4b6814b8cf334cee185cbd65"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a33a614d44c8ee68231c878576392af1b"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a33a614d44c8ee68231c878576392af1b">ALPHA_I32</a></td></tr>
<tr class="separator:a33a614d44c8ee68231c878576392af1b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9784651c819f6849854bf7cbbb18156b"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a9784651c819f6849854bf7cbbb18156b">ALPHA_I64</a></td></tr>
<tr class="separator:a9784651c819f6849854bf7cbbb18156b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a239a29e5ad85d9738784498361830f58"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a239a29e5ad85d9738784498361830f58">ALPHA_U8</a></td></tr>
<tr class="separator:a239a29e5ad85d9738784498361830f58"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3c449eb57f140dadf5e4330d73a2cbfa"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a3c449eb57f140dadf5e4330d73a2cbfa">ALPHA_U16</a></td></tr>
<tr class="separator:a3c449eb57f140dadf5e4330d73a2cbfa"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adfd88d66e5d764897dabbcc473ba43ed"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#adfd88d66e5d764897dabbcc473ba43ed">ALPHA_U32</a></td></tr>
<tr class="separator:adfd88d66e5d764897dabbcc473ba43ed"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab3a79f939428860b463de8d59f460e36"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#ab3a79f939428860b463de8d59f460e36">ALPHA_U64</a></td></tr>
<tr class="separator:ab3a79f939428860b463de8d59f460e36"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aab1dc2f686c8a6c362e777e0753e3caf"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#aab1dc2f686c8a6c362e777e0753e3caf">ALPHA_B8</a></td></tr>
<tr class="separator:aab1dc2f686c8a6c362e777e0753e3caf"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7e5d8a40b132f3fd99faac5f18b260eb"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a7e5d8a40b132f3fd99faac5f18b260eb">ALPHA_B16</a></td></tr>
<tr class="separator:a7e5d8a40b132f3fd99faac5f18b260eb"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0551160c9537f3f7558d60e027cf281c"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a0551160c9537f3f7558d60e027cf281c">ALPHA_B32</a></td></tr>
<tr class="separator:a0551160c9537f3f7558d60e027cf281c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0081acf80480de4519ca013de229b610"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a0081acf80480de4519ca013de229b610">ALPHA_B64</a></td></tr>
<tr class="separator:a0081acf80480de4519ca013de229b610"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a14906f1af6f48be3d4646de4113b2e68"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a14906f1af6f48be3d4646de4113b2e68">ALPHA_F32</a></td></tr>
<tr class="separator:a14906f1af6f48be3d4646de4113b2e68"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adf077fb5198f0529b16bfa29695dbf62"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#adf077fb5198f0529b16bfa29695dbf62">ALPHA_F64</a></td></tr>
<tr class="separator:adf077fb5198f0529b16bfa29695dbf62"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5ae0de6430a846e960993ea4ca36f219"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a5ae0de6430a846e960993ea4ca36f219">MIPS_I8</a></td></tr>
<tr class="separator:a5ae0de6430a846e960993ea4ca36f219"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abb73baad0bfccf33ba0767d6f674db7b"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#abb73baad0bfccf33ba0767d6f674db7b">MIPS_I16</a></td></tr>
<tr class="separator:abb73baad0bfccf33ba0767d6f674db7b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a50b3f0d502c87c89d8bb1aeac389d506"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a50b3f0d502c87c89d8bb1aeac389d506">MIPS_I32</a></td></tr>
<tr class="separator:a50b3f0d502c87c89d8bb1aeac389d506"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4ec1d1da8568267990e99d124ed3b92a"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a4ec1d1da8568267990e99d124ed3b92a">MIPS_I64</a></td></tr>
<tr class="separator:a4ec1d1da8568267990e99d124ed3b92a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a85e247e926550d73f1846552ea80c245"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a85e247e926550d73f1846552ea80c245">MIPS_U8</a></td></tr>
<tr class="separator:a85e247e926550d73f1846552ea80c245"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab60838ba83b183d8bd15c53c1a79bf11"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#ab60838ba83b183d8bd15c53c1a79bf11">MIPS_U16</a></td></tr>
<tr class="separator:ab60838ba83b183d8bd15c53c1a79bf11"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8c5791d5b5539060d5f657ce4ed0cb9a"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a8c5791d5b5539060d5f657ce4ed0cb9a">MIPS_U32</a></td></tr>
<tr class="separator:a8c5791d5b5539060d5f657ce4ed0cb9a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a859a3f8481eb011e1086f7f4bff0ada9"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a859a3f8481eb011e1086f7f4bff0ada9">MIPS_U64</a></td></tr>
<tr class="separator:a859a3f8481eb011e1086f7f4bff0ada9"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8eac41890a11356e144fe63463e94746"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a8eac41890a11356e144fe63463e94746">MIPS_B8</a></td></tr>
<tr class="separator:a8eac41890a11356e144fe63463e94746"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab567178ebb3a9ffec1bb459cdd621bbb"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#ab567178ebb3a9ffec1bb459cdd621bbb">MIPS_B16</a></td></tr>
<tr class="separator:ab567178ebb3a9ffec1bb459cdd621bbb"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6562ea8406d37fd52562de41d265f360"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a6562ea8406d37fd52562de41d265f360">MIPS_B32</a></td></tr>
<tr class="separator:a6562ea8406d37fd52562de41d265f360"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a646e0ce65f8dfcc43a46fb22629a2f2a"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a646e0ce65f8dfcc43a46fb22629a2f2a">MIPS_B64</a></td></tr>
<tr class="separator:a646e0ce65f8dfcc43a46fb22629a2f2a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a50d9a876ec826e3d8ff2ea0f3b5b4b14"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a50d9a876ec826e3d8ff2ea0f3b5b4b14">MIPS_F32</a></td></tr>
<tr class="separator:a50d9a876ec826e3d8ff2ea0f3b5b4b14"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ade668eff1083eee15beff6b46a951a51"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#ade668eff1083eee15beff6b46a951a51">MIPS_F64</a></td></tr>
<tr class="separator:ade668eff1083eee15beff6b46a951a51"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a830998f1d6fd95efe39fa5e49e8ab6d2"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a830998f1d6fd95efe39fa5e49e8ab6d2">NATIVE_CHAR</a></td></tr>
<tr class="separator:a830998f1d6fd95efe39fa5e49e8ab6d2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2520b6e9a689978ef6c5a2d5c4b38b95"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a2520b6e9a689978ef6c5a2d5c4b38b95">NATIVE_SCHAR</a></td></tr>
<tr class="separator:a2520b6e9a689978ef6c5a2d5c4b38b95"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad94415bb9002000aaebb25dcbfdfa5b4"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#ad94415bb9002000aaebb25dcbfdfa5b4">NATIVE_UCHAR</a></td></tr>
<tr class="separator:ad94415bb9002000aaebb25dcbfdfa5b4"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aba4e2a55ada402d85dfa02e90e9b4d53"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#aba4e2a55ada402d85dfa02e90e9b4d53">NATIVE_SHORT</a></td></tr>
<tr class="separator:aba4e2a55ada402d85dfa02e90e9b4d53"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a28e364f2aa26f9266183e7fcddd9939b"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a28e364f2aa26f9266183e7fcddd9939b">NATIVE_USHORT</a></td></tr>
<tr class="separator:a28e364f2aa26f9266183e7fcddd9939b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a484061c865a53159dbd82df8996e91ef"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a484061c865a53159dbd82df8996e91ef">NATIVE_INT</a></td></tr>
<tr class="separator:a484061c865a53159dbd82df8996e91ef"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a163ec2310d8905fcb8588a10cb50fd07"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a163ec2310d8905fcb8588a10cb50fd07">NATIVE_UINT</a></td></tr>
<tr class="separator:a163ec2310d8905fcb8588a10cb50fd07"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a943786604a7e59f2c33543ac5a8a4d0e"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a943786604a7e59f2c33543ac5a8a4d0e">NATIVE_LONG</a></td></tr>
<tr class="separator:a943786604a7e59f2c33543ac5a8a4d0e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6ef52f1bc63c6a056e5f85e897d82a47"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a6ef52f1bc63c6a056e5f85e897d82a47">NATIVE_ULONG</a></td></tr>
<tr class="separator:a6ef52f1bc63c6a056e5f85e897d82a47"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4848232bef2744954918bb8516d4d56b"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a4848232bef2744954918bb8516d4d56b">NATIVE_LLONG</a></td></tr>
<tr class="separator:a4848232bef2744954918bb8516d4d56b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad231208b05ac6a5350aa6fbd2d35bb35"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#ad231208b05ac6a5350aa6fbd2d35bb35">NATIVE_ULLONG</a></td></tr>
<tr class="separator:ad231208b05ac6a5350aa6fbd2d35bb35"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a931c05637bddbfe96817ec82ead5ca9c"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a931c05637bddbfe96817ec82ead5ca9c">NATIVE_FLOAT</a></td></tr>
<tr class="separator:a931c05637bddbfe96817ec82ead5ca9c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a14cd04c4affe1d8ced431520f96c1dd7"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a14cd04c4affe1d8ced431520f96c1dd7">NATIVE_DOUBLE</a></td></tr>
<tr class="separator:a14cd04c4affe1d8ced431520f96c1dd7"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a084341051c84aa8ae03e121b2d52b870"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a084341051c84aa8ae03e121b2d52b870">NATIVE_LDOUBLE</a></td></tr>
<tr class="separator:a084341051c84aa8ae03e121b2d52b870"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a35c366730881ffb7c98e546465cd3ffa"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a35c366730881ffb7c98e546465cd3ffa">NATIVE_B8</a></td></tr>
<tr class="separator:a35c366730881ffb7c98e546465cd3ffa"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a23ce945c1dfc64d815b297f70e570cb0"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a23ce945c1dfc64d815b297f70e570cb0">NATIVE_B16</a></td></tr>
<tr class="separator:a23ce945c1dfc64d815b297f70e570cb0"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa9e3a4f2dec054c15b0a7234d00ae2e6"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#aa9e3a4f2dec054c15b0a7234d00ae2e6">NATIVE_B32</a></td></tr>
<tr class="separator:aa9e3a4f2dec054c15b0a7234d00ae2e6"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6b96b790556cb56cdcbbae809fbf8c46"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a6b96b790556cb56cdcbbae809fbf8c46">NATIVE_B64</a></td></tr>
<tr class="separator:a6b96b790556cb56cdcbbae809fbf8c46"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7e8105c637a8d25a13f182cf73db158d"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a7e8105c637a8d25a13f182cf73db158d">NATIVE_OPAQUE</a></td></tr>
<tr class="separator:a7e8105c637a8d25a13f182cf73db158d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a39786fb48bcd8b516b8991bb318fa7f1"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a39786fb48bcd8b516b8991bb318fa7f1">NATIVE_HSIZE</a></td></tr>
<tr class="separator:a39786fb48bcd8b516b8991bb318fa7f1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa9bb09324da32865338f9a0d178fe231"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#aa9bb09324da32865338f9a0d178fe231">NATIVE_HSSIZE</a></td></tr>
<tr class="separator:aa9bb09324da32865338f9a0d178fe231"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af824b40185c46d9fa78f4f77f3ce7ecf"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#af824b40185c46d9fa78f4f77f3ce7ecf">NATIVE_HERR</a></td></tr>
<tr class="separator:af824b40185c46d9fa78f4f77f3ce7ecf"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3fd1319cc25d14b5e68ba83efd8ef7f0"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a3fd1319cc25d14b5e68ba83efd8ef7f0">NATIVE_HBOOL</a></td></tr>
<tr class="separator:a3fd1319cc25d14b5e68ba83efd8ef7f0"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7a27a89cf5c3512e6059b6f303ea27f6"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a7a27a89cf5c3512e6059b6f303ea27f6">NATIVE_INT8</a></td></tr>
<tr class="separator:a7a27a89cf5c3512e6059b6f303ea27f6"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab47cf3dabb261248542d656a363f145f"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#ab47cf3dabb261248542d656a363f145f">NATIVE_UINT8</a></td></tr>
<tr class="separator:ab47cf3dabb261248542d656a363f145f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac7fdfe6f3c7029bd3f240e8a6305745e"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#ac7fdfe6f3c7029bd3f240e8a6305745e">NATIVE_INT16</a></td></tr>
<tr class="separator:ac7fdfe6f3c7029bd3f240e8a6305745e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7250e4e574faa9301993242ecf74c6b3"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a7250e4e574faa9301993242ecf74c6b3">NATIVE_UINT16</a></td></tr>
<tr class="separator:a7250e4e574faa9301993242ecf74c6b3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a161311d86ade73d0a537a088e0122047"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a161311d86ade73d0a537a088e0122047">NATIVE_INT32</a></td></tr>
<tr class="separator:a161311d86ade73d0a537a088e0122047"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a817576396e903c576bc43d448e90c81c"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a817576396e903c576bc43d448e90c81c">NATIVE_UINT32</a></td></tr>
<tr class="separator:a817576396e903c576bc43d448e90c81c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab4cca24de2365982bb450ee12fd94baa"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#ab4cca24de2365982bb450ee12fd94baa">NATIVE_INT64</a></td></tr>
<tr class="separator:ab4cca24de2365982bb450ee12fd94baa"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a468b35ae0e6cad473d15857746effec2"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a468b35ae0e6cad473d15857746effec2">NATIVE_UINT64</a></td></tr>
<tr class="separator:a468b35ae0e6cad473d15857746effec2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a936041a8ee983866a23cf36b438ad5df"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a936041a8ee983866a23cf36b438ad5df">NATIVE_INT_LEAST8</a></td></tr>
<tr class="separator:a936041a8ee983866a23cf36b438ad5df"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aef4b25f3336e6d2327722a1951550cac"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#aef4b25f3336e6d2327722a1951550cac">NATIVE_UINT_LEAST8</a></td></tr>
<tr class="separator:aef4b25f3336e6d2327722a1951550cac"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a54ffd495026bcae0980306d6e9164edb"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a54ffd495026bcae0980306d6e9164edb">NATIVE_INT_LEAST16</a></td></tr>
<tr class="separator:a54ffd495026bcae0980306d6e9164edb"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1a1064212817bd0464cbe4301dab81a7"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a1a1064212817bd0464cbe4301dab81a7">NATIVE_UINT_LEAST16</a></td></tr>
<tr class="separator:a1a1064212817bd0464cbe4301dab81a7"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a15ae5e2b31e897e0ec5f8cb93c14f3a5"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a15ae5e2b31e897e0ec5f8cb93c14f3a5">NATIVE_INT_LEAST32</a></td></tr>
<tr class="separator:a15ae5e2b31e897e0ec5f8cb93c14f3a5"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2adf7f7595758e153c33f2e3f03d60ad"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a2adf7f7595758e153c33f2e3f03d60ad">NATIVE_UINT_LEAST32</a></td></tr>
<tr class="separator:a2adf7f7595758e153c33f2e3f03d60ad"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad6301ca5d8d5938392874a92b4b2a6ea"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#ad6301ca5d8d5938392874a92b4b2a6ea">NATIVE_INT_LEAST64</a></td></tr>
<tr class="separator:ad6301ca5d8d5938392874a92b4b2a6ea"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a68e3cefa4de575208bf5f88c499486d7"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a68e3cefa4de575208bf5f88c499486d7">NATIVE_UINT_LEAST64</a></td></tr>
<tr class="separator:a68e3cefa4de575208bf5f88c499486d7"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5994c6f1aa5ccb155fd1f433b45717ea"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a5994c6f1aa5ccb155fd1f433b45717ea">NATIVE_INT_FAST8</a></td></tr>
<tr class="separator:a5994c6f1aa5ccb155fd1f433b45717ea"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a74a65788f0814ee48ff2e9df04c08aac"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a74a65788f0814ee48ff2e9df04c08aac">NATIVE_UINT_FAST8</a></td></tr>
<tr class="separator:a74a65788f0814ee48ff2e9df04c08aac"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4d33e962168a16d5b0b030fbad9a3595"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a4d33e962168a16d5b0b030fbad9a3595">NATIVE_INT_FAST16</a></td></tr>
<tr class="separator:a4d33e962168a16d5b0b030fbad9a3595"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aaffda2544376294cf3d94aa645c545f7"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#aaffda2544376294cf3d94aa645c545f7">NATIVE_UINT_FAST16</a></td></tr>
<tr class="separator:aaffda2544376294cf3d94aa645c545f7"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9c88f3ed283f1c1a5fe0e6dbbe45e334"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a9c88f3ed283f1c1a5fe0e6dbbe45e334">NATIVE_INT_FAST32</a></td></tr>
<tr class="separator:a9c88f3ed283f1c1a5fe0e6dbbe45e334"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a940a30923b03151cdf10d6aa735614a3"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a940a30923b03151cdf10d6aa735614a3">NATIVE_UINT_FAST32</a></td></tr>
<tr class="separator:a940a30923b03151cdf10d6aa735614a3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9f648eab343a07ff9eeca69f5ec4a0c9"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a9f648eab343a07ff9eeca69f5ec4a0c9">NATIVE_INT_FAST64</a></td></tr>
<tr class="separator:a9f648eab343a07ff9eeca69f5ec4a0c9"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1f3e6c2eb8175cab55d566644ac5df97"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a1f3e6c2eb8175cab55d566644ac5df97">NATIVE_UINT_FAST64</a></td></tr>
<tr class="separator:a1f3e6c2eb8175cab55d566644ac5df97"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa743f67b7d453be924a6c92964ff711c"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#aa743f67b7d453be924a6c92964ff711c">PREDTYPE_CONST</a></td></tr>
<tr class="separator:aa743f67b7d453be924a6c92964ff711c"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr class="memitem:afc0a0710f54763c3d43ae3a85d7da3de"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#afc0a0710f54763c3d43ae3a85d7da3de">PredType</a> ()</td></tr>
<tr class="separator:afc0a0710f54763c3d43ae3a85d7da3de"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4c228401a5bbbfb204b3009aad817ed3"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_pred_type.html#a4c228401a5bbbfb204b3009aad817ed3">PredType</a> (const <a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> predtype_id)</td></tr>
<tr class="separator:a4c228401a5bbbfb204b3009aad817ed3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_methods_class_h5_1_1_atom_type"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_class_h5_1_1_atom_type')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="class_h5_1_1_atom_type.html">AtomType</a></td></tr>
<tr class="memitem:a9a0355a6fbde18f37231eb0d3ac072dd inherit pro_methods_class_h5_1_1_atom_type"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_atom_type.html#a9a0355a6fbde18f37231eb0d3ac072dd">AtomType</a> ()</td></tr>
<tr class="separator:a9a0355a6fbde18f37231eb0d3ac072dd inherit pro_methods_class_h5_1_1_atom_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2c7a9279167888cc17024d39faec2c23 inherit pro_methods_class_h5_1_1_atom_type"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_atom_type.html#a2c7a9279167888cc17024d39faec2c23">AtomType</a> (const <a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> existing_id)</td></tr>
<tr class="separator:a2c7a9279167888cc17024d39faec2c23 inherit pro_methods_class_h5_1_1_atom_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_methods_class_h5_1_1_data_type"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_class_h5_1_1_data_type')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="class_h5_1_1_data_type.html">DataType</a></td></tr>
<tr class="memitem:aa0747cdda355fee792bbf220ea91a5f9 inherit pro_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#aa0747cdda355fee792bbf220ea91a5f9">p_decode</a> () const</td></tr>
<tr class="separator:aa0747cdda355fee792bbf220ea91a5f9 inherit pro_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa9f8a5ef0ac0007c6ae942e03ecaa906 inherit pro_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#aa9f8a5ef0ac0007c6ae942e03ecaa906">p_setId</a> (const <a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> new_id) override</td></tr>
<tr class="separator:aa9f8a5ef0ac0007c6ae942e03ecaa906 inherit pro_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1b3724b6f28676ef301d842f9122af06 inherit pro_methods_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#a1b3724b6f28676ef301d842f9122af06">p_opentype</a> (const <a class="el" href="class_h5_1_1_h5_location.html">H5Location</a> &amp;loc, const char *dtype_name) const</td></tr>
<tr class="separator:a1b3724b6f28676ef301d842f9122af06 inherit pro_methods_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_methods_class_h5_1_1_h5_object"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_class_h5_1_1_h5_object')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="class_h5_1_1_h5_object.html">H5Object</a></td></tr>
<tr class="memitem:a15b3ef12498b7ec709e876eb89df61d0 inherit pro_methods_class_h5_1_1_h5_object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_object.html#a15b3ef12498b7ec709e876eb89df61d0">H5Object</a> ()</td></tr>
<tr class="separator:a15b3ef12498b7ec709e876eb89df61d0 inherit pro_methods_class_h5_1_1_h5_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0013631ce14d8f5ec03acc621565d7a2 inherit pro_methods_class_h5_1_1_h5_object"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_object.html#a0013631ce14d8f5ec03acc621565d7a2">~H5Object</a> () override</td></tr>
<tr class="separator:a0013631ce14d8f5ec03acc621565d7a2 inherit pro_methods_class_h5_1_1_h5_object"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_methods_class_h5_1_1_h5_location"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_class_h5_1_1_h5_location')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="class_h5_1_1_h5_location.html">H5Location</a></td></tr>
<tr class="memitem:ad4194ff1bceb751e8e249eee1c0660dc inherit pro_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#ad4194ff1bceb751e8e249eee1c0660dc">p_reference</a> (void *ref, const char *name, <a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> space_id, <a class="el" href="_h5_rpublic_8h.html#a7d148ddc165e65b01efabfd738ac056e">H5R_type_t</a> ref_type) const</td></tr>
<tr class="separator:ad4194ff1bceb751e8e249eee1c0660dc inherit pro_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4271dc9461e2b95164591799c36dffad inherit pro_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a4271dc9461e2b95164591799c36dffad">p_dereference</a> (<a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> loc_id, const void *ref, <a class="el" href="_h5_rpublic_8h.html#a7d148ddc165e65b01efabfd738ac056e">H5R_type_t</a> ref_type, const <a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;plist, const char *from_func)</td></tr>
<tr class="separator:a4271dc9461e2b95164591799c36dffad inherit pro_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a02160fa223f6b333ecefaf706c40f951 inherit pro_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_gpublic_8h.html#a4ee921b13233a7c297b81a49022a1dd6">H5G_obj_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a02160fa223f6b333ecefaf706c40f951">p_get_obj_type</a> (void *ref, <a class="el" href="_h5_rpublic_8h.html#a7d148ddc165e65b01efabfd738ac056e">H5R_type_t</a> ref_type) const</td></tr>
<tr class="separator:a02160fa223f6b333ecefaf706c40f951 inherit pro_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab496939d08367da3e66d8c83a1b3275a inherit pro_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_opublic_8h.html#a929ff459574495f461657f6be804cdec">H5O_type_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#ab496939d08367da3e66d8c83a1b3275a">p_get_ref_obj_type</a> (void *ref, <a class="el" href="_h5_rpublic_8h.html#a7d148ddc165e65b01efabfd738ac056e">H5R_type_t</a> ref_type) const</td></tr>
<tr class="separator:ab496939d08367da3e66d8c83a1b3275a inherit pro_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab0f6f6105f259df62514fa4db97d5aea inherit pro_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#ab0f6f6105f259df62514fa4db97d5aea">~H5Location</a> () override</td></tr>
<tr class="separator:ab0f6f6105f259df62514fa4db97d5aea inherit pro_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_methods_class_h5_1_1_id_component"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_class_h5_1_1_id_component')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="class_h5_1_1_id_component.html">IdComponent</a></td></tr>
<tr class="memitem:a451c0471e69ff48f14c4e26f8a0856a7 inherit pro_methods_class_h5_1_1_id_component"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_id_component.html#a451c0471e69ff48f14c4e26f8a0856a7">IdComponent</a> ()</td></tr>
<tr class="separator:a451c0471e69ff48f14c4e26f8a0856a7 inherit pro_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a212a32d32b740516ef3ee0be8b82b5eb inherit pro_methods_class_h5_1_1_id_component"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_id_component.html#a212a32d32b740516ef3ee0be8b82b5eb">p_get_file_name</a> () const</td></tr>
<tr class="separator:a212a32d32b740516ef3ee0be8b82b5eb inherit pro_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a>
Additional Inherited Members</h2></td></tr>
<tr class="inherit_header pro_static_methods_class_h5_1_1_id_component"><td colspan="2" onclick="javascript:toggleInherit('pro_static_methods_class_h5_1_1_id_component')"><img src="closed.png" alt="-"/>&#160;Static Protected Member Functions inherited from <a class="el" href="class_h5_1_1_id_component.html">IdComponent</a></td></tr>
<tr class="memitem:a64f606acad8935a5fdc1fc6434742176 inherit pro_static_methods_class_h5_1_1_id_component"><td class="memItemLeft" align="right" valign="top">static bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_id_component.html#a64f606acad8935a5fdc1fc6434742176">p_valid_id</a> (const <a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a> obj_id)</td></tr>
<tr class="separator:a64f606acad8935a5fdc1fc6434742176 inherit pro_static_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_attribs_class_h5_1_1_data_type"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_class_h5_1_1_data_type')"><img src="closed.png" alt="-"/>&#160;Protected Attributes inherited from <a class="el" href="class_h5_1_1_data_type.html">DataType</a></td></tr>
<tr class="memitem:a49ffeaac2cb90ecf98f9966fb1308fd1 inherit pro_attribs_class_h5_1_1_data_type"><td class="memItemLeft" align="right" valign="top"><a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_data_type.html#a49ffeaac2cb90ecf98f9966fb1308fd1">id</a></td></tr>
<tr class="separator:a49ffeaac2cb90ecf98f9966fb1308fd1 inherit pro_attribs_class_h5_1_1_data_type"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_static_attribs_class_h5_1_1_id_component"><td colspan="2" onclick="javascript:toggleInherit('pro_static_attribs_class_h5_1_1_id_component')"><img src="closed.png" alt="-"/>&#160;Static Protected Attributes inherited from <a class="el" href="class_h5_1_1_id_component.html">IdComponent</a></td></tr>
<tr class="memitem:a824f3faa415dac39709767ca4a9dbb11 inherit pro_static_attribs_class_h5_1_1_id_component"><td class="memItemLeft" align="right" valign="top">static bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_id_component.html#a824f3faa415dac39709767ca4a9dbb11">H5dontAtexit_called</a></td></tr>
<tr class="separator:a824f3faa415dac39709767ca4a9dbb11 inherit pro_static_attribs_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table>
<h2 class="groupheader">Constructor &amp; Destructor Documentation</h2>
<a id="a74aed1c169ad2aa28626c66a5c749def"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a74aed1c169ad2aa28626c66a5c749def">&#9670;&nbsp;</a></span>PredType() <span class="overload">[1/3]</span></h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="class_h5_1_1_pred_type.html">PredType</a> </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td>
          <td class="paramname"><em>original</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<a id="ae04cd8134110c73b1fa978f3780828e9"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ae04cd8134110c73b1fa978f3780828e9">&#9670;&nbsp;</a></span>~PredType()</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual ~<a class="el" href="class_h5_1_1_pred_type.html">PredType</a> </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">override</span><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="afc0a0710f54763c3d43ae3a85d7da3de"></a>
<h2 class="memtitle"><span class="permalink"><a href="#afc0a0710f54763c3d43ae3a85d7da3de">&#9670;&nbsp;</a></span>PredType() <span class="overload">[2/3]</span></h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="class_h5_1_1_pred_type.html">PredType</a> </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a4c228401a5bbbfb204b3009aad817ed3"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a4c228401a5bbbfb204b3009aad817ed3">&#9670;&nbsp;</a></span>PredType() <span class="overload">[3/3]</span></h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="class_h5_1_1_pred_type.html">PredType</a> </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="_h5_ipublic_8h.html#a0045db7ff9c22ad35db6ae91662e1943">hid_t</a>&#160;</td>
          <td class="paramname"><em>predtype_id</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a id="a27fd12e2a8a970323dc9120b9b9b9584"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a27fd12e2a8a970323dc9120b9b9b9584">&#9670;&nbsp;</a></span>commit() <span class="overload">[1/2]</span></h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void commit </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="class_h5_1_1_h5_location.html">H5Location</a> &amp;&#160;</td>
          <td class="paramname"><em>loc</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const char *&#160;</td>
          <td class="paramname"><em>name</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This dummy function do not inherit from <a class="el" href="class_h5_1_1_data_type.html" title="Class DataType provides generic operations on HDF5 datatypes.">DataType</a> - it will throw a <a class="el" href="class_h5_1_1_data_type_i_exception.html">DataTypeIException</a> if invoked. </p>

</div>
</div>
<a id="a945f14456f64ae4a419a8ac804183e3c"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a945f14456f64ae4a419a8ac804183e3c">&#9670;&nbsp;</a></span>commit() <span class="overload">[2/2]</span></h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void commit </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="class_h5_1_1_h5_location.html">H5Location</a> &amp;&#160;</td>
          <td class="paramname"><em>loc</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> &amp;&#160;</td>
          <td class="paramname"><em>name</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This dummy function do not inherit from <a class="el" href="class_h5_1_1_data_type.html" title="Class DataType provides generic operations on HDF5 datatypes.">DataType</a> - it will throw a <a class="el" href="class_h5_1_1_data_type_i_exception.html">DataTypeIException</a> if invoked. </p>

</div>
</div>
<a id="abc7cb58bd820bc9b197012ec6563a1fe"></a>
<h2 class="memtitle"><span class="permalink"><a href="#abc7cb58bd820bc9b197012ec6563a1fe">&#9670;&nbsp;</a></span>committed()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool committed </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>This dummy function do not inherit from <a class="el" href="class_h5_1_1_data_type.html" title="Class DataType provides generic operations on HDF5 datatypes.">DataType</a> - it will throw a <a class="el" href="class_h5_1_1_data_type_i_exception.html">DataTypeIException</a> if invoked. </p>

</div>
</div>
<a id="afd46e0aaace492e09ece03be530dd13a"></a>
<h2 class="memtitle"><span class="permalink"><a href="#afd46e0aaace492e09ece03be530dd13a">&#9670;&nbsp;</a></span>deleteConstants()</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">static void deleteConstants </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a71c2693398514fad4828112c9d21554b"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a71c2693398514fad4828112c9d21554b">&#9670;&nbsp;</a></span>fromClass()</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual <a class="el" href="_h5_exception_8h.html#a5c3fdf56d98d169f63f1b114803db592">H5std_string</a> fromClass </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">override</span><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Returns this class name. </p>

<p>Reimplemented from <a class="el" href="class_h5_1_1_atom_type.html#a71c2693398514fad4828112c9d21554b">AtomType</a>.</p>

</div>
</div>
<a id="a9159fa10f791c9804f855277ba92750b"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a9159fa10f791c9804f855277ba92750b">&#9670;&nbsp;</a></span>operator=()</h2>

<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; operator= </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a> &amp;&#160;</td>
          <td class="paramname"><em>rhs</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<h2 class="groupheader">Field Documentation</h2>
<a id="a7e5d8a40b132f3fd99faac5f18b260eb"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a7e5d8a40b132f3fd99faac5f18b260eb">&#9670;&nbsp;</a></span>ALPHA_B16</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; ALPHA_B16</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a0551160c9537f3f7558d60e027cf281c"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a0551160c9537f3f7558d60e027cf281c">&#9670;&nbsp;</a></span>ALPHA_B32</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; ALPHA_B32</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a0081acf80480de4519ca013de229b610"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a0081acf80480de4519ca013de229b610">&#9670;&nbsp;</a></span>ALPHA_B64</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; ALPHA_B64</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="aab1dc2f686c8a6c362e777e0753e3caf"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aab1dc2f686c8a6c362e777e0753e3caf">&#9670;&nbsp;</a></span>ALPHA_B8</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; ALPHA_B8</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a14906f1af6f48be3d4646de4113b2e68"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a14906f1af6f48be3d4646de4113b2e68">&#9670;&nbsp;</a></span>ALPHA_F32</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; ALPHA_F32</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="adf077fb5198f0529b16bfa29695dbf62"></a>
<h2 class="memtitle"><span class="permalink"><a href="#adf077fb5198f0529b16bfa29695dbf62">&#9670;&nbsp;</a></span>ALPHA_F64</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; ALPHA_F64</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a2c78182f4b6814b8cf334cee185cbd65"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a2c78182f4b6814b8cf334cee185cbd65">&#9670;&nbsp;</a></span>ALPHA_I16</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; ALPHA_I16</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a33a614d44c8ee68231c878576392af1b"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a33a614d44c8ee68231c878576392af1b">&#9670;&nbsp;</a></span>ALPHA_I32</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; ALPHA_I32</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a9784651c819f6849854bf7cbbb18156b"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a9784651c819f6849854bf7cbbb18156b">&#9670;&nbsp;</a></span>ALPHA_I64</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; ALPHA_I64</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="ab3161cf574f6505d723a7c5787bc6caf"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ab3161cf574f6505d723a7c5787bc6caf">&#9670;&nbsp;</a></span>ALPHA_I8</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; ALPHA_I8</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a3c449eb57f140dadf5e4330d73a2cbfa"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a3c449eb57f140dadf5e4330d73a2cbfa">&#9670;&nbsp;</a></span>ALPHA_U16</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; ALPHA_U16</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="adfd88d66e5d764897dabbcc473ba43ed"></a>
<h2 class="memtitle"><span class="permalink"><a href="#adfd88d66e5d764897dabbcc473ba43ed">&#9670;&nbsp;</a></span>ALPHA_U32</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; ALPHA_U32</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="ab3a79f939428860b463de8d59f460e36"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ab3a79f939428860b463de8d59f460e36">&#9670;&nbsp;</a></span>ALPHA_U64</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; ALPHA_U64</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a239a29e5ad85d9738784498361830f58"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a239a29e5ad85d9738784498361830f58">&#9670;&nbsp;</a></span>ALPHA_U8</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; ALPHA_U8</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a2f0fff9702167d3576c1ba055e9dfa42"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a2f0fff9702167d3576c1ba055e9dfa42">&#9670;&nbsp;</a></span>C_S1</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; C_S1</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="aa2b1b48ce9c8bdef149aed2a6c336288"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aa2b1b48ce9c8bdef149aed2a6c336288">&#9670;&nbsp;</a></span>FORTRAN_S1</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; FORTRAN_S1</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a7590c0298cc6bd0233fedf35cbe1b040"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a7590c0298cc6bd0233fedf35cbe1b040">&#9670;&nbsp;</a></span>IEEE_F32BE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; IEEE_F32BE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a525ee09ae9df55dbca67db4a15a854eb"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a525ee09ae9df55dbca67db4a15a854eb">&#9670;&nbsp;</a></span>IEEE_F32LE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; IEEE_F32LE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a05163dd1a02ad3c391b4a07034c602ce"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a05163dd1a02ad3c391b4a07034c602ce">&#9670;&nbsp;</a></span>IEEE_F64BE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; IEEE_F64BE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="af06cae93503b9805f7ee8fbac4738102"></a>
<h2 class="memtitle"><span class="permalink"><a href="#af06cae93503b9805f7ee8fbac4738102">&#9670;&nbsp;</a></span>IEEE_F64LE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; IEEE_F64LE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="ae49d40abcffaf92c117916a2ce1ca1b1"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ae49d40abcffaf92c117916a2ce1ca1b1">&#9670;&nbsp;</a></span>INTEL_B16</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; INTEL_B16</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="af7fff3b0586f46e2949fa18b806844d2"></a>
<h2 class="memtitle"><span class="permalink"><a href="#af7fff3b0586f46e2949fa18b806844d2">&#9670;&nbsp;</a></span>INTEL_B32</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; INTEL_B32</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a206cb5c1131a37f5e669cb2238d662d0"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a206cb5c1131a37f5e669cb2238d662d0">&#9670;&nbsp;</a></span>INTEL_B64</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; INTEL_B64</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="ab38e7327ef3ee136d0c9a29737bdd246"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ab38e7327ef3ee136d0c9a29737bdd246">&#9670;&nbsp;</a></span>INTEL_B8</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; INTEL_B8</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a108f6585ad5c1bc005af3a2142df3dd3"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a108f6585ad5c1bc005af3a2142df3dd3">&#9670;&nbsp;</a></span>INTEL_F32</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; INTEL_F32</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a91f49f19d14100dcfbfe4a44d6b476ed"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a91f49f19d14100dcfbfe4a44d6b476ed">&#9670;&nbsp;</a></span>INTEL_F64</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; INTEL_F64</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a0847fe3bad13ff848d5968f32ac3f038"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a0847fe3bad13ff848d5968f32ac3f038">&#9670;&nbsp;</a></span>INTEL_I16</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; INTEL_I16</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a54201329a62562d979e470f358f2ba45"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a54201329a62562d979e470f358f2ba45">&#9670;&nbsp;</a></span>INTEL_I32</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; INTEL_I32</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a6eff4a03ecd6d7f884af43e5e2d5e33e"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a6eff4a03ecd6d7f884af43e5e2d5e33e">&#9670;&nbsp;</a></span>INTEL_I64</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; INTEL_I64</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="afd9287b2ee21a00ed95853c4e30b4f16"></a>
<h2 class="memtitle"><span class="permalink"><a href="#afd9287b2ee21a00ed95853c4e30b4f16">&#9670;&nbsp;</a></span>INTEL_I8</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; INTEL_I8</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a0f081bf6c7337a2925b23ed14cc41c7d"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a0f081bf6c7337a2925b23ed14cc41c7d">&#9670;&nbsp;</a></span>INTEL_U16</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; INTEL_U16</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a36690bab3e6968f56ca237708ccaac8e"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a36690bab3e6968f56ca237708ccaac8e">&#9670;&nbsp;</a></span>INTEL_U32</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; INTEL_U32</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a9c23efe61b9c833e01777110f3a6fb06"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a9c23efe61b9c833e01777110f3a6fb06">&#9670;&nbsp;</a></span>INTEL_U64</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; INTEL_U64</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="ad4e82b630ba7276dc3f2906e89e042ef"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ad4e82b630ba7276dc3f2906e89e042ef">&#9670;&nbsp;</a></span>INTEL_U8</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; INTEL_U8</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="ab567178ebb3a9ffec1bb459cdd621bbb"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ab567178ebb3a9ffec1bb459cdd621bbb">&#9670;&nbsp;</a></span>MIPS_B16</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; MIPS_B16</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a6562ea8406d37fd52562de41d265f360"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a6562ea8406d37fd52562de41d265f360">&#9670;&nbsp;</a></span>MIPS_B32</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; MIPS_B32</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a646e0ce65f8dfcc43a46fb22629a2f2a"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a646e0ce65f8dfcc43a46fb22629a2f2a">&#9670;&nbsp;</a></span>MIPS_B64</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; MIPS_B64</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a8eac41890a11356e144fe63463e94746"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a8eac41890a11356e144fe63463e94746">&#9670;&nbsp;</a></span>MIPS_B8</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; MIPS_B8</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a50d9a876ec826e3d8ff2ea0f3b5b4b14"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a50d9a876ec826e3d8ff2ea0f3b5b4b14">&#9670;&nbsp;</a></span>MIPS_F32</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; MIPS_F32</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="ade668eff1083eee15beff6b46a951a51"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ade668eff1083eee15beff6b46a951a51">&#9670;&nbsp;</a></span>MIPS_F64</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; MIPS_F64</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="abb73baad0bfccf33ba0767d6f674db7b"></a>
<h2 class="memtitle"><span class="permalink"><a href="#abb73baad0bfccf33ba0767d6f674db7b">&#9670;&nbsp;</a></span>MIPS_I16</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; MIPS_I16</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a50b3f0d502c87c89d8bb1aeac389d506"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a50b3f0d502c87c89d8bb1aeac389d506">&#9670;&nbsp;</a></span>MIPS_I32</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; MIPS_I32</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a4ec1d1da8568267990e99d124ed3b92a"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a4ec1d1da8568267990e99d124ed3b92a">&#9670;&nbsp;</a></span>MIPS_I64</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; MIPS_I64</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a5ae0de6430a846e960993ea4ca36f219"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a5ae0de6430a846e960993ea4ca36f219">&#9670;&nbsp;</a></span>MIPS_I8</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; MIPS_I8</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="ab60838ba83b183d8bd15c53c1a79bf11"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ab60838ba83b183d8bd15c53c1a79bf11">&#9670;&nbsp;</a></span>MIPS_U16</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; MIPS_U16</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a8c5791d5b5539060d5f657ce4ed0cb9a"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a8c5791d5b5539060d5f657ce4ed0cb9a">&#9670;&nbsp;</a></span>MIPS_U32</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; MIPS_U32</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a859a3f8481eb011e1086f7f4bff0ada9"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a859a3f8481eb011e1086f7f4bff0ada9">&#9670;&nbsp;</a></span>MIPS_U64</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; MIPS_U64</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a85e247e926550d73f1846552ea80c245"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a85e247e926550d73f1846552ea80c245">&#9670;&nbsp;</a></span>MIPS_U8</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; MIPS_U8</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a23ce945c1dfc64d815b297f70e570cb0"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a23ce945c1dfc64d815b297f70e570cb0">&#9670;&nbsp;</a></span>NATIVE_B16</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_B16</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="aa9e3a4f2dec054c15b0a7234d00ae2e6"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aa9e3a4f2dec054c15b0a7234d00ae2e6">&#9670;&nbsp;</a></span>NATIVE_B32</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_B32</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a6b96b790556cb56cdcbbae809fbf8c46"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a6b96b790556cb56cdcbbae809fbf8c46">&#9670;&nbsp;</a></span>NATIVE_B64</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_B64</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a35c366730881ffb7c98e546465cd3ffa"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a35c366730881ffb7c98e546465cd3ffa">&#9670;&nbsp;</a></span>NATIVE_B8</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_B8</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a830998f1d6fd95efe39fa5e49e8ab6d2"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a830998f1d6fd95efe39fa5e49e8ab6d2">&#9670;&nbsp;</a></span>NATIVE_CHAR</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_CHAR</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a14cd04c4affe1d8ced431520f96c1dd7"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a14cd04c4affe1d8ced431520f96c1dd7">&#9670;&nbsp;</a></span>NATIVE_DOUBLE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_DOUBLE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a931c05637bddbfe96817ec82ead5ca9c"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a931c05637bddbfe96817ec82ead5ca9c">&#9670;&nbsp;</a></span>NATIVE_FLOAT</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_FLOAT</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a3fd1319cc25d14b5e68ba83efd8ef7f0"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a3fd1319cc25d14b5e68ba83efd8ef7f0">&#9670;&nbsp;</a></span>NATIVE_HBOOL</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_HBOOL</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="af824b40185c46d9fa78f4f77f3ce7ecf"></a>
<h2 class="memtitle"><span class="permalink"><a href="#af824b40185c46d9fa78f4f77f3ce7ecf">&#9670;&nbsp;</a></span>NATIVE_HERR</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_HERR</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a39786fb48bcd8b516b8991bb318fa7f1"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a39786fb48bcd8b516b8991bb318fa7f1">&#9670;&nbsp;</a></span>NATIVE_HSIZE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_HSIZE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="aa9bb09324da32865338f9a0d178fe231"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aa9bb09324da32865338f9a0d178fe231">&#9670;&nbsp;</a></span>NATIVE_HSSIZE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_HSSIZE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a484061c865a53159dbd82df8996e91ef"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a484061c865a53159dbd82df8996e91ef">&#9670;&nbsp;</a></span>NATIVE_INT</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_INT</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="ac7fdfe6f3c7029bd3f240e8a6305745e"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ac7fdfe6f3c7029bd3f240e8a6305745e">&#9670;&nbsp;</a></span>NATIVE_INT16</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_INT16</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a161311d86ade73d0a537a088e0122047"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a161311d86ade73d0a537a088e0122047">&#9670;&nbsp;</a></span>NATIVE_INT32</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_INT32</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="ab4cca24de2365982bb450ee12fd94baa"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ab4cca24de2365982bb450ee12fd94baa">&#9670;&nbsp;</a></span>NATIVE_INT64</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_INT64</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a7a27a89cf5c3512e6059b6f303ea27f6"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a7a27a89cf5c3512e6059b6f303ea27f6">&#9670;&nbsp;</a></span>NATIVE_INT8</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_INT8</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a4d33e962168a16d5b0b030fbad9a3595"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a4d33e962168a16d5b0b030fbad9a3595">&#9670;&nbsp;</a></span>NATIVE_INT_FAST16</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_INT_FAST16</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a9c88f3ed283f1c1a5fe0e6dbbe45e334"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a9c88f3ed283f1c1a5fe0e6dbbe45e334">&#9670;&nbsp;</a></span>NATIVE_INT_FAST32</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_INT_FAST32</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a9f648eab343a07ff9eeca69f5ec4a0c9"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a9f648eab343a07ff9eeca69f5ec4a0c9">&#9670;&nbsp;</a></span>NATIVE_INT_FAST64</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_INT_FAST64</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a5994c6f1aa5ccb155fd1f433b45717ea"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a5994c6f1aa5ccb155fd1f433b45717ea">&#9670;&nbsp;</a></span>NATIVE_INT_FAST8</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_INT_FAST8</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a54ffd495026bcae0980306d6e9164edb"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a54ffd495026bcae0980306d6e9164edb">&#9670;&nbsp;</a></span>NATIVE_INT_LEAST16</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_INT_LEAST16</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a15ae5e2b31e897e0ec5f8cb93c14f3a5"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a15ae5e2b31e897e0ec5f8cb93c14f3a5">&#9670;&nbsp;</a></span>NATIVE_INT_LEAST32</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_INT_LEAST32</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="ad6301ca5d8d5938392874a92b4b2a6ea"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ad6301ca5d8d5938392874a92b4b2a6ea">&#9670;&nbsp;</a></span>NATIVE_INT_LEAST64</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_INT_LEAST64</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a936041a8ee983866a23cf36b438ad5df"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a936041a8ee983866a23cf36b438ad5df">&#9670;&nbsp;</a></span>NATIVE_INT_LEAST8</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_INT_LEAST8</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a084341051c84aa8ae03e121b2d52b870"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a084341051c84aa8ae03e121b2d52b870">&#9670;&nbsp;</a></span>NATIVE_LDOUBLE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_LDOUBLE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a4848232bef2744954918bb8516d4d56b"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a4848232bef2744954918bb8516d4d56b">&#9670;&nbsp;</a></span>NATIVE_LLONG</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_LLONG</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a943786604a7e59f2c33543ac5a8a4d0e"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a943786604a7e59f2c33543ac5a8a4d0e">&#9670;&nbsp;</a></span>NATIVE_LONG</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_LONG</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a7e8105c637a8d25a13f182cf73db158d"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a7e8105c637a8d25a13f182cf73db158d">&#9670;&nbsp;</a></span>NATIVE_OPAQUE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_OPAQUE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a2520b6e9a689978ef6c5a2d5c4b38b95"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a2520b6e9a689978ef6c5a2d5c4b38b95">&#9670;&nbsp;</a></span>NATIVE_SCHAR</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_SCHAR</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="aba4e2a55ada402d85dfa02e90e9b4d53"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aba4e2a55ada402d85dfa02e90e9b4d53">&#9670;&nbsp;</a></span>NATIVE_SHORT</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_SHORT</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="ad94415bb9002000aaebb25dcbfdfa5b4"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ad94415bb9002000aaebb25dcbfdfa5b4">&#9670;&nbsp;</a></span>NATIVE_UCHAR</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_UCHAR</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a163ec2310d8905fcb8588a10cb50fd07"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a163ec2310d8905fcb8588a10cb50fd07">&#9670;&nbsp;</a></span>NATIVE_UINT</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_UINT</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a7250e4e574faa9301993242ecf74c6b3"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a7250e4e574faa9301993242ecf74c6b3">&#9670;&nbsp;</a></span>NATIVE_UINT16</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_UINT16</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a817576396e903c576bc43d448e90c81c"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a817576396e903c576bc43d448e90c81c">&#9670;&nbsp;</a></span>NATIVE_UINT32</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_UINT32</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a468b35ae0e6cad473d15857746effec2"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a468b35ae0e6cad473d15857746effec2">&#9670;&nbsp;</a></span>NATIVE_UINT64</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_UINT64</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="ab47cf3dabb261248542d656a363f145f"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ab47cf3dabb261248542d656a363f145f">&#9670;&nbsp;</a></span>NATIVE_UINT8</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_UINT8</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="aaffda2544376294cf3d94aa645c545f7"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aaffda2544376294cf3d94aa645c545f7">&#9670;&nbsp;</a></span>NATIVE_UINT_FAST16</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_UINT_FAST16</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a940a30923b03151cdf10d6aa735614a3"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a940a30923b03151cdf10d6aa735614a3">&#9670;&nbsp;</a></span>NATIVE_UINT_FAST32</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_UINT_FAST32</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a1f3e6c2eb8175cab55d566644ac5df97"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a1f3e6c2eb8175cab55d566644ac5df97">&#9670;&nbsp;</a></span>NATIVE_UINT_FAST64</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_UINT_FAST64</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a74a65788f0814ee48ff2e9df04c08aac"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a74a65788f0814ee48ff2e9df04c08aac">&#9670;&nbsp;</a></span>NATIVE_UINT_FAST8</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_UINT_FAST8</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a1a1064212817bd0464cbe4301dab81a7"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a1a1064212817bd0464cbe4301dab81a7">&#9670;&nbsp;</a></span>NATIVE_UINT_LEAST16</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_UINT_LEAST16</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a2adf7f7595758e153c33f2e3f03d60ad"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a2adf7f7595758e153c33f2e3f03d60ad">&#9670;&nbsp;</a></span>NATIVE_UINT_LEAST32</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_UINT_LEAST32</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a68e3cefa4de575208bf5f88c499486d7"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a68e3cefa4de575208bf5f88c499486d7">&#9670;&nbsp;</a></span>NATIVE_UINT_LEAST64</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_UINT_LEAST64</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="aef4b25f3336e6d2327722a1951550cac"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aef4b25f3336e6d2327722a1951550cac">&#9670;&nbsp;</a></span>NATIVE_UINT_LEAST8</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_UINT_LEAST8</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="ad231208b05ac6a5350aa6fbd2d35bb35"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ad231208b05ac6a5350aa6fbd2d35bb35">&#9670;&nbsp;</a></span>NATIVE_ULLONG</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_ULLONG</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a6ef52f1bc63c6a056e5f85e897d82a47"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a6ef52f1bc63c6a056e5f85e897d82a47">&#9670;&nbsp;</a></span>NATIVE_ULONG</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_ULONG</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a28e364f2aa26f9266183e7fcddd9939b"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a28e364f2aa26f9266183e7fcddd9939b">&#9670;&nbsp;</a></span>NATIVE_USHORT</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; NATIVE_USHORT</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="aa743f67b7d453be924a6c92964ff711c"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aa743f67b7d453be924a6c92964ff711c">&#9670;&nbsp;</a></span>PREDTYPE_CONST</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; PREDTYPE_CONST</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a47ef1261c9cf232ebca14aece391dbc0"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a47ef1261c9cf232ebca14aece391dbc0">&#9670;&nbsp;</a></span>STD_B16BE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; STD_B16BE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a63b3a59185e50c98cf06903893a0e7ef"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a63b3a59185e50c98cf06903893a0e7ef">&#9670;&nbsp;</a></span>STD_B16LE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; STD_B16LE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="af5c0c516e7b468fe1f3d72d2d9248ef2"></a>
<h2 class="memtitle"><span class="permalink"><a href="#af5c0c516e7b468fe1f3d72d2d9248ef2">&#9670;&nbsp;</a></span>STD_B32BE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; STD_B32BE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a99ccca2259734b163e302aa7bb097a60"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a99ccca2259734b163e302aa7bb097a60">&#9670;&nbsp;</a></span>STD_B32LE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; STD_B32LE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a302ee95ba2a425e261c74ebbd30983ab"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a302ee95ba2a425e261c74ebbd30983ab">&#9670;&nbsp;</a></span>STD_B64BE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; STD_B64BE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="af901efe222b5dd1b20b34db733c7ae8a"></a>
<h2 class="memtitle"><span class="permalink"><a href="#af901efe222b5dd1b20b34db733c7ae8a">&#9670;&nbsp;</a></span>STD_B64LE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; STD_B64LE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a65e13b26beb96a52644d7bf34d2a32ff"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a65e13b26beb96a52644d7bf34d2a32ff">&#9670;&nbsp;</a></span>STD_B8BE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; STD_B8BE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a659db73e0e9b86f7aa9e3e2fd4b02a75"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a659db73e0e9b86f7aa9e3e2fd4b02a75">&#9670;&nbsp;</a></span>STD_B8LE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; STD_B8LE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a9e09d50ba0956c3e0a54a6584e4b7097"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a9e09d50ba0956c3e0a54a6584e4b7097">&#9670;&nbsp;</a></span>STD_I16BE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; STD_I16BE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="acdc37fdc7e5a79af864f6b5c0271925a"></a>
<h2 class="memtitle"><span class="permalink"><a href="#acdc37fdc7e5a79af864f6b5c0271925a">&#9670;&nbsp;</a></span>STD_I16LE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; STD_I16LE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a2ec31185b3d61fec4c62e165e4e07114"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a2ec31185b3d61fec4c62e165e4e07114">&#9670;&nbsp;</a></span>STD_I32BE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; STD_I32BE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a418605538126dbf9e858f2b58e4d4604"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a418605538126dbf9e858f2b58e4d4604">&#9670;&nbsp;</a></span>STD_I32LE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; STD_I32LE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="acd1766c0e26eb9e0c56015e26b07e61c"></a>
<h2 class="memtitle"><span class="permalink"><a href="#acd1766c0e26eb9e0c56015e26b07e61c">&#9670;&nbsp;</a></span>STD_I64BE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; STD_I64BE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="af8ade184b4369639cda087ae0427fec6"></a>
<h2 class="memtitle"><span class="permalink"><a href="#af8ade184b4369639cda087ae0427fec6">&#9670;&nbsp;</a></span>STD_I64LE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; STD_I64LE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="ae6a0d577724c9b8496f75bee11fbd5a7"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ae6a0d577724c9b8496f75bee11fbd5a7">&#9670;&nbsp;</a></span>STD_I8BE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; STD_I8BE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p><a class="el" href="class_h5_1_1_pred_type.html" title="Class PredType holds the definition of all the HDF5 predefined datatypes.">PredType</a> constants. </p>

</div>
</div>
<a id="a434511c7e9b8f31247defeb45f5702a9"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a434511c7e9b8f31247defeb45f5702a9">&#9670;&nbsp;</a></span>STD_I8LE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; STD_I8LE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="af57fc6cd7ed951267ee857b9feef935c"></a>
<h2 class="memtitle"><span class="permalink"><a href="#af57fc6cd7ed951267ee857b9feef935c">&#9670;&nbsp;</a></span>STD_REF_DSETREG</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; STD_REF_DSETREG</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a3466142b993758e0e148aa5babe368dc"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a3466142b993758e0e148aa5babe368dc">&#9670;&nbsp;</a></span>STD_REF_OBJ</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; STD_REF_OBJ</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a6df15667c0ab70f99ff9a223b37f0133"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a6df15667c0ab70f99ff9a223b37f0133">&#9670;&nbsp;</a></span>STD_U16BE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; STD_U16BE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a345d706d95cfcb82227e6cbbd128c19e"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a345d706d95cfcb82227e6cbbd128c19e">&#9670;&nbsp;</a></span>STD_U16LE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; STD_U16LE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a2648761b8936e37773f404a872effd2e"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a2648761b8936e37773f404a872effd2e">&#9670;&nbsp;</a></span>STD_U32BE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; STD_U32BE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a1b2e74b044c8d47ca37d68582a87b01b"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a1b2e74b044c8d47ca37d68582a87b01b">&#9670;&nbsp;</a></span>STD_U32LE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; STD_U32LE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a198e5cb3109667ecb30c3191672fbcad"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a198e5cb3109667ecb30c3191672fbcad">&#9670;&nbsp;</a></span>STD_U64BE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; STD_U64BE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="aac16a938989a1c34fe613a44f8c1ea0a"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aac16a938989a1c34fe613a44f8c1ea0a">&#9670;&nbsp;</a></span>STD_U64LE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; STD_U64LE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a1ebcc04c66439fff89f7b808094f76bd"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a1ebcc04c66439fff89f7b808094f76bd">&#9670;&nbsp;</a></span>STD_U8BE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; STD_U8BE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a5420ed17b954f134a5804746f6356186"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a5420ed17b954f134a5804746f6356186">&#9670;&nbsp;</a></span>STD_U8LE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; STD_U8LE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a22e1aca75044d41f58c14cf1de3fbebf"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a22e1aca75044d41f58c14cf1de3fbebf">&#9670;&nbsp;</a></span>UNIX_D32BE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; UNIX_D32BE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a517fa687a889266fae8be8a247d6a8ff"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a517fa687a889266fae8be8a247d6a8ff">&#9670;&nbsp;</a></span>UNIX_D32LE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; UNIX_D32LE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="a3bc0393a9bae509be3d89ae5882c9ed5"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a3bc0393a9bae509be3d89ae5882c9ed5">&#9670;&nbsp;</a></span>UNIX_D64BE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; UNIX_D64BE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a id="ab777bec004f0b273864986a5a1973c1e"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ab777bec004f0b273864986a5a1973c1e">&#9670;&nbsp;</a></span>UNIX_D64LE</h2>

<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_pred_type.html">PredType</a>&amp; UNIX_D64LE</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li>c++/src/<a class="el" href="_h5_pred_type_8h.html">H5PredType.h</a></li>
</ul>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
  <ul>
    <li class="navelem"><a class="el" href="namespace_h5.html">H5</a></li><li class="navelem"><a class="el" href="class_h5_1_1_pred_type.html">PredType</a></li>
    <li class="footer">Generated by
    <a href="http://www.doxygen.org/index.html">
    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.9.1 </li>
  </ul>
</div>
</body>
</html>