summaryrefslogtreecommitdiffstats
path: root/c++/src/cpplus_RM/class_h5_1_1_h5_file.html
blob: 47d2525d984373e509346f998f598d18a8149926 (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
<!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.8.5"/>
<title>HDF5 C++ API: H5::H5File 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="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
  $(document).ready(function() { searchBox.OnSelectItem(0); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<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="hdf_logo.jpg"/></td>
  <td style="padding-left: 0.5em;">
   <div id="projectname">HDF5 C++ API
   &#160;<span id="projectnumber">1.8.13</span>
   </div>
  </td>
 </tr>
 </tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.5 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
  <div id="navrow1" class="tabs">
    <ul class="tablist">
      <li><a href="index.html"><span>Main&#160;Page</span></a></li>
      <li class="current"><a href="annotated.html"><span>Classes</span></a></li>
      <li><a href="examples.html"><span>Examples</span></a></li>
      <li>
        <div id="MSearchBox" class="MSearchBoxInactive">
        <span class="left">
          <img id="MSearchSelect" src="search/mag_sel.png"
               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.png" alt=""/></a>
          </span>
        </div>
      </li>
    </ul>
  </div>
  <div id="navrow2" class="tabs2">
    <ul class="tablist">
      <li><a href="annotated.html"><span>Class&#160;List</span></a></li>
      <li><a href="classes.html"><span>Class&#160;Index</span></a></li>
      <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li>
      <li><a href="functions.html"><span>Class&#160;Members</span></a></li>
    </ul>
  </div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
     onmouseover="return searchBox.OnSearchSelectShow()"
     onmouseout="return searchBox.OnSearchSelectHide()"
     onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Namespaces</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark">&#160;</span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark">&#160;</span>Variables</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(5)"><span class="SelectionMark">&#160;</span>Typedefs</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(6)"><span class="SelectionMark">&#160;</span>Pages</a></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 id="nav-path" class="navpath">
  <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_h5_file.html">H5File</a></li>  </ul>
</div>
</div><!-- top -->
<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="class_h5_1_1_h5_file-members.html">List of all members</a>  </div>
  <div class="headertitle">
<div class="title">H5::H5File Class Reference</div>  </div>
</div><!--header-->
<div class="contents">

<p>Class <a class="el" href="class_h5_1_1_h5_file.html" title="Class H5File represents an HDF5 file. ">H5File</a> represents an HDF5 file.  
 <a href="class_h5_1_1_h5_file.html#details">More...</a></p>

<p><code>#include &lt;<a class="el" href="_h5_file_8h_source.html">H5File.h</a>&gt;</code></p>
<div class="dynheader">
Inheritance diagram for H5::H5File:</div>
<div class="dyncontent">
 <div class="center">
  <img src="class_h5_1_1_h5_file.png" usemap="#H5::H5File_map" alt=""/>
  <map id="H5::H5File_map" name="H5::H5File_map">
<area href="class_h5_1_1_h5_location.html" title="H5Location is an abstract base class, added in version 1.8.12. " alt="H5::H5Location" shape="rect" coords="0,56,107,80"/>
<area href="class_h5_1_1_common_f_g.html" title="CommonFG is an abstract base class of H5File and H5Group. " alt="H5::CommonFG" shape="rect" coords="117,56,224,80"/>
<area href="class_h5_1_1_id_component.html" title="Class IdComponent provides wrappers of the C functions that operate on an HDF5 identifier. " alt="H5::IdComponent" shape="rect" coords="0,0,107,24"/>
</map>
 </div></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:af25054898de738072217e274217a278c"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_file.html#af25054898de738072217e274217a278c">H5File</a> (const char *name, unsigned int flags, const <a class="el" href="class_h5_1_1_file_creat_prop_list.html">FileCreatPropList</a> &amp;create_plist=<a class="el" href="class_h5_1_1_file_creat_prop_list.html#a82f8cb6df67bd26c655cb3f9c3b30dbc">FileCreatPropList::DEFAULT</a>, const <a class="el" href="class_h5_1_1_file_acc_prop_list.html">FileAccPropList</a> &amp;access_plist=<a class="el" href="class_h5_1_1_file_acc_prop_list.html#a21e14f8342d3730ce1cffb61c04310af">FileAccPropList::DEFAULT</a>)</td></tr>
<tr class="memdesc:af25054898de738072217e274217a278c"><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates or opens an HDF5 file depending on the parameter flags.  <a href="#af25054898de738072217e274217a278c">More...</a><br/></td></tr>
<tr class="separator:af25054898de738072217e274217a278c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a74bb8e05dde9450227bc27841277375f"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_file.html#a74bb8e05dde9450227bc27841277375f">H5File</a> (const H5std_string &amp;name, unsigned int flags, const <a class="el" href="class_h5_1_1_file_creat_prop_list.html">FileCreatPropList</a> &amp;create_plist=<a class="el" href="class_h5_1_1_file_creat_prop_list.html#a82f8cb6df67bd26c655cb3f9c3b30dbc">FileCreatPropList::DEFAULT</a>, const <a class="el" href="class_h5_1_1_file_acc_prop_list.html">FileAccPropList</a> &amp;access_plist=<a class="el" href="class_h5_1_1_file_acc_prop_list.html#a21e14f8342d3730ce1cffb61c04310af">FileAccPropList::DEFAULT</a>)</td></tr>
<tr class="memdesc:a74bb8e05dde9450227bc27841277375f"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is another overloaded constructor. It differs from the above constructor only in the type of the <em>name</em> argument.  <a href="#a74bb8e05dde9450227bc27841277375f">More...</a><br/></td></tr>
<tr class="separator:a74bb8e05dde9450227bc27841277375f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab20ea83ffa86b74e13168b6c2fdfd817"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_file.html#ab20ea83ffa86b74e13168b6c2fdfd817">openFile</a> (const H5std_string &amp;name, unsigned int flags, const <a class="el" href="class_h5_1_1_file_acc_prop_list.html">FileAccPropList</a> &amp;access_plist=<a class="el" href="class_h5_1_1_file_acc_prop_list.html#a21e14f8342d3730ce1cffb61c04310af">FileAccPropList::DEFAULT</a>)</td></tr>
<tr class="memdesc:ab20ea83ffa86b74e13168b6c2fdfd817"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It takes an <code>H5std_string</code> for <em>name</em>.  <a href="#ab20ea83ffa86b74e13168b6c2fdfd817">More...</a><br/></td></tr>
<tr class="separator:ab20ea83ffa86b74e13168b6c2fdfd817"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae20ef228e7c2db78d31180d3521319ee"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_file.html#ae20ef228e7c2db78d31180d3521319ee">openFile</a> (const char *name, unsigned int flags, const <a class="el" href="class_h5_1_1_file_acc_prop_list.html">FileAccPropList</a> &amp;access_plist=<a class="el" href="class_h5_1_1_file_acc_prop_list.html#a21e14f8342d3730ce1cffb61c04310af">FileAccPropList::DEFAULT</a>)</td></tr>
<tr class="memdesc:ae20ef228e7c2db78d31180d3521319ee"><td class="mdescLeft">&#160;</td><td class="mdescRight">Opens an HDF5 file.  <a href="#ae20ef228e7c2db78d31180d3521319ee">More...</a><br/></td></tr>
<tr class="separator:ae20ef228e7c2db78d31180d3521319ee"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4f1cd3bce2a84c7ea43bb9e679b6babe"><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_file.html#a4f1cd3bce2a84c7ea43bb9e679b6babe">close</a> ()</td></tr>
<tr class="memdesc:a4f1cd3bce2a84c7ea43bb9e679b6babe"><td class="mdescLeft">&#160;</td><td class="mdescRight">Closes this HDF5 file.  <a href="#a4f1cd3bce2a84c7ea43bb9e679b6babe">More...</a><br/></td></tr>
<tr class="separator:a4f1cd3bce2a84c7ea43bb9e679b6babe"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aed49af447bf5704fa4c186dbdfd2d11f"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_file_acc_prop_list.html">FileAccPropList</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_file.html#aed49af447bf5704fa4c186dbdfd2d11f">getAccessPlist</a> () const </td></tr>
<tr class="memdesc:aed49af447bf5704fa4c186dbdfd2d11f"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the access property list of this file.  <a href="#aed49af447bf5704fa4c186dbdfd2d11f">More...</a><br/></td></tr>
<tr class="separator:aed49af447bf5704fa4c186dbdfd2d11f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad939a66d4863b9fc439672acba8d3b15"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_file_creat_prop_list.html">FileCreatPropList</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_file.html#ad939a66d4863b9fc439672acba8d3b15">getCreatePlist</a> () const </td></tr>
<tr class="memdesc:ad939a66d4863b9fc439672acba8d3b15"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the creation property list of this file.  <a href="#ad939a66d4863b9fc439672acba8d3b15">More...</a><br/></td></tr>
<tr class="separator:ad939a66d4863b9fc439672acba8d3b15"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab1ebf23c585ab8144aeefbcc3e8afeb9"><td class="memItemLeft" align="right" valign="top">hsize_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_file.html#ab1ebf23c585ab8144aeefbcc3e8afeb9">getFileSize</a> () const </td></tr>
<tr class="memdesc:ab1ebf23c585ab8144aeefbcc3e8afeb9"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the file size of the HDF5 file.  <a href="#ab1ebf23c585ab8144aeefbcc3e8afeb9">More...</a><br/></td></tr>
<tr class="separator:ab1ebf23c585ab8144aeefbcc3e8afeb9"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afb92b6c1e1ab32993dad71d07efb1f9d"><td class="memItemLeft" align="right" valign="top">hssize_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_file.html#afb92b6c1e1ab32993dad71d07efb1f9d">getFreeSpace</a> () const </td></tr>
<tr class="memdesc:afb92b6c1e1ab32993dad71d07efb1f9d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the amount of free space in the file.  <a href="#afb92b6c1e1ab32993dad71d07efb1f9d">More...</a><br/></td></tr>
<tr class="separator:afb92b6c1e1ab32993dad71d07efb1f9d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad8a0582836ae35b9b24c6efe0595100d"><td class="memItemLeft" align="right" valign="top">ssize_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_file.html#ad8a0582836ae35b9b24c6efe0595100d">getObjCount</a> (unsigned types) const </td></tr>
<tr class="memdesc:ad8a0582836ae35b9b24c6efe0595100d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the number of opened object IDs (files, datasets, groups and datatypes) in the same file.  <a href="#ad8a0582836ae35b9b24c6efe0595100d">More...</a><br/></td></tr>
<tr class="separator:ad8a0582836ae35b9b24c6efe0595100d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a47fe0895c12b0a82362fcdc7825339ba"><td class="memItemLeft" align="right" valign="top">ssize_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_file.html#a47fe0895c12b0a82362fcdc7825339ba">getObjCount</a> () const </td></tr>
<tr class="memdesc:a47fe0895c12b0a82362fcdc7825339ba"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It takes no parameter and returns the object count of all object types.  <a href="#a47fe0895c12b0a82362fcdc7825339ba">More...</a><br/></td></tr>
<tr class="separator:a47fe0895c12b0a82362fcdc7825339ba"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6bf4658fbb77703741ef4e9129ac602c"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_file.html#a6bf4658fbb77703741ef4e9129ac602c">getObjIDs</a> (unsigned types, size_t max_objs, hid_t *oid_list) const </td></tr>
<tr class="memdesc:a6bf4658fbb77703741ef4e9129ac602c"><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves a list of opened object IDs (files, datasets, groups and datatypes) in the same file.  <a href="#a6bf4658fbb77703741ef4e9129ac602c">More...</a><br/></td></tr>
<tr class="separator:a6bf4658fbb77703741ef4e9129ac602c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abf72aaec783cf027e1528acf2ac7b9d7"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_file.html#abf72aaec783cf027e1528acf2ac7b9d7">getVFDHandle</a> (void **file_handle) const </td></tr>
<tr class="memdesc:abf72aaec783cf027e1528acf2ac7b9d7"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function only in what arguments it accepts.  <a href="#abf72aaec783cf027e1528acf2ac7b9d7">More...</a><br/></td></tr>
<tr class="separator:abf72aaec783cf027e1528acf2ac7b9d7"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afab750a1b471366af92ee04730685fbd"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_file.html#afab750a1b471366af92ee04730685fbd">getVFDHandle</a> (const <a class="el" href="class_h5_1_1_file_acc_prop_list.html">FileAccPropList</a> &amp;fapl, void **file_handle) const </td></tr>
<tr class="memdesc:afab750a1b471366af92ee04730685fbd"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the pointer to the file handle of the low-level file driver.  <a href="#afab750a1b471366af92ee04730685fbd">More...</a><br/></td></tr>
<tr class="separator:afab750a1b471366af92ee04730685fbd"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afafd315440c16e447aac4e7cfef04941"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_file.html#afafd315440c16e447aac4e7cfef04941">getVFDHandle</a> (<a class="el" href="class_h5_1_1_file_acc_prop_list.html">FileAccPropList</a> &amp;fapl, void **file_handle) const </td></tr>
<tr class="memdesc:afafd315440c16e447aac4e7cfef04941"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, kept for backward compatibility. It differs from the above function in that it misses const. This wrapper will be removed in future release.  <a href="#afafd315440c16e447aac4e7cfef04941">More...</a><br/></td></tr>
<tr class="separator:afafd315440c16e447aac4e7cfef04941"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af3f5bdd07e7b26a6090ff8361df80498"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_file.html#af3f5bdd07e7b26a6090ff8361df80498">reOpen</a> ()</td></tr>
<tr class="memdesc:af3f5bdd07e7b26a6090ff8361df80498"><td class="mdescLeft">&#160;</td><td class="mdescRight">Reopens this file.  <a href="#af3f5bdd07e7b26a6090ff8361df80498">More...</a><br/></td></tr>
<tr class="separator:af3f5bdd07e7b26a6090ff8361df80498"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a972ecba8c346ad46a35c0cdb0b8ed78f"><td class="memItemLeft" align="right" valign="top">virtual H5std_string&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_file.html#a972ecba8c346ad46a35c0cdb0b8ed78f">fromClass</a> () const </td></tr>
<tr class="memdesc:a972ecba8c346ad46a35c0cdb0b8ed78f"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns this class name.  <a href="#a972ecba8c346ad46a35c0cdb0b8ed78f">More...</a><br/></td></tr>
<tr class="separator:a972ecba8c346ad46a35c0cdb0b8ed78f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a78fad4e8b2d4f26f8cb9c672dd7efd25"><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_file.html#a78fad4e8b2d4f26f8cb9c672dd7efd25">throwException</a> (const H5std_string &amp;func_name, const H5std_string &amp;msg) const </td></tr>
<tr class="memdesc:a78fad4e8b2d4f26f8cb9c672dd7efd25"><td class="mdescLeft">&#160;</td><td class="mdescRight">Throws file exception - initially implemented for <a class="el" href="class_h5_1_1_common_f_g.html" title="CommonFG is an abstract base class of H5File and H5Group. ">CommonFG</a>.  <a href="#a78fad4e8b2d4f26f8cb9c672dd7efd25">More...</a><br/></td></tr>
<tr class="separator:a78fad4e8b2d4f26f8cb9c672dd7efd25"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a36dd29998f6e70b7cb9735a44686baad"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_file.html#a36dd29998f6e70b7cb9735a44686baad">H5File</a> ()</td></tr>
<tr class="memdesc:a36dd29998f6e70b7cb9735a44686baad"><td class="mdescLeft">&#160;</td><td class="mdescRight">Default constructor: creates a stub <a class="el" href="class_h5_1_1_h5_file.html" title="Class H5File represents an HDF5 file. ">H5File</a> object.  <a href="#a36dd29998f6e70b7cb9735a44686baad">More...</a><br/></td></tr>
<tr class="separator:a36dd29998f6e70b7cb9735a44686baad"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a912472f9bdf2bf90590a9e8ecaed3b99"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_file.html#a912472f9bdf2bf90590a9e8ecaed3b99">H5File</a> (const <a class="el" href="class_h5_1_1_h5_file.html">H5File</a> &amp;original)</td></tr>
<tr class="memdesc:a912472f9bdf2bf90590a9e8ecaed3b99"><td class="mdescLeft">&#160;</td><td class="mdescRight">Copy constructor: makes a copy of the original <a class="el" href="class_h5_1_1_h5_file.html" title="Class H5File represents an HDF5 file. ">H5File</a> object.  <a href="#a912472f9bdf2bf90590a9e8ecaed3b99">More...</a><br/></td></tr>
<tr class="separator:a912472f9bdf2bf90590a9e8ecaed3b99"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a678d947a4efe731e497d33d1c23922ff"><td class="memItemLeft" align="right" valign="top">virtual hid_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_file.html#a678d947a4efe731e497d33d1c23922ff">getId</a> () const </td></tr>
<tr class="memdesc:a678d947a4efe731e497d33d1c23922ff"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the id of this file.  <a href="#a678d947a4efe731e497d33d1c23922ff">More...</a><br/></td></tr>
<tr class="separator:a678d947a4efe731e497d33d1c23922ff"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af59e44dc590c9d47305d6a316837585d"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_file.html#af59e44dc590c9d47305d6a316837585d">~H5File</a> ()</td></tr>
<tr class="memdesc:af59e44dc590c9d47305d6a316837585d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Properly terminates access to this file.  <a href="#af59e44dc590c9d47305d6a316837585d">More...</a><br/></td></tr>
<tr class="separator:af59e44dc590c9d47305d6a316837585d"><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">H5::H5Location</a></td></tr>
<tr class="memitem:a624715e413bc019345cd596db745094a inherit pub_methods_class_h5_1_1_h5_location"><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_location.html#a624715e413bc019345cd596db745094a">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#a0f2f757ca782a743006c5756191c404b">PropList::DEFAULT</a>) const </td></tr>
<tr class="memdesc:a624715e413bc019345cd596db745094a inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates an attribute for a group, dataset, or named datatype.  <a href="#a624715e413bc019345cd596db745094a">More...</a><br/></td></tr>
<tr class="separator:a624715e413bc019345cd596db745094a inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4c6e6ba2aba27c6ab45afd8f31b0fc1b inherit pub_methods_class_h5_1_1_h5_location"><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_location.html#a4c6e6ba2aba27c6ab45afd8f31b0fc1b">createAttribute</a> (const H5std_string &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#a0f2f757ca782a743006c5756191c404b">PropList::DEFAULT</a>) const </td></tr>
<tr class="memdesc:a4c6e6ba2aba27c6ab45afd8f31b0fc1b inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes a reference to an <code>H5std_string</code> for <em>name</em>.  <a href="#a4c6e6ba2aba27c6ab45afd8f31b0fc1b">More...</a><br/></td></tr>
<tr class="separator:a4c6e6ba2aba27c6ab45afd8f31b0fc1b inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a81b52d2947c4abb7d94ca1987f3a1bc0 inherit pub_methods_class_h5_1_1_h5_location"><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_location.html#a81b52d2947c4abb7d94ca1987f3a1bc0">openAttribute</a> (const char *name) const </td></tr>
<tr class="memdesc:a81b52d2947c4abb7d94ca1987f3a1bc0 inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">Opens an attribute given its name.  <a href="#a81b52d2947c4abb7d94ca1987f3a1bc0">More...</a><br/></td></tr>
<tr class="separator:a81b52d2947c4abb7d94ca1987f3a1bc0 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abad070fe2482e81006ee7fce61b6495c inherit pub_methods_class_h5_1_1_h5_location"><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_location.html#abad070fe2482e81006ee7fce61b6495c">openAttribute</a> (const H5std_string &amp;name) const </td></tr>
<tr class="memdesc:abad070fe2482e81006ee7fce61b6495c inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes a reference to an <code>H5std_string</code> for <em>name</em>.  <a href="#abad070fe2482e81006ee7fce61b6495c">More...</a><br/></td></tr>
<tr class="separator:abad070fe2482e81006ee7fce61b6495c inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac82e73079dc97dee2c198b978700c137 inherit pub_methods_class_h5_1_1_h5_location"><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_location.html#ac82e73079dc97dee2c198b978700c137">openAttribute</a> (const unsigned int idx) const </td></tr>
<tr class="memdesc:ac82e73079dc97dee2c198b978700c137 inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">Opens an attribute given its index.  <a href="#ac82e73079dc97dee2c198b978700c137">More...</a><br/></td></tr>
<tr class="separator:ac82e73079dc97dee2c198b978700c137 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a505e916da3c7ce2264d97480de0aa800 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#a505e916da3c7ce2264d97480de0aa800">flush</a> (H5F_scope_t scope) const </td></tr>
<tr class="memdesc:a505e916da3c7ce2264d97480de0aa800 inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">Flushes all buffers associated with a location to disk.  <a href="#a505e916da3c7ce2264d97480de0aa800">More...</a><br/></td></tr>
<tr class="separator:a505e916da3c7ce2264d97480de0aa800 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae41b390f0ed7503c0cadcbabc3b9e16b inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">H5std_string&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#ae41b390f0ed7503c0cadcbabc3b9e16b">getFileName</a> () const </td></tr>
<tr class="memdesc:ae41b390f0ed7503c0cadcbabc3b9e16b inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">Gets the name of the file, in which this HDF5 object belongs.  <a href="#ae41b390f0ed7503c0cadcbabc3b9e16b">More...</a><br/></td></tr>
<tr class="separator:ae41b390f0ed7503c0cadcbabc3b9e16b inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a840d5fc024a977c0939fe743379791f0 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#a840d5fc024a977c0939fe743379791f0">getNumAttrs</a> () const </td></tr>
<tr class="memdesc:a840d5fc024a977c0939fe743379791f0 inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the number of attributes attached to this HDF5 object.  <a href="#a840d5fc024a977c0939fe743379791f0">More...</a><br/></td></tr>
<tr class="separator:a840d5fc024a977c0939fe743379791f0 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0bc22a403e59bb551554c03f2d05b281 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">H5G_obj_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a0bc22a403e59bb551554c03f2d05b281">getObjType</a> (void *ref, H5R_type_t ref_type=H5R_OBJECT) const </td></tr>
<tr class="memdesc:a0bc22a403e59bb551554c03f2d05b281 inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves the type of object that an object reference points to.  <a href="#a0bc22a403e59bb551554c03f2d05b281">More...</a><br/></td></tr>
<tr class="separator:a0bc22a403e59bb551554c03f2d05b281 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a665df853b9bb991fdf0328770f2e33e0 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">H5O_type_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a665df853b9bb991fdf0328770f2e33e0">getRefObjType</a> (void *ref, H5R_type_t ref_type=H5R_OBJECT) const </td></tr>
<tr class="memdesc:a665df853b9bb991fdf0328770f2e33e0 inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves the type of object that an object reference points to.  <a href="#a665df853b9bb991fdf0328770f2e33e0">More...</a><br/></td></tr>
<tr class="separator:a665df853b9bb991fdf0328770f2e33e0 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aad71c39cd20e8539891766571174d12a 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#aad71c39cd20e8539891766571174d12a">iterateAttrs</a> (<a class="el" href="namespace_h5.html#a5913cae82307d2db03277d081dd71b26">attr_operator_t</a> user_op, unsigned *idx=NULL, void *op_data=NULL)</td></tr>
<tr class="memdesc:aad71c39cd20e8539891766571174d12a inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">Iterates a user's function over all the attributes of an <a class="el" href="namespace_h5.html">H5</a> object, which may be a group, dataset or named datatype.  <a href="#aad71c39cd20e8539891766571174d12a">More...</a><br/></td></tr>
<tr class="separator:aad71c39cd20e8539891766571174d12a inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9851243382265a412a8deeacf372f250 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#a9851243382265a412a8deeacf372f250">attrExists</a> (const char *name) const </td></tr>
<tr class="memdesc:a9851243382265a412a8deeacf372f250 inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">Checks whether the named attribute exists at this location.  <a href="#a9851243382265a412a8deeacf372f250">More...</a><br/></td></tr>
<tr class="separator:a9851243382265a412a8deeacf372f250 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a811bad80304c37276264377f326e3014 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#a811bad80304c37276264377f326e3014">attrExists</a> (const H5std_string &amp;name) const </td></tr>
<tr class="memdesc:a811bad80304c37276264377f326e3014 inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes a reference to an <code>H5std_string</code> for <em>name</em>.  <a href="#a811bad80304c37276264377f326e3014">More...</a><br/></td></tr>
<tr class="separator:a811bad80304c37276264377f326e3014 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab91ea93e37511b47d7b7a66dd0e5106c 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#ab91ea93e37511b47d7b7a66dd0e5106c">renameAttr</a> (const char *oldname, const char *newname) const </td></tr>
<tr class="memdesc:ab91ea93e37511b47d7b7a66dd0e5106c inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">Renames the named attribute from this object.  <a href="#ab91ea93e37511b47d7b7a66dd0e5106c">More...</a><br/></td></tr>
<tr class="separator:ab91ea93e37511b47d7b7a66dd0e5106c inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2173e9687bdef8e56995c1505dd9cf76 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#a2173e9687bdef8e56995c1505dd9cf76">renameAttr</a> (const H5std_string &amp;oldname, const H5std_string &amp;newname) const </td></tr>
<tr class="memdesc:a2173e9687bdef8e56995c1505dd9cf76 inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes a reference to an <code>H5std_string</code> for the names.  <a href="#a2173e9687bdef8e56995c1505dd9cf76">More...</a><br/></td></tr>
<tr class="separator:a2173e9687bdef8e56995c1505dd9cf76 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a39ee7ff5208391e8b1f97eedf3ce32e4 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#a39ee7ff5208391e8b1f97eedf3ce32e4">removeAttr</a> (const char *name) const </td></tr>
<tr class="memdesc:a39ee7ff5208391e8b1f97eedf3ce32e4 inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">Removes the named attribute from this object.  <a href="#a39ee7ff5208391e8b1f97eedf3ce32e4">More...</a><br/></td></tr>
<tr class="separator:a39ee7ff5208391e8b1f97eedf3ce32e4 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8cb4453b1db9f8082b5e0274f302c3fb 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#a8cb4453b1db9f8082b5e0274f302c3fb">removeAttr</a> (const H5std_string &amp;name) const </td></tr>
<tr class="memdesc:a8cb4453b1db9f8082b5e0274f302c3fb inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes a reference to an <code>H5std_string</code> for <em>name</em>.  <a href="#a8cb4453b1db9f8082b5e0274f302c3fb">More...</a><br/></td></tr>
<tr class="separator:a8cb4453b1db9f8082b5e0274f302c3fb inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac21f731f9df1d9bce610ad11439c2f96 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#ac21f731f9df1d9bce610ad11439c2f96">setComment</a> (const char *name, const char *comment) const </td></tr>
<tr class="memdesc:ac21f731f9df1d9bce610ad11439c2f96 inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets or resets the comment for an object specified by its name.  <a href="#ac21f731f9df1d9bce610ad11439c2f96">More...</a><br/></td></tr>
<tr class="separator:ac21f731f9df1d9bce610ad11439c2f96 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af5d9700b303e4f333c04cbed7e4ae38f 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#af5d9700b303e4f333c04cbed7e4ae38f">setComment</a> (const H5std_string &amp;name, const H5std_string &amp;comment) const </td></tr>
<tr class="memdesc:af5d9700b303e4f333c04cbed7e4ae38f inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes an <code>H5std_string</code> for <em>name</em> and <em>comment</em>.  <a href="#af5d9700b303e4f333c04cbed7e4ae38f">More...</a><br/></td></tr>
<tr class="separator:af5d9700b303e4f333c04cbed7e4ae38f inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7d95f9b069c833c309b95f7b7e657af8 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#a7d95f9b069c833c309b95f7b7e657af8">setComment</a> (const char *comment) const </td></tr>
<tr class="memdesc:a7d95f9b069c833c309b95f7b7e657af8 inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it doesn't take an object name.  <a href="#a7d95f9b069c833c309b95f7b7e657af8">More...</a><br/></td></tr>
<tr class="separator:a7d95f9b069c833c309b95f7b7e657af8 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7eb08e192bbe76280f0f70b71db72420 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#a7eb08e192bbe76280f0f70b71db72420">setComment</a> (const H5std_string &amp;comment) const </td></tr>
<tr class="memdesc:a7eb08e192bbe76280f0f70b71db72420 inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes an <code>H5std_string</code> for <em>comment</em>.  <a href="#a7eb08e192bbe76280f0f70b71db72420">More...</a><br/></td></tr>
<tr class="separator:a7eb08e192bbe76280f0f70b71db72420 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af5d293737bf690f86ebd6afa64bbcfc6 inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">ssize_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#af5d293737bf690f86ebd6afa64bbcfc6">getComment</a> (const char *name, size_t buf_size, char *comment) const </td></tr>
<tr class="memdesc:af5d293737bf690f86ebd6afa64bbcfc6 inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves the comment for this location, returning its length.  <a href="#af5d293737bf690f86ebd6afa64bbcfc6">More...</a><br/></td></tr>
<tr class="separator:af5d293737bf690f86ebd6afa64bbcfc6 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a285b453596cf2c08d1b15ddd3fea9ada inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">H5std_string&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a285b453596cf2c08d1b15ddd3fea9ada">getComment</a> (const char *name, size_t buf_size=0) const </td></tr>
<tr class="memdesc:a285b453596cf2c08d1b15ddd3fea9ada inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the comment as <em>string</em> for this location, returning its length.  <a href="#a285b453596cf2c08d1b15ddd3fea9ada">More...</a><br/></td></tr>
<tr class="separator:a285b453596cf2c08d1b15ddd3fea9ada inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a79716283e9635238bbb5711e56f6379c inherit pub_methods_class_h5_1_1_h5_location"><td class="memItemLeft" align="right" valign="top">H5std_string&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_location.html#a79716283e9635238bbb5711e56f6379c">getComment</a> (const H5std_string &amp;name, size_t buf_size=0) const </td></tr>
<tr class="memdesc:a79716283e9635238bbb5711e56f6379c inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes an <code>H5std_string</code> for <em>name</em>.  <a href="#a79716283e9635238bbb5711e56f6379c">More...</a><br/></td></tr>
<tr class="separator:a79716283e9635238bbb5711e56f6379c inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5545d3fd20f74c7f94195f555f255ddf 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#a5545d3fd20f74c7f94195f555f255ddf">removeComment</a> (const char *name) const </td></tr>
<tr class="memdesc:a5545d3fd20f74c7f94195f555f255ddf inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">Removes the comment from an object specified by its name.  <a href="#a5545d3fd20f74c7f94195f555f255ddf">More...</a><br/></td></tr>
<tr class="separator:a5545d3fd20f74c7f94195f555f255ddf inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a763eac5a87497deed3676920923469ad 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#a763eac5a87497deed3676920923469ad">removeComment</a> (const H5std_string &amp;name) const </td></tr>
<tr class="memdesc:a763eac5a87497deed3676920923469ad inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes an <code>H5std_string</code> for <em>name</em>.  <a href="#a763eac5a87497deed3676920923469ad">More...</a><br/></td></tr>
<tr class="separator:a763eac5a87497deed3676920923469ad inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae831f2bdb0e5971becebc76726dc9536 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#ae831f2bdb0e5971becebc76726dc9536">reference</a> (void *ref, const char *name, H5R_type_t ref_type=H5R_OBJECT) const </td></tr>
<tr class="memdesc:ae831f2bdb0e5971becebc76726dc9536 inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded function, provided for your convenience. It differs from the above function in that it does not take a <a class="el" href="class_h5_1_1_data_space.html" title="Class DataSpace operates on HDF5 dataspaces. ">DataSpace</a> object and the reference type must be specified.  <a href="#ae831f2bdb0e5971becebc76726dc9536">More...</a><br/></td></tr>
<tr class="separator:ae831f2bdb0e5971becebc76726dc9536 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a23c3e2b8d8157a0039e9dcc43109345c 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#a23c3e2b8d8157a0039e9dcc43109345c">reference</a> (void *ref, const H5std_string &amp;name, H5R_type_t ref_type=H5R_OBJECT) const </td></tr>
<tr class="memdesc:a23c3e2b8d8157a0039e9dcc43109345c inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded function, provided for your convenience. It differs from the above function in that it takes an <code>H5std_string</code> for the object's name.  <a href="#a23c3e2b8d8157a0039e9dcc43109345c">More...</a><br/></td></tr>
<tr class="separator:a23c3e2b8d8157a0039e9dcc43109345c inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6928514c43d4c0debf1afd7511f28511 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#a6928514c43d4c0debf1afd7511f28511">reference</a> (void *ref, const char *name, const <a class="el" href="class_h5_1_1_data_space.html">DataSpace</a> &amp;dataspace, H5R_type_t ref_type=H5R_DATASET_REGION) const </td></tr>
<tr class="memdesc:a6928514c43d4c0debf1afd7511f28511 inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates a reference to an HDF5 object or a dataset region.  <a href="#a6928514c43d4c0debf1afd7511f28511">More...</a><br/></td></tr>
<tr class="separator:a6928514c43d4c0debf1afd7511f28511 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac152ae8124df4cfbf7e880c67bb7e66b 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#ac152ae8124df4cfbf7e880c67bb7e66b">reference</a> (void *ref, const H5std_string &amp;name, const <a class="el" href="class_h5_1_1_data_space.html">DataSpace</a> &amp;dataspace, H5R_type_t ref_type=H5R_DATASET_REGION) const </td></tr>
<tr class="memdesc:ac152ae8124df4cfbf7e880c67bb7e66b inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes an <code>H5std_string</code> for <em>name</em>.  <a href="#ac152ae8124df4cfbf7e880c67bb7e66b">More...</a><br/></td></tr>
<tr class="separator:ac152ae8124df4cfbf7e880c67bb7e66b inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a43fe9cb23e4ab9dd1004308661be59c3 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#a43fe9cb23e4ab9dd1004308661be59c3">dereference</a> (const <a class="el" href="class_h5_1_1_h5_location.html">H5Location</a> &amp;loc, const void *ref, H5R_type_t ref_type=H5R_OBJECT, 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#a0f2f757ca782a743006c5756191c404b">PropList::DEFAULT</a>)</td></tr>
<tr class="memdesc:a43fe9cb23e4ab9dd1004308661be59c3 inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">Dereferences a reference into an HDF5 object, given an HDF5 object.  <a href="#a43fe9cb23e4ab9dd1004308661be59c3">More...</a><br/></td></tr>
<tr class="separator:a43fe9cb23e4ab9dd1004308661be59c3 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0b4d30e8dde96d99ee7e4e29fadba173 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#a0b4d30e8dde96d99ee7e4e29fadba173">dereference</a> (const <a class="el" href="class_h5_1_1_attribute.html">Attribute</a> &amp;attr, const void *ref, H5R_type_t ref_type=H5R_OBJECT, 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#a0f2f757ca782a743006c5756191c404b">PropList::DEFAULT</a>)</td></tr>
<tr class="memdesc:a0b4d30e8dde96d99ee7e4e29fadba173 inherit pub_methods_class_h5_1_1_h5_location"><td class="mdescLeft">&#160;</td><td class="mdescRight">Dereferences a reference into an HDF5 object, given an attribute.  <a href="#a0b4d30e8dde96d99ee7e4e29fadba173">More...</a><br/></td></tr>
<tr class="separator:a0b4d30e8dde96d99ee7e4e29fadba173 inherit pub_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5d0a971d157cffc3591f6d2d8b43dcca 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#a5d0a971d157cffc3591f6d2d8b43dcca">getRegion</a> (void *ref, H5R_type_t ref_type=H5R_DATASET_REGION) const </td></tr>
<tr class="separator:a5d0a971d157cffc3591f6d2d8b43dcca 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">H5::IdComponent</a></td></tr>
<tr class="memitem:a0e75b2e591d2fccd9e4c291a485d4754 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#a0e75b2e591d2fccd9e4c291a485d4754">incRefCount</a> (const hid_t obj_id) const </td></tr>
<tr class="memdesc:a0e75b2e591d2fccd9e4c291a485d4754 inherit pub_methods_class_h5_1_1_id_component"><td class="mdescLeft">&#160;</td><td class="mdescRight">Increment reference counter for a given id.  <a href="#a0e75b2e591d2fccd9e4c291a485d4754">More...</a><br/></td></tr>
<tr class="separator:a0e75b2e591d2fccd9e4c291a485d4754 inherit pub_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1b34f54d2fd41d885e8ced7613d6abd1 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#a1b34f54d2fd41d885e8ced7613d6abd1">incRefCount</a> () const </td></tr>
<tr class="memdesc:a1b34f54d2fd41d885e8ced7613d6abd1 inherit pub_methods_class_h5_1_1_id_component"><td class="mdescLeft">&#160;</td><td class="mdescRight">Increment reference counter for the id of this object.  <a href="#a1b34f54d2fd41d885e8ced7613d6abd1">More...</a><br/></td></tr>
<tr class="separator:a1b34f54d2fd41d885e8ced7613d6abd1 inherit pub_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9dc2815e9887d0adb5d5bba72adbd0d6 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#a9dc2815e9887d0adb5d5bba72adbd0d6">decRefCount</a> (const hid_t obj_id) const </td></tr>
<tr class="memdesc:a9dc2815e9887d0adb5d5bba72adbd0d6 inherit pub_methods_class_h5_1_1_id_component"><td class="mdescLeft">&#160;</td><td class="mdescRight">Decrement reference counter for a given id.  <a href="#a9dc2815e9887d0adb5d5bba72adbd0d6">More...</a><br/></td></tr>
<tr class="separator:a9dc2815e9887d0adb5d5bba72adbd0d6 inherit pub_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac15a341319624c9199a309fad56858e0 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#ac15a341319624c9199a309fad56858e0">decRefCount</a> () const </td></tr>
<tr class="memdesc:ac15a341319624c9199a309fad56858e0 inherit pub_methods_class_h5_1_1_id_component"><td class="mdescLeft">&#160;</td><td class="mdescRight">Decrement reference counter for the id of this object.  <a href="#ac15a341319624c9199a309fad56858e0">More...</a><br/></td></tr>
<tr class="separator:ac15a341319624c9199a309fad56858e0 inherit pub_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab2ba7509cb5beb8c80e242d7afe10a3c 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#ab2ba7509cb5beb8c80e242d7afe10a3c">getCounter</a> (const hid_t obj_id) const </td></tr>
<tr class="memdesc:ab2ba7509cb5beb8c80e242d7afe10a3c inherit pub_methods_class_h5_1_1_id_component"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the reference counter for a given id.  <a href="#ab2ba7509cb5beb8c80e242d7afe10a3c">More...</a><br/></td></tr>
<tr class="separator:ab2ba7509cb5beb8c80e242d7afe10a3c inherit pub_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adde1c48166476e089635bb40a2113653 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#adde1c48166476e089635bb40a2113653">getCounter</a> () const </td></tr>
<tr class="memdesc:adde1c48166476e089635bb40a2113653 inherit pub_methods_class_h5_1_1_id_component"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the reference counter for the id of this object.  <a href="#adde1c48166476e089635bb40a2113653">More...</a><br/></td></tr>
<tr class="separator:adde1c48166476e089635bb40a2113653 inherit pub_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abef6d67a39f8723aa81bd16392dfc6bf inherit pub_methods_class_h5_1_1_id_component"><td class="memItemLeft" align="right" valign="top">H5I_type_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_id_component.html#abef6d67a39f8723aa81bd16392dfc6bf">getHDFObjType</a> () const </td></tr>
<tr class="memdesc:abef6d67a39f8723aa81bd16392dfc6bf inherit pub_methods_class_h5_1_1_id_component"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the type of the object. It is an overloaded function of the above function.  <a href="#abef6d67a39f8723aa81bd16392dfc6bf">More...</a><br/></td></tr>
<tr class="separator:abef6d67a39f8723aa81bd16392dfc6bf inherit pub_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a34ac09a54825253293a0d8990e120506 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#a34ac09a54825253293a0d8990e120506">operator=</a> (const <a class="el" href="class_h5_1_1_id_component.html">IdComponent</a> &amp;rhs)</td></tr>
<tr class="memdesc:a34ac09a54825253293a0d8990e120506 inherit pub_methods_class_h5_1_1_id_component"><td class="mdescLeft">&#160;</td><td class="mdescRight">Assignment operator.  <a href="#a34ac09a54825253293a0d8990e120506">More...</a><br/></td></tr>
<tr class="separator:a34ac09a54825253293a0d8990e120506 inherit pub_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1e46d85ec29cd77bb1767cd01b8f0c8d 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#a1e46d85ec29cd77bb1767cd01b8f0c8d">setId</a> (const hid_t new_id)</td></tr>
<tr class="memdesc:a1e46d85ec29cd77bb1767cd01b8f0c8d inherit pub_methods_class_h5_1_1_id_component"><td class="mdescLeft">&#160;</td><td class="mdescRight">Sets the identifier of this object to a new value.  <a href="#a1e46d85ec29cd77bb1767cd01b8f0c8d">More...</a><br/></td></tr>
<tr class="separator:a1e46d85ec29cd77bb1767cd01b8f0c8d inherit pub_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a013a42f5fd29d35d9428c1be8638acfe inherit pub_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#a013a42f5fd29d35d9428c1be8638acfe">IdComponent</a> (const hid_t h5_id)</td></tr>
<tr class="memdesc:a013a42f5fd29d35d9428c1be8638acfe inherit pub_methods_class_h5_1_1_id_component"><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates an <a class="el" href="class_h5_1_1_id_component.html" title="Class IdComponent provides wrappers of the C functions that operate on an HDF5 identifier. ">IdComponent</a> object using the id of an existing object.  <a href="#a013a42f5fd29d35d9428c1be8638acfe">More...</a><br/></td></tr>
<tr class="separator:a013a42f5fd29d35d9428c1be8638acfe inherit pub_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1c1e2479afec6ce26734225b434752fb inherit pub_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#a1c1e2479afec6ce26734225b434752fb">IdComponent</a> (const <a class="el" href="class_h5_1_1_id_component.html">IdComponent</a> &amp;original)</td></tr>
<tr class="memdesc:a1c1e2479afec6ce26734225b434752fb inherit pub_methods_class_h5_1_1_id_component"><td class="mdescLeft">&#160;</td><td class="mdescRight">Copy constructor: makes a copy of the original <a class="el" href="class_h5_1_1_id_component.html" title="Class IdComponent provides wrappers of the C functions that operate on an HDF5 identifier. ">IdComponent</a> object.  <a href="#a1c1e2479afec6ce26734225b434752fb">More...</a><br/></td></tr>
<tr class="separator:a1c1e2479afec6ce26734225b434752fb inherit pub_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a780d19c3d86037de38511f3e6cec3ca6 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#a780d19c3d86037de38511f3e6cec3ca6">~IdComponent</a> ()</td></tr>
<tr class="memdesc:a780d19c3d86037de38511f3e6cec3ca6 inherit pub_methods_class_h5_1_1_id_component"><td class="mdescLeft">&#160;</td><td class="mdescRight">Noop destructor.  <a href="#a780d19c3d86037de38511f3e6cec3ca6">More...</a><br/></td></tr>
<tr class="separator:a780d19c3d86037de38511f3e6cec3ca6 inherit pub_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_class_h5_1_1_common_f_g"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_class_h5_1_1_common_f_g')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="class_h5_1_1_common_f_g.html">H5::CommonFG</a></td></tr>
<tr class="memitem:a241dc4c229a307e4c4eacf9e38dfc472 inherit pub_methods_class_h5_1_1_common_f_g"><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_common_f_g.html#a241dc4c229a307e4c4eacf9e38dfc472">createGroup</a> (const char *name, size_t size_hint=0) const </td></tr>
<tr class="memdesc:a241dc4c229a307e4c4eacf9e38dfc472 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates a new group at this location which can be a file or another group.  <a href="#a241dc4c229a307e4c4eacf9e38dfc472">More...</a><br/></td></tr>
<tr class="separator:a241dc4c229a307e4c4eacf9e38dfc472 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aacccdbaf7b41e7fcd60725d62f6b4238 inherit pub_methods_class_h5_1_1_common_f_g"><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_common_f_g.html#aacccdbaf7b41e7fcd60725d62f6b4238">createGroup</a> (const H5std_string &amp;name, size_t size_hint=0) const </td></tr>
<tr class="memdesc:aacccdbaf7b41e7fcd60725d62f6b4238 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes an <code>H5std_string</code> for <em>name</em>.  <a href="#aacccdbaf7b41e7fcd60725d62f6b4238">More...</a><br/></td></tr>
<tr class="separator:aacccdbaf7b41e7fcd60725d62f6b4238 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a24a81b8a3cbcb97f73984d85b63a255e inherit pub_methods_class_h5_1_1_common_f_g"><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_common_f_g.html#a24a81b8a3cbcb97f73984d85b63a255e">openGroup</a> (const char *name) const </td></tr>
<tr class="memdesc:a24a81b8a3cbcb97f73984d85b63a255e inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">Opens an existing group in a location which can be a file or another group.  <a href="#a24a81b8a3cbcb97f73984d85b63a255e">More...</a><br/></td></tr>
<tr class="separator:a24a81b8a3cbcb97f73984d85b63a255e inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aaf29549a7b32bd5d8a8500f20bd1cef3 inherit pub_methods_class_h5_1_1_common_f_g"><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_common_f_g.html#aaf29549a7b32bd5d8a8500f20bd1cef3">openGroup</a> (const H5std_string &amp;name) const </td></tr>
<tr class="memdesc:aaf29549a7b32bd5d8a8500f20bd1cef3 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes an <code>H5std_string</code> for <em>name</em>.  <a href="#aaf29549a7b32bd5d8a8500f20bd1cef3">More...</a><br/></td></tr>
<tr class="separator:aaf29549a7b32bd5d8a8500f20bd1cef3 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a12a4af21ca0231d4f2c4008b12177bb1 inherit pub_methods_class_h5_1_1_common_f_g"><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_common_f_g.html#a12a4af21ca0231d4f2c4008b12177bb1">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#a20cbed4bc7563f3084af99b77e8cacc5">DSetCreatPropList::DEFAULT</a>) const </td></tr>
<tr class="memdesc:a12a4af21ca0231d4f2c4008b12177bb1 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates a new dataset at this location.  <a href="#a12a4af21ca0231d4f2c4008b12177bb1">More...</a><br/></td></tr>
<tr class="separator:a12a4af21ca0231d4f2c4008b12177bb1 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a38cfd34b4e59bea9871c11df9db5958d inherit pub_methods_class_h5_1_1_common_f_g"><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_common_f_g.html#a38cfd34b4e59bea9871c11df9db5958d">createDataSet</a> (const H5std_string &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#a20cbed4bc7563f3084af99b77e8cacc5">DSetCreatPropList::DEFAULT</a>) const </td></tr>
<tr class="memdesc:a38cfd34b4e59bea9871c11df9db5958d inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes an <code>H5std_string</code> for <em>name</em>.  <a href="#a38cfd34b4e59bea9871c11df9db5958d">More...</a><br/></td></tr>
<tr class="separator:a38cfd34b4e59bea9871c11df9db5958d inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6a2557f173c32577db9feeb1b77d4e40 inherit pub_methods_class_h5_1_1_common_f_g"><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_common_f_g.html#a6a2557f173c32577db9feeb1b77d4e40">openDataSet</a> (const char *name) const </td></tr>
<tr class="memdesc:a6a2557f173c32577db9feeb1b77d4e40 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">Opens an existing dataset at this location.  <a href="#a6a2557f173c32577db9feeb1b77d4e40">More...</a><br/></td></tr>
<tr class="separator:a6a2557f173c32577db9feeb1b77d4e40 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a569cbf6e00c00a32d84177d2086991f7 inherit pub_methods_class_h5_1_1_common_f_g"><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_common_f_g.html#a569cbf6e00c00a32d84177d2086991f7">openDataSet</a> (const H5std_string &amp;name) const </td></tr>
<tr class="memdesc:a569cbf6e00c00a32d84177d2086991f7 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes an <code>H5std_string</code> for <em>name</em>.  <a href="#a569cbf6e00c00a32d84177d2086991f7">More...</a><br/></td></tr>
<tr class="separator:a569cbf6e00c00a32d84177d2086991f7 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8cd5bf8001389c46b0ffbc33f328f020 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">H5std_string&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#a8cd5bf8001389c46b0ffbc33f328f020">getLinkval</a> (const char *link_name, size_t size=0) const </td></tr>
<tr class="memdesc:a8cd5bf8001389c46b0ffbc33f328f020 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the name of the object that the symbolic link points to.  <a href="#a8cd5bf8001389c46b0ffbc33f328f020">More...</a><br/></td></tr>
<tr class="separator:a8cd5bf8001389c46b0ffbc33f328f020 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae8105c776db3594e1ec28f4577f7e238 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">H5std_string&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#ae8105c776db3594e1ec28f4577f7e238">getLinkval</a> (const H5std_string &amp;link_name, size_t size=0) const </td></tr>
<tr class="memdesc:ae8105c776db3594e1ec28f4577f7e238 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes an <code>H5std_string</code> for <em>name</em>.  <a href="#ae8105c776db3594e1ec28f4577f7e238">More...</a><br/></td></tr>
<tr class="separator:ae8105c776db3594e1ec28f4577f7e238 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ace728c93ccb415f5f6eafb5d0126813f inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">hsize_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#ace728c93ccb415f5f6eafb5d0126813f">getNumObjs</a> () const </td></tr>
<tr class="memdesc:ace728c93ccb415f5f6eafb5d0126813f inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the number of objects in this group.  <a href="#ace728c93ccb415f5f6eafb5d0126813f">More...</a><br/></td></tr>
<tr class="separator:ace728c93ccb415f5f6eafb5d0126813f inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a95454e7ec44a1dae29b4142604f6e0ad inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">H5std_string&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#a95454e7ec44a1dae29b4142604f6e0ad">getObjnameByIdx</a> (hsize_t idx) const </td></tr>
<tr class="memdesc:a95454e7ec44a1dae29b4142604f6e0ad inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the name of an object in this group, given the object's index.  <a href="#a95454e7ec44a1dae29b4142604f6e0ad">More...</a><br/></td></tr>
<tr class="separator:a95454e7ec44a1dae29b4142604f6e0ad inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af0de25ff80f1ed0c5f6cca4bd1f72e1f inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">ssize_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#af0de25ff80f1ed0c5f6cca4bd1f72e1f">getObjnameByIdx</a> (hsize_t idx, char *name, size_t size) const </td></tr>
<tr class="memdesc:af0de25ff80f1ed0c5f6cca4bd1f72e1f inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">Retrieves the name of an object in this group, given the object's index.  <a href="#af0de25ff80f1ed0c5f6cca4bd1f72e1f">More...</a><br/></td></tr>
<tr class="separator:af0de25ff80f1ed0c5f6cca4bd1f72e1f inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a15c71d717d71be737042b2bce5ba1c10 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">ssize_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#a15c71d717d71be737042b2bce5ba1c10">getObjnameByIdx</a> (hsize_t idx, H5std_string &amp;name, size_t size) const </td></tr>
<tr class="memdesc:a15c71d717d71be737042b2bce5ba1c10 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes an <code>H5std_string</code> for <em>name</em>.  <a href="#a15c71d717d71be737042b2bce5ba1c10">More...</a><br/></td></tr>
<tr class="separator:a15c71d717d71be737042b2bce5ba1c10 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3e30078b1347022b45ee158ffbda02a5 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">H5O_type_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#a3e30078b1347022b45ee158ffbda02a5">childObjType</a> (const H5std_string &amp;objname) const </td></tr>
<tr class="memdesc:a3e30078b1347022b45ee158ffbda02a5 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It takes an <em>H5std_string</em> for the object's name.  <a href="#a3e30078b1347022b45ee158ffbda02a5">More...</a><br/></td></tr>
<tr class="separator:a3e30078b1347022b45ee158ffbda02a5 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a801185001e89a21a6a071b7c2b2a7ea8 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">H5O_type_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#a801185001e89a21a6a071b7c2b2a7ea8">childObjType</a> (const char *objname) const </td></tr>
<tr class="memdesc:a801185001e89a21a6a071b7c2b2a7ea8 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the type of an object in this file/group, given the object's name.  <a href="#a801185001e89a21a6a071b7c2b2a7ea8">More...</a><br/></td></tr>
<tr class="separator:a801185001e89a21a6a071b7c2b2a7ea8 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af1ebe224d9efe14fba900f71b774c7f7 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">H5O_type_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#af1ebe224d9efe14fba900f71b774c7f7">childObjType</a> (hsize_t index, H5_index_t index_type=H5_INDEX_NAME, H5_iter_order_t order=H5_ITER_INC, const char *objname=&quot;.&quot;) const </td></tr>
<tr class="memdesc:af1ebe224d9efe14fba900f71b774c7f7 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the type of an object in this file/group, given the object's index and its type and order.  <a href="#af1ebe224d9efe14fba900f71b774c7f7">More...</a><br/></td></tr>
<tr class="separator:af1ebe224d9efe14fba900f71b774c7f7 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a559cc5236b6bacccffa5d5901b98f7ac inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">H5G_obj_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#a559cc5236b6bacccffa5d5901b98f7ac">getObjTypeByIdx</a> (hsize_t idx) const </td></tr>
<tr class="separator:a559cc5236b6bacccffa5d5901b98f7ac inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aaf942fe78de75453dc3367b36a4e1413 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">H5G_obj_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#aaf942fe78de75453dc3367b36a4e1413">getObjTypeByIdx</a> (hsize_t idx, char *type_name) const </td></tr>
<tr class="separator:aaf942fe78de75453dc3367b36a4e1413 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af861d8a7d48c3242c0e184fe5eeb32c4 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">H5G_obj_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#af861d8a7d48c3242c0e184fe5eeb32c4">getObjTypeByIdx</a> (hsize_t idx, H5std_string &amp;type_name) const </td></tr>
<tr class="separator:af861d8a7d48c3242c0e184fe5eeb32c4 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9832f8d8c05590650b1e8d48992622c1 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#a9832f8d8c05590650b1e8d48992622c1">getObjinfo</a> (const char *name, hbool_t follow_link, H5G_stat_t &amp;statbuf) const </td></tr>
<tr class="memdesc:a9832f8d8c05590650b1e8d48992622c1 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns information about an object.  <a href="#a9832f8d8c05590650b1e8d48992622c1">More...</a><br/></td></tr>
<tr class="separator:a9832f8d8c05590650b1e8d48992622c1 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae1bf23fece252c1d15eeb4f641ff4652 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#ae1bf23fece252c1d15eeb4f641ff4652">getObjinfo</a> (const H5std_string &amp;name, hbool_t follow_link, H5G_stat_t &amp;statbuf) const </td></tr>
<tr class="memdesc:ae1bf23fece252c1d15eeb4f641ff4652 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes an <code>H5std_string</code> for <em>name</em>.  <a href="#ae1bf23fece252c1d15eeb4f641ff4652">More...</a><br/></td></tr>
<tr class="separator:ae1bf23fece252c1d15eeb4f641ff4652 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9398a589006a3c2e81e3641beed38bb8 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#a9398a589006a3c2e81e3641beed38bb8">getObjinfo</a> (const char *name, H5G_stat_t &amp;statbuf) const </td></tr>
<tr class="memdesc:a9398a589006a3c2e81e3641beed38bb8 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above functions in that it doesn't have the paramemter <em>follow_link</em>.  <a href="#a9398a589006a3c2e81e3641beed38bb8">More...</a><br/></td></tr>
<tr class="separator:a9398a589006a3c2e81e3641beed38bb8 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af22f35c2b1cd522da2df5e05536b800f inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#af22f35c2b1cd522da2df5e05536b800f">getObjinfo</a> (const H5std_string &amp;name, H5G_stat_t &amp;statbuf) const </td></tr>
<tr class="memdesc:af22f35c2b1cd522da2df5e05536b800f inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes an <code>H5std_string</code> for <em>name</em>.  <a href="#af22f35c2b1cd522da2df5e05536b800f">More...</a><br/></td></tr>
<tr class="separator:af22f35c2b1cd522da2df5e05536b800f inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4f27d2a35a97eeddd8d4cfbff65d3bd2 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#a4f27d2a35a97eeddd8d4cfbff65d3bd2">iterateElems</a> (const char *name, int *idx, H5G_iterate_t op, void *op_data)</td></tr>
<tr class="memdesc:a4f27d2a35a97eeddd8d4cfbff65d3bd2 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">Iterates a user's function over the entries of a group.  <a href="#a4f27d2a35a97eeddd8d4cfbff65d3bd2">More...</a><br/></td></tr>
<tr class="separator:a4f27d2a35a97eeddd8d4cfbff65d3bd2 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9e29b8b982398d1339c0b80e36f1e52d inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#a9e29b8b982398d1339c0b80e36f1e52d">iterateElems</a> (const H5std_string &amp;name, int *idx, H5G_iterate_t op, void *op_data)</td></tr>
<tr class="memdesc:a9e29b8b982398d1339c0b80e36f1e52d inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes an <code>H5std_string</code> for <em>name</em>.  <a href="#a9e29b8b982398d1339c0b80e36f1e52d">More...</a><br/></td></tr>
<tr class="separator:a9e29b8b982398d1339c0b80e36f1e52d inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5cdfe34b7504b51aa6ee2db7aa821b97 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#a5cdfe34b7504b51aa6ee2db7aa821b97">link</a> (H5L_type_t link_type, const char *curr_name, const char *new_name) const </td></tr>
<tr class="memdesc:a5cdfe34b7504b51aa6ee2db7aa821b97 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates a link of the specified type from <em>new_name</em> to <em>curr_name</em>.  <a href="#a5cdfe34b7504b51aa6ee2db7aa821b97">More...</a><br/></td></tr>
<tr class="separator:a5cdfe34b7504b51aa6ee2db7aa821b97 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0ab66c8c08cc538e0a49ad615d81ca81 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#a0ab66c8c08cc538e0a49ad615d81ca81">link</a> (H5L_type_t link_type, const H5std_string &amp;curr_name, const H5std_string &amp;new_name) const </td></tr>
<tr class="memdesc:a0ab66c8c08cc538e0a49ad615d81ca81 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes an <code>H5std_string</code> for <em>curr_name</em> and <em>new_name</em>.  <a href="#a0ab66c8c08cc538e0a49ad615d81ca81">More...</a><br/></td></tr>
<tr class="separator:a0ab66c8c08cc538e0a49ad615d81ca81 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7daac4c48230056d7b43ead4f3391da4 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#a7daac4c48230056d7b43ead4f3391da4">unlink</a> (const char *name) const </td></tr>
<tr class="memdesc:a7daac4c48230056d7b43ead4f3391da4 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">Removes the specified name at this location.  <a href="#a7daac4c48230056d7b43ead4f3391da4">More...</a><br/></td></tr>
<tr class="separator:a7daac4c48230056d7b43ead4f3391da4 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a898640132674447cad292cb338048ddc inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#a898640132674447cad292cb338048ddc">unlink</a> (const H5std_string &amp;name) const </td></tr>
<tr class="memdesc:a898640132674447cad292cb338048ddc inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes an <code>H5std_string</code> for <em>name</em>.  <a href="#a898640132674447cad292cb338048ddc">More...</a><br/></td></tr>
<tr class="separator:a898640132674447cad292cb338048ddc inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a84540130b078ff2eb78cef0e249f4a99 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#a84540130b078ff2eb78cef0e249f4a99">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="memdesc:a84540130b078ff2eb78cef0e249f4a99 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">Mounts the file <em>child</em> onto this group.  <a href="#a84540130b078ff2eb78cef0e249f4a99">More...</a><br/></td></tr>
<tr class="separator:a84540130b078ff2eb78cef0e249f4a99 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aeff360f86d31d44b74d7fb78e7cb9298 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#aeff360f86d31d44b74d7fb78e7cb9298">mount</a> (const char *name, <a class="el" href="class_h5_1_1_h5_file.html">H5File</a> &amp;child, <a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;plist) const </td></tr>
<tr class="memdesc:aeff360f86d31d44b74d7fb78e7cb9298 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, kept for backward compatibility. It differs from the above function in that it misses const's. This wrapper will be removed in future release.  <a href="#aeff360f86d31d44b74d7fb78e7cb9298">More...</a><br/></td></tr>
<tr class="separator:aeff360f86d31d44b74d7fb78e7cb9298 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a02d284cb105156e74ee7df732a903a3e inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#a02d284cb105156e74ee7df732a903a3e">mount</a> (const H5std_string &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="memdesc:a02d284cb105156e74ee7df732a903a3e inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It takes an <code>H5std_string</code> for <em>name</em>.  <a href="#a02d284cb105156e74ee7df732a903a3e">More...</a><br/></td></tr>
<tr class="separator:a02d284cb105156e74ee7df732a903a3e inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3a54df6428f1489179ca8eb869a8d81f inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#a3a54df6428f1489179ca8eb869a8d81f">mount</a> (const H5std_string &amp;name, <a class="el" href="class_h5_1_1_h5_file.html">H5File</a> &amp;child, <a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;plist) const </td></tr>
<tr class="memdesc:a3a54df6428f1489179ca8eb869a8d81f inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, kept for backward compatibility. It differs from the above function in that it misses const's. This wrapper will be removed in future release.  <a href="#a3a54df6428f1489179ca8eb869a8d81f">More...</a><br/></td></tr>
<tr class="separator:a3a54df6428f1489179ca8eb869a8d81f inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab0faceecd3d2bec25ad7b848ebe1902e inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#ab0faceecd3d2bec25ad7b848ebe1902e">unmount</a> (const char *name) const </td></tr>
<tr class="memdesc:ab0faceecd3d2bec25ad7b848ebe1902e inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">Unmounts the specified file.  <a href="#ab0faceecd3d2bec25ad7b848ebe1902e">More...</a><br/></td></tr>
<tr class="separator:ab0faceecd3d2bec25ad7b848ebe1902e inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab88b38785538c5e7714dce35d8627d38 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#ab88b38785538c5e7714dce35d8627d38">unmount</a> (const H5std_string &amp;name) const </td></tr>
<tr class="memdesc:ab88b38785538c5e7714dce35d8627d38 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes an <code>H5std_string</code> for <em>name</em>.  <a href="#ab88b38785538c5e7714dce35d8627d38">More...</a><br/></td></tr>
<tr class="separator:ab88b38785538c5e7714dce35d8627d38 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6056d96899c03a726c3c582ee1d47982 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#a6056d96899c03a726c3c582ee1d47982">move</a> (const char *src, const char *dst) const </td></tr>
<tr class="memdesc:a6056d96899c03a726c3c582ee1d47982 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">Renames an object at this location.  <a href="#a6056d96899c03a726c3c582ee1d47982">More...</a><br/></td></tr>
<tr class="separator:a6056d96899c03a726c3c582ee1d47982 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae7770efcdda57aab69cd292e84748dd9 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#ae7770efcdda57aab69cd292e84748dd9">move</a> (const H5std_string &amp;src, const H5std_string &amp;dst) const </td></tr>
<tr class="memdesc:ae7770efcdda57aab69cd292e84748dd9 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes an <code>H5std_string</code> for <em>src</em> and <em>dst</em>.  <a href="#ae7770efcdda57aab69cd292e84748dd9">More...</a><br/></td></tr>
<tr class="separator:ae7770efcdda57aab69cd292e84748dd9 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a29e09d8bf336e176d2749deb6f95ca08 inherit pub_methods_class_h5_1_1_common_f_g"><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_common_f_g.html#a29e09d8bf336e176d2749deb6f95ca08">openDataType</a> (const char *name) const </td></tr>
<tr class="memdesc:a29e09d8bf336e176d2749deb6f95ca08 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">Opens the named generic datatype at this location.  <a href="#a29e09d8bf336e176d2749deb6f95ca08">More...</a><br/></td></tr>
<tr class="separator:a29e09d8bf336e176d2749deb6f95ca08 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5538114a51f0f11a8b754d10212a2ea5 inherit pub_methods_class_h5_1_1_common_f_g"><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_common_f_g.html#a5538114a51f0f11a8b754d10212a2ea5">openDataType</a> (const H5std_string &amp;name) const </td></tr>
<tr class="memdesc:a5538114a51f0f11a8b754d10212a2ea5 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes an <code>H5std_string</code> for <em>name</em>.  <a href="#a5538114a51f0f11a8b754d10212a2ea5">More...</a><br/></td></tr>
<tr class="separator:a5538114a51f0f11a8b754d10212a2ea5 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8106396cc05c3e286b012bba02072164 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_array_type.html">ArrayType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#a8106396cc05c3e286b012bba02072164">openArrayType</a> (const char *name) const </td></tr>
<tr class="memdesc:a8106396cc05c3e286b012bba02072164 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">Opens the named array datatype at this location.  <a href="#a8106396cc05c3e286b012bba02072164">More...</a><br/></td></tr>
<tr class="separator:a8106396cc05c3e286b012bba02072164 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab358573d410bad0c6fe08f6ad628e93e inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_array_type.html">ArrayType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#ab358573d410bad0c6fe08f6ad628e93e">openArrayType</a> (const H5std_string &amp;name) const </td></tr>
<tr class="memdesc:ab358573d410bad0c6fe08f6ad628e93e inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes an <code>H5std_string</code> for <em>name</em>.  <a href="#ab358573d410bad0c6fe08f6ad628e93e">More...</a><br/></td></tr>
<tr class="separator:ab358573d410bad0c6fe08f6ad628e93e inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a87edeebe376d6c73f0475413d595bbd7 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_comp_type.html">CompType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#a87edeebe376d6c73f0475413d595bbd7">openCompType</a> (const char *name) const </td></tr>
<tr class="memdesc:a87edeebe376d6c73f0475413d595bbd7 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">Opens the named compound datatype at this location.  <a href="#a87edeebe376d6c73f0475413d595bbd7">More...</a><br/></td></tr>
<tr class="separator:a87edeebe376d6c73f0475413d595bbd7 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a70e6e929a0862dc29a4604dda7e23d16 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_comp_type.html">CompType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#a70e6e929a0862dc29a4604dda7e23d16">openCompType</a> (const H5std_string &amp;name) const </td></tr>
<tr class="memdesc:a70e6e929a0862dc29a4604dda7e23d16 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes an <code>H5std_string</code> for <em>name</em>.  <a href="#a70e6e929a0862dc29a4604dda7e23d16">More...</a><br/></td></tr>
<tr class="separator:a70e6e929a0862dc29a4604dda7e23d16 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae78ee330d5e51380630376e9df9f04fb inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_enum_type.html">EnumType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#ae78ee330d5e51380630376e9df9f04fb">openEnumType</a> (const char *name) const </td></tr>
<tr class="memdesc:ae78ee330d5e51380630376e9df9f04fb inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">Opens the named enumeration datatype at this location.  <a href="#ae78ee330d5e51380630376e9df9f04fb">More...</a><br/></td></tr>
<tr class="separator:ae78ee330d5e51380630376e9df9f04fb inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afb1a4b93d3423b0fafdaae5610d2db25 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_enum_type.html">EnumType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#afb1a4b93d3423b0fafdaae5610d2db25">openEnumType</a> (const H5std_string &amp;name) const </td></tr>
<tr class="memdesc:afb1a4b93d3423b0fafdaae5610d2db25 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes an <code>H5std_string</code> for <em>name</em>.  <a href="#afb1a4b93d3423b0fafdaae5610d2db25">More...</a><br/></td></tr>
<tr class="separator:afb1a4b93d3423b0fafdaae5610d2db25 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aabc761d20b0b211aeee77cb22c9e7a41 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_int_type.html">IntType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#aabc761d20b0b211aeee77cb22c9e7a41">openIntType</a> (const char *name) const </td></tr>
<tr class="memdesc:aabc761d20b0b211aeee77cb22c9e7a41 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">Opens the named integer datatype at this location.  <a href="#aabc761d20b0b211aeee77cb22c9e7a41">More...</a><br/></td></tr>
<tr class="separator:aabc761d20b0b211aeee77cb22c9e7a41 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9a7dfbba30253fbfa16b7c7f00515820 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_int_type.html">IntType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#a9a7dfbba30253fbfa16b7c7f00515820">openIntType</a> (const H5std_string &amp;name) const </td></tr>
<tr class="memdesc:a9a7dfbba30253fbfa16b7c7f00515820 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes an <code>H5std_string</code> for <em>name</em>.  <a href="#a9a7dfbba30253fbfa16b7c7f00515820">More...</a><br/></td></tr>
<tr class="separator:a9a7dfbba30253fbfa16b7c7f00515820 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a98598f40b89062ec982a43bdae822939 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_float_type.html">FloatType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#a98598f40b89062ec982a43bdae822939">openFloatType</a> (const char *name) const </td></tr>
<tr class="memdesc:a98598f40b89062ec982a43bdae822939 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">Opens the named floating-point datatype at this location.  <a href="#a98598f40b89062ec982a43bdae822939">More...</a><br/></td></tr>
<tr class="separator:a98598f40b89062ec982a43bdae822939 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a25712ed24f42abebdf46f19342f667a0 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_float_type.html">FloatType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#a25712ed24f42abebdf46f19342f667a0">openFloatType</a> (const H5std_string &amp;name) const </td></tr>
<tr class="memdesc:a25712ed24f42abebdf46f19342f667a0 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes an <code>H5std_string</code> for <em>name</em>.  <a href="#a25712ed24f42abebdf46f19342f667a0">More...</a><br/></td></tr>
<tr class="separator:a25712ed24f42abebdf46f19342f667a0 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa2e11b676436160a9af8967bfd870642 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_str_type.html">StrType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#aa2e11b676436160a9af8967bfd870642">openStrType</a> (const char *name) const </td></tr>
<tr class="memdesc:aa2e11b676436160a9af8967bfd870642 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">Opens the named string datatype at this location.  <a href="#aa2e11b676436160a9af8967bfd870642">More...</a><br/></td></tr>
<tr class="separator:aa2e11b676436160a9af8967bfd870642 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7af20454be80f642fb498bcadc5f6dd8 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_str_type.html">StrType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#a7af20454be80f642fb498bcadc5f6dd8">openStrType</a> (const H5std_string &amp;name) const </td></tr>
<tr class="memdesc:a7af20454be80f642fb498bcadc5f6dd8 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes an <code>H5std_string</code> for <em>name</em>.  <a href="#a7af20454be80f642fb498bcadc5f6dd8">More...</a><br/></td></tr>
<tr class="separator:a7af20454be80f642fb498bcadc5f6dd8 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac7d42ee88c926c543edf247126f89cb3 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_var_len_type.html">VarLenType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#ac7d42ee88c926c543edf247126f89cb3">openVarLenType</a> (const char *name) const </td></tr>
<tr class="memdesc:ac7d42ee88c926c543edf247126f89cb3 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">Opens the named variable length datatype at this location.  <a href="#ac7d42ee88c926c543edf247126f89cb3">More...</a><br/></td></tr>
<tr class="separator:ac7d42ee88c926c543edf247126f89cb3 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6699229837d90eea8ec2a937cc2be5e1 inherit pub_methods_class_h5_1_1_common_f_g"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_var_len_type.html">VarLenType</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_common_f_g.html#a6699229837d90eea8ec2a937cc2be5e1">openVarLenType</a> (const H5std_string &amp;name) const </td></tr>
<tr class="memdesc:a6699229837d90eea8ec2a937cc2be5e1 inherit pub_methods_class_h5_1_1_common_f_g"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It differs from the above function in that it takes an <code>H5std_string</code> for <em>name</em>.  <a href="#a6699229837d90eea8ec2a937cc2be5e1">More...</a><br/></td></tr>
<tr class="separator:a6699229837d90eea8ec2a937cc2be5e1 inherit pub_methods_class_h5_1_1_common_f_g"><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:a03798df740d2a1e45f608164b13864d1"><td class="memItemLeft" align="right" valign="top">static bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_file.html#a03798df740d2a1e45f608164b13864d1">isHdf5</a> (const char *name)</td></tr>
<tr class="memdesc:a03798df740d2a1e45f608164b13864d1"><td class="mdescLeft">&#160;</td><td class="mdescRight">Determines whether a file in HDF5 format. (Static)  <a href="#a03798df740d2a1e45f608164b13864d1">More...</a><br/></td></tr>
<tr class="separator:a03798df740d2a1e45f608164b13864d1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5147f9124fd66da6537999734e85c6fc"><td class="memItemLeft" align="right" valign="top">static bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_h5_file.html#a5147f9124fd66da6537999734e85c6fc">isHdf5</a> (const H5std_string &amp;name)</td></tr>
<tr class="memdesc:a5147f9124fd66da6537999734e85c6fc"><td class="mdescLeft">&#160;</td><td class="mdescRight">This is an overloaded member function, provided for convenience. It takes an <code>H5std_string</code> for <em>name</em>. (Static)  <a href="#a5147f9124fd66da6537999734e85c6fc">More...</a><br/></td></tr>
<tr class="separator:a5147f9124fd66da6537999734e85c6fc"><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">H5::IdComponent</a></td></tr>
<tr class="memitem:a25e4d590aa5cc0fc87ced46718d5b0d7 inherit pub_static_methods_class_h5_1_1_id_component"><td class="memItemLeft" align="right" valign="top">static H5I_type_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_id_component.html#a25e4d590aa5cc0fc87ced46718d5b0d7">getHDFObjType</a> (const hid_t obj_id)</td></tr>
<tr class="memdesc:a25e4d590aa5cc0fc87ced46718d5b0d7 inherit pub_static_methods_class_h5_1_1_id_component"><td class="mdescLeft">&#160;</td><td class="mdescRight">Given an id, returns the type of the object.  <a href="#a25e4d590aa5cc0fc87ced46718d5b0d7">More...</a><br/></td></tr>
<tr class="separator:a25e4d590aa5cc0fc87ced46718d5b0d7 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="inherited"></a>
Additional Inherited Members</h2></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">H5::H5Location</a></td></tr>
<tr class="memitem:a0bc502f028c505dc8984bfb7740622f0 inherit pro_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#a0bc502f028c505dc8984bfb7740622f0">H5Location</a> ()</td></tr>
<tr class="separator:a0bc502f028c505dc8984bfb7740622f0 inherit pro_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0ca5c720d5b48dfeb15a2aac9fe0949c inherit pro_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#a0ca5c720d5b48dfeb15a2aac9fe0949c">H5Location</a> (const hid_t loc_id)</td></tr>
<tr class="separator:a0ca5c720d5b48dfeb15a2aac9fe0949c inherit pro_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a220e9b5ce6e2f1a0a9417c43044a4435 inherit pro_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#a220e9b5ce6e2f1a0a9417c43044a4435">H5Location</a> (const <a class="el" href="class_h5_1_1_h5_location.html">H5Location</a> &amp;original)</td></tr>
<tr class="separator:a220e9b5ce6e2f1a0a9417c43044a4435 inherit pro_methods_class_h5_1_1_h5_location"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adf9db8a64ce2d32f05994659be05d4a3 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#adf9db8a64ce2d32f05994659be05d4a3">~H5Location</a> ()</td></tr>
<tr class="separator:adf9db8a64ce2d32f05994659be05d4a3 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">H5::IdComponent</a></td></tr>
<tr class="memitem:a5545dda5e4c610b6bd9cdffe670c8728 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#a5545dda5e4c610b6bd9cdffe670c8728">IdComponent</a> ()</td></tr>
<tr class="separator:a5545dda5e4c610b6bd9cdffe670c8728 inherit pro_methods_class_h5_1_1_id_component"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>It inherits from <a class="el" href="class_h5_1_1_h5_location.html" title="H5Location is an abstract base class, added in version 1.8.12. ">H5Location</a> and <a class="el" href="class_h5_1_1_common_f_g.html" title="CommonFG is an abstract base class of H5File and H5Group. ">CommonFG</a>. </p>
<dl><dt><b>Examples: </b></dt><dd><a class="el" href="chunks_8cpp-example.html#_a1">chunks.cpp</a>, <a class="el" href="compound_8cpp-example.html#_a2">compound.cpp</a>, <a class="el" href="create_8cpp-example.html#_a1">create.cpp</a>, <a class="el" href="extend_ds_8cpp-example.html#_a2">extend_ds.cpp</a>, <a class="el" href="h5group_8cpp-example.html#_a1">h5group.cpp</a>, <a class="el" href="readdata_8cpp-example.html#_a1">readdata.cpp</a>, and <a class="el" href="writedata_8cpp-example.html#_a1">writedata.cpp</a>.</dd>
</dl></div><h2 class="groupheader">Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="af25054898de738072217e274217a278c"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5::H5File::H5File </td>
          <td>(</td>
          <td class="paramtype">const char *&#160;</td>
          <td class="paramname"><em>name</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">unsigned int&#160;</td>
          <td class="paramname"><em>flags</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="class_h5_1_1_file_creat_prop_list.html">FileCreatPropList</a> &amp;&#160;</td>
          <td class="paramname"><em>create_plist</em> = <code><a class="el" href="class_h5_1_1_file_creat_prop_list.html#a82f8cb6df67bd26c655cb3f9c3b30dbc">FileCreatPropList::DEFAULT</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="class_h5_1_1_file_acc_prop_list.html">FileAccPropList</a> &amp;&#160;</td>
          <td class="paramname"><em>access_plist</em> = <code><a class="el" href="class_h5_1_1_file_acc_prop_list.html#a21e14f8342d3730ce1cffb61c04310af">FileAccPropList::DEFAULT</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">name</td><td>- IN: Name of the file </td></tr>
    <tr><td class="paramname">flags</td><td>- IN: File access flags </td></tr>
    <tr><td class="paramname">create_plist</td><td>- IN: File creation property list, used when modifying default file meta-data. Default to <a class="el" href="class_h5_1_1_file_creat_prop_list.html#a82f8cb6df67bd26c655cb3f9c3b30dbc" title="Constant for default property. ">FileCreatPropList::DEFAULT</a> </td></tr>
    <tr><td class="paramname">access_plist</td><td>- IN: File access property list. Default to <a class="el" href="class_h5_1_1_file_acc_prop_list.html#a21e14f8342d3730ce1cffb61c04310af" title="Constant for default property. ">FileAccPropList::DEFAULT</a> </td></tr>
  </table>
  </dd>
</dl>
<dl class="section user"><dt>Description</dt><dd>Valid values of <em>flags</em> include: <ul>
<li><code>H5F_ACC_TRUNC</code> - Truncate file, if it already exists, erasing all data previously stored in the file. </li>
<li><code>H5F_ACC_EXCL</code> - Fail if file already exists. <code>H5F_ACC_TRUNC</code> and <code>H5F_ACC_EXCL</code> are mutually exclusive </li>
<li><code>H5F_ACC_DEBUG</code> - print debug information. This flag is used only by HDF5 library developers; it is neither tested nor supported for use in applications. </li>
</ul>
</dd></dl>
<dl class="section user"><dt></dt><dd>For info on file creation in the case of an already-open file, please refer to the <b>Special</b> <b>case</b> section in the C layer Reference Manual at: <a href="http://www.hdfgroup.org/HDF5/doc/RM/RM_H5F.html#File-Create">http://www.hdfgroup.org/HDF5/doc/RM/RM_H5F.html#File-Create</a> </dd></dl>

</div>
</div>
<a class="anchor" id="a74bb8e05dde9450227bc27841277375f"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5::H5File::H5File </td>
          <td>(</td>
          <td class="paramtype">const H5std_string &amp;&#160;</td>
          <td class="paramname"><em>name</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">unsigned int&#160;</td>
          <td class="paramname"><em>flags</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="class_h5_1_1_file_creat_prop_list.html">FileCreatPropList</a> &amp;&#160;</td>
          <td class="paramname"><em>create_plist</em> = <code><a class="el" href="class_h5_1_1_file_creat_prop_list.html#a82f8cb6df67bd26c655cb3f9c3b30dbc">FileCreatPropList::DEFAULT</a></code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="class_h5_1_1_file_acc_prop_list.html">FileAccPropList</a> &amp;&#160;</td>
          <td class="paramname"><em>access_plist</em> = <code><a class="el" href="class_h5_1_1_file_acc_prop_list.html#a21e14f8342d3730ce1cffb61c04310af">FileAccPropList::DEFAULT</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">name</td><td>- IN: Name of the file - <code>H5std_string</code> </td></tr>
    <tr><td class="paramname">flags</td><td>- IN: File access flags </td></tr>
    <tr><td class="paramname">create_plist</td><td>- IN: File creation property list, used when modifying default file meta-data. Default to <a class="el" href="class_h5_1_1_file_creat_prop_list.html#a82f8cb6df67bd26c655cb3f9c3b30dbc" title="Constant for default property. ">FileCreatPropList::DEFAULT</a> </td></tr>
    <tr><td class="paramname">access_plist</td><td>- IN: File access property list. Default to <a class="el" href="class_h5_1_1_file_acc_prop_list.html#a21e14f8342d3730ce1cffb61c04310af" title="Constant for default property. ">FileAccPropList::DEFAULT</a> </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a36dd29998f6e70b7cb9735a44686baad"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5::H5File::H5File </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="a912472f9bdf2bf90590a9e8ecaed3b99"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5::H5File::H5File </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="class_h5_1_1_h5_file.html">H5File</a> &amp;&#160;</td>
          <td class="paramname"><em>original</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">original</td><td>- IN: <a class="el" href="class_h5_1_1_h5_file.html" title="Class H5File represents an HDF5 file. ">H5File</a> instance to copy </td></tr>
  </table>
  </dd>
</dl>

<p>References <a class="el" href="class_h5_1_1_h5_file.html#a678d947a4efe731e497d33d1c23922ff">getId()</a>, and <a class="el" href="class_h5_1_1_id_component.html#a1b34f54d2fd41d885e8ced7613d6abd1">H5::IdComponent::incRefCount()</a>.</p>

</div>
</div>
<a class="anchor" id="af59e44dc590c9d47305d6a316837585d"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">H5::H5File::~H5File </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>References <a class="el" href="class_h5_1_1_h5_file.html#a4f1cd3bce2a84c7ea43bb9e679b6babe">close()</a>, and <a class="el" href="class_h5_1_1_exception.html#aedc9690b2b1a12e0fab36962d4479508">H5::Exception::getDetailMsg()</a>.</p>

</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="a4f1cd3bce2a84c7ea43bb9e679b6babe"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">void H5::H5File::close </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="class_h5_1_1_file_i_exception.html">H5::FileIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>

<p>Referenced by <a class="el" href="class_h5_1_1_h5_file.html#af3f5bdd07e7b26a6090ff8361df80498">reOpen()</a>, and <a class="el" href="class_h5_1_1_h5_file.html#af59e44dc590c9d47305d6a316837585d">~H5File()</a>.</p>

</div>
</div>
<a class="anchor" id="a972ecba8c346ad46a35c0cdb0b8ed78f"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual H5std_string H5::H5File::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">inline</span><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="aed49af447bf5704fa4c186dbdfd2d11f"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="class_h5_1_1_file_acc_prop_list.html">FileAccPropList</a> H5::H5File::getAccessPlist </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="section return"><dt>Returns</dt><dd><a class="el" href="class_h5_1_1_file_acc_prop_list.html" title="Class FileAccPropList represents the HDF5 file access property list. ">FileAccPropList</a> object </dd></dl>
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="class_h5_1_1_file_i_exception.html">H5::FileIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ad939a66d4863b9fc439672acba8d3b15"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="class_h5_1_1_file_creat_prop_list.html">FileCreatPropList</a> H5::H5File::getCreatePlist </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="section return"><dt>Returns</dt><dd><a class="el" href="class_h5_1_1_file_creat_prop_list.html" title="Class FileCreatPropList represents the HDF5 file create property list. ">FileCreatPropList</a> object </dd></dl>
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="class_h5_1_1_file_i_exception.html">H5::FileIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ab1ebf23c585ab8144aeefbcc3e8afeb9"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">hsize_t H5::H5File::getFileSize </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="section return"><dt>Returns</dt><dd>File size </dd></dl>
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="class_h5_1_1_file_i_exception.html">H5::FileIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>
<dl class="section user"><dt>Description</dt><dd>This function is called after an existing file is opened in order to learn the true size of the underlying file. </dd></dl>

</div>
</div>
<a class="anchor" id="afb92b6c1e1ab32993dad71d07efb1f9d"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">hssize_t H5::H5File::getFreeSpace </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="section return"><dt>Returns</dt><dd>Amount of free space </dd></dl>
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="class_h5_1_1_file_i_exception.html">H5::FileIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a678d947a4efe731e497d33d1c23922ff"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">hid_t H5::H5File::getId </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">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">
<dl class="section return"><dt>Returns</dt><dd>File identifier </dd></dl>

<p>Implements <a class="el" href="class_h5_1_1_h5_location.html#adf9673f56413b1698e12a9a5bace28cd">H5::H5Location</a>.</p>
<dl><dt><b>Examples: </b></dt><dd><a class="el" href="h5group_8cpp-example.html#a17">h5group.cpp</a>.</dd>
</dl>
<p>Referenced by <a class="el" href="class_h5_1_1_h5_file.html#a912472f9bdf2bf90590a9e8ecaed3b99">H5File()</a>, and <a class="el" href="class_h5_1_1_common_f_g.html#a84540130b078ff2eb78cef0e249f4a99">H5::CommonFG::mount()</a>.</p>

</div>
</div>
<a class="anchor" id="ad8a0582836ae35b9b24c6efe0595100d"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">ssize_t H5::H5File::getObjCount </td>
          <td>(</td>
          <td class="paramtype">unsigned&#160;</td>
          <td class="paramname"><em>types</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">types</td><td>- Type of object to retrieve the count </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Number of opened object IDs </dd></dl>
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="class_h5_1_1_file_i_exception.html">H5::FileIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>
<dl class="section user"><dt>Description</dt><dd>The valid values for <em>types</em> include: <ul>
<li><code>H5F_OBJ_FILE</code> - Files only </li>
<li><code>H5F_OBJ_DATASET</code> - Datasets only </li>
<li><code>H5F_OBJ_GROUP</code> - Groups only </li>
<li><code>H5F_OBJ_DATATYPE</code> - Named datatypes only </li>
<li><code>H5F_OBJ_ATTR</code> - Attributes only </li>
<li><code>H5F_OBJ_ALL</code> - All of the above, i.e., <code>H5F_OBJ_FILE</code> | <code>H5F_OBJ_DATASET</code> | <code>H5F_OBJ_GROUP</code> | <code>H5F_OBJ_DATATYPE</code> | <code>H5F_OBJ_ATTR</code> </li>
</ul>
</dd></dl>
<dl class="section user"><dt></dt><dd>Multiple object types can be combined with the logical OR operator (|). </dd></dl>

</div>
</div>
<a class="anchor" id="a47fe0895c12b0a82362fcdc7825339ba"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">ssize_t H5::H5File::getObjCount </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="section return"><dt>Returns</dt><dd>Number of opened object IDs </dd></dl>
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="class_h5_1_1_file_i_exception.html">H5::FileIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a6bf4658fbb77703741ef4e9129ac602c"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void H5::H5File::getObjIDs </td>
          <td>(</td>
          <td class="paramtype">unsigned&#160;</td>
          <td class="paramname"><em>types</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">size_t&#160;</td>
          <td class="paramname"><em>max_objs</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">hid_t *&#160;</td>
          <td class="paramname"><em>oid_list</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">types</td><td>- Type of object to retrieve the count </td></tr>
    <tr><td class="paramname">max_objs</td><td>- Maximum number of object identifiers to place into obj_id_list. </td></tr>
    <tr><td class="paramname">oid_list</td><td>- List of open object identifiers </td></tr>
  </table>
  </dd>
</dl>
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="class_h5_1_1_file_i_exception.html">H5::FileIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>
<dl class="section user"><dt>Description</dt><dd>The valid values for <em>types</em> include: <ul>
<li><code>H5F_OBJ_FILE</code> - Files only </li>
<li><code>H5F_OBJ_DATASET</code> - Datasets only </li>
<li><code>H5F_OBJ_GROUP</code> - Groups only </li>
<li><code>H5F_OBJ_DATATYPE</code> - Named datatypes only </li>
<li><code>H5F_OBJ_ATTR</code> - Attributes only </li>
<li><code>H5F_OBJ_ALL</code> - All of the above, i.e., <code>H5F_OBJ_FILE</code> | <code>H5F_OBJ_DATASET</code> | <code>H5F_OBJ_GROUP</code> | <code>H5F_OBJ_DATATYPE</code> | <code>H5F_OBJ_ATTR</code> </li>
</ul>
</dd></dl>
<dl class="section user"><dt></dt><dd>Multiple object types can be combined with the logical OR operator (|). </dd></dl>

</div>
</div>
<a class="anchor" id="abf72aaec783cf027e1528acf2ac7b9d7"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void H5::H5File::getVFDHandle </td>
          <td>(</td>
          <td class="paramtype">void **&#160;</td>
          <td class="paramname"><em>file_handle</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">file_handle</td><td>- Pointer to the file handle being used by the low-level virtual file driver </td></tr>
  </table>
  </dd>
</dl>
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="class_h5_1_1_file_i_exception.html">H5::FileIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>

<p>Referenced by <a class="el" href="class_h5_1_1_h5_file.html#afafd315440c16e447aac4e7cfef04941">getVFDHandle()</a>.</p>

</div>
</div>
<a class="anchor" id="afab750a1b471366af92ee04730685fbd"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void H5::H5File::getVFDHandle </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="class_h5_1_1_file_acc_prop_list.html">FileAccPropList</a> &amp;&#160;</td>
          <td class="paramname"><em>fapl</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">void **&#160;</td>
          <td class="paramname"><em>file_handle</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">fapl</td><td>- File access property list </td></tr>
    <tr><td class="paramname">file_handle</td><td>- Pointer to the file handle being used by the low-level virtual file driver </td></tr>
  </table>
  </dd>
</dl>
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="class_h5_1_1_file_i_exception.html">H5::FileIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>
<dl class="section user"><dt>Description</dt><dd>For the <code>FAMILY</code> or <code>MULTI</code> drivers, <em>fapl</em> should be defined through the property list functions: <code><a class="el" href="class_h5_1_1_file_acc_prop_list.html#a2028c6d5359ae1799236f04215bc61b4" title="Sets offset for family driver. ">FileAccPropList::setFamilyOffset</a></code> for the <code>FAMILY</code> driver and <code><a class="el" href="class_h5_1_1_file_acc_prop_list.html#a99c3046cf1705da768ce76cf38fadb98" title="Sets data type for MULTI driver. ">FileAccPropList::setMultiType</a></code> for the <code>MULTI</code> driver.</dd></dl>
<p>The obtained file handle is dynamic and is valid only while the file remains open; it will be invalid if the file is closed and reopened or opened during a subsequent session. </p>

<p>References <a class="el" href="class_h5_1_1_prop_list.html#a72b0944d2235eb3ec85933070d92433b">H5::PropList::getId()</a>.</p>

</div>
</div>
<a class="anchor" id="afafd315440c16e447aac4e7cfef04941"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void H5::H5File::getVFDHandle </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="class_h5_1_1_file_acc_prop_list.html">FileAccPropList</a> &amp;&#160;</td>
          <td class="paramname"><em>fapl</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">void **&#160;</td>
          <td class="paramname"><em>file_handle</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">fapl</td><td>- File access property list </td></tr>
    <tr><td class="paramname">file_handle</td><td>- Pointer to the file handle being used by the low-level virtual file driver </td></tr>
  </table>
  </dd>
</dl>
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="class_h5_1_1_file_i_exception.html">H5::FileIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>

<p>References <a class="el" href="class_h5_1_1_h5_file.html#abf72aaec783cf027e1528acf2ac7b9d7">getVFDHandle()</a>.</p>

</div>
</div>
<a class="anchor" id="a03798df740d2a1e45f608164b13864d1"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">bool H5::H5File::isHdf5 </td>
          <td>(</td>
          <td class="paramtype">const char *&#160;</td>
          <td class="paramname"><em>name</em></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">
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">name</td><td>- IN: Name of the file </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if the file is in HDF5 format, and false, otherwise </dd></dl>
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="class_h5_1_1_file_i_exception.html">H5::FileIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>

<p>Referenced by <a class="el" href="class_h5_1_1_h5_file.html#a5147f9124fd66da6537999734e85c6fc">isHdf5()</a>.</p>

</div>
</div>
<a class="anchor" id="a5147f9124fd66da6537999734e85c6fc"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">bool H5::H5File::isHdf5 </td>
          <td>(</td>
          <td class="paramtype">const H5std_string &amp;&#160;</td>
          <td class="paramname"><em>name</em></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">
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">name</td><td>- IN: Name of the file - <code>H5std_string</code> </td></tr>
  </table>
  </dd>
</dl>

<p>References <a class="el" href="class_h5_1_1_h5_file.html#a03798df740d2a1e45f608164b13864d1">isHdf5()</a>.</p>

</div>
</div>
<a class="anchor" id="ab20ea83ffa86b74e13168b6c2fdfd817"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void H5::H5File::openFile </td>
          <td>(</td>
          <td class="paramtype">const H5std_string &amp;&#160;</td>
          <td class="paramname"><em>name</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">unsigned int&#160;</td>
          <td class="paramname"><em>flags</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="class_h5_1_1_file_acc_prop_list.html">FileAccPropList</a> &amp;&#160;</td>
          <td class="paramname"><em>access_plist</em> = <code><a class="el" href="class_h5_1_1_file_acc_prop_list.html#a21e14f8342d3730ce1cffb61c04310af">FileAccPropList::DEFAULT</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">name</td><td>- IN: Name of the file - <code>H5std_string</code> </td></tr>
    <tr><td class="paramname">flags</td><td>- IN: File access flags </td></tr>
    <tr><td class="paramname">access_plist</td><td>- IN: File access property list. Default to <a class="el" href="class_h5_1_1_file_acc_prop_list.html#a21e14f8342d3730ce1cffb61c04310af" title="Constant for default property. ">FileAccPropList::DEFAULT</a> </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ae20ef228e7c2db78d31180d3521319ee"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void H5::H5File::openFile </td>
          <td>(</td>
          <td class="paramtype">const char *&#160;</td>
          <td class="paramname"><em>name</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">unsigned int&#160;</td>
          <td class="paramname"><em>flags</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="class_h5_1_1_file_acc_prop_list.html">FileAccPropList</a> &amp;&#160;</td>
          <td class="paramname"><em>access_plist</em> = <code><a class="el" href="class_h5_1_1_file_acc_prop_list.html#a21e14f8342d3730ce1cffb61c04310af">FileAccPropList::DEFAULT</a></code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">name</td><td>- IN: Name of the file </td></tr>
    <tr><td class="paramname">flags</td><td>- IN: File access flags </td></tr>
    <tr><td class="paramname">access_plist</td><td>- IN: File access property list. Default to <a class="el" href="class_h5_1_1_file_acc_prop_list.html#a21e14f8342d3730ce1cffb61c04310af" title="Constant for default property. ">FileAccPropList::DEFAULT</a> </td></tr>
  </table>
  </dd>
</dl>
<dl class="section user"><dt>Description</dt><dd>Valid values of <em>flags</em> include: H5F_ACC_RDWR: Open with read/write access. If the file is currently open for read-only access then it will be reopened. Absence of this flag implies read-only access.</dd></dl>
<p>H5F_ACC_RDONLY: Open with read only access. - default </p>

<p>References <a class="el" href="class_h5_1_1_prop_list.html#a72b0944d2235eb3ec85933070d92433b">H5::PropList::getId()</a>.</p>

</div>
</div>
<a class="anchor" id="af3f5bdd07e7b26a6090ff8361df80498"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void H5::H5File::reOpen </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="class_h5_1_1_file_i_exception.html">H5::FileIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>

<p>References <a class="el" href="class_h5_1_1_h5_file.html#a4f1cd3bce2a84c7ea43bb9e679b6babe">close()</a>, and <a class="el" href="class_h5_1_1_exception.html#aedc9690b2b1a12e0fab36962d4479508">H5::Exception::getDetailMsg()</a>.</p>

</div>
</div>
<a class="anchor" id="a78fad4e8b2d4f26f8cb9c672dd7efd25"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">void H5::H5File::throwException </td>
          <td>(</td>
          <td class="paramtype">const H5std_string &amp;&#160;</td>
          <td class="paramname"><em>func_name</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const H5std_string &amp;&#160;</td>
          <td class="paramname"><em>msg</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">func_name</td><td>- Name of the function where failure occurs </td></tr>
    <tr><td class="paramname">msg</td><td>- Message describing the failure </td></tr>
  </table>
  </dd>
</dl>
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="class_h5_1_1_file_i_exception.html">H5::FileIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<hr/>The documentation for this class was generated from the following files:<ul>
<li><a class="el" href="_h5_file_8h_source.html">H5File.h</a></li>
<li>H5File.cpp</li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Jul 21 2014 10:58:45 for HDF5 C++ API by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.5
</small></address>
</body>
</html>