summaryrefslogtreecommitdiffstats
path: root/c++/src/cpplus_RM/class_h5_1_1_prop_list.html
blob: b86bcb127b6e485340296c38ecb0eb5e3bdda433 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
<!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::PropList 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_prop_list.html">PropList</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-attribs">Static Public Attributes</a> &#124;
<a href="class_h5_1_1_prop_list-members.html">List of all members</a>  </div>
  <div class="headertitle">
<div class="title">H5::PropList Class Reference</div>  </div>
</div><!--header-->
<div class="contents">

<p>Class <a class="el" href="class_h5_1_1_prop_list.html" title="Class PropList provides operations for generic property lists. ">PropList</a> provides operations for generic property lists.  
</p>

<p><code>#include &lt;<a class="el" href="_h5_prop_list_8h_source.html">H5PropList.h</a>&gt;</code></p>
<div class="dynheader">
Inheritance diagram for H5::PropList:</div>
<div class="dyncontent">
 <div class="center">
  <img src="class_h5_1_1_prop_list.png" usemap="#H5::PropList_map" alt=""/>
  <map id="H5::PropList_map" name="H5::PropList_map">
<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="253,0,412,24"/>
<area href="class_h5_1_1_d_set_creat_prop_list.html" title="Class DSetCreatPropList represents the dataset creation property list. " alt="H5::DSetCreatPropList" shape="rect" coords="0,112,159,136"/>
<area href="class_h5_1_1_d_set_mem_xfer_prop_list.html" title="Class DSetMemXferPropList represents the dataset memory and transfer property list. " alt="H5::DSetMemXferPropList" shape="rect" coords="169,112,328,136"/>
<area href="class_h5_1_1_file_acc_prop_list.html" title="Class FileAccPropList represents the HDF5 file access property list. " alt="H5::FileAccPropList" shape="rect" coords="338,112,497,136"/>
<area href="class_h5_1_1_file_creat_prop_list.html" title="Class FileCreatPropList represents the HDF5 file create property list. " alt="H5::FileCreatPropList" shape="rect" coords="507,112,666,136"/>
</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:acd354e858c9ed4be9943bb3ff583a41e"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#acd354e858c9ed4be9943bb3ff583a41e">PropList</a> (const hid_t plist_id)</td></tr>
<tr class="memdesc:acd354e858c9ed4be9943bb3ff583a41e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates a property list using the id of an existing property.  <a href="#acd354e858c9ed4be9943bb3ff583a41e">More...</a><br/></td></tr>
<tr class="separator:acd354e858c9ed4be9943bb3ff583a41e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7b8ce03fb1cda95e10b2babd5567296e"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#a7b8ce03fb1cda95e10b2babd5567296e">operator=</a> (const <a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;rhs)</td></tr>
<tr class="memdesc:a7b8ce03fb1cda95e10b2babd5567296e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Assignment operator.  <a href="#a7b8ce03fb1cda95e10b2babd5567296e">More...</a><br/></td></tr>
<tr class="separator:a7b8ce03fb1cda95e10b2babd5567296e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3891b0fde75dc1cc0ae0f4af8c0478d9"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#a3891b0fde75dc1cc0ae0f4af8c0478d9">operator==</a> (const <a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;rhs) const </td></tr>
<tr class="memdesc:a3891b0fde75dc1cc0ae0f4af8c0478d9"><td class="mdescLeft">&#160;</td><td class="mdescRight">Compares this property list or class against the given list or class.  <a href="#a3891b0fde75dc1cc0ae0f4af8c0478d9">More...</a><br/></td></tr>
<tr class="separator:a3891b0fde75dc1cc0ae0f4af8c0478d9"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9b1f168b3bf0a04cc031ce1e8f3c1615"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#a9b1f168b3bf0a04cc031ce1e8f3c1615">close</a> ()</td></tr>
<tr class="memdesc:a9b1f168b3bf0a04cc031ce1e8f3c1615"><td class="mdescLeft">&#160;</td><td class="mdescRight">Closes the property list if it is not a default one.  <a href="#a9b1f168b3bf0a04cc031ce1e8f3c1615">More...</a><br/></td></tr>
<tr class="separator:a9b1f168b3bf0a04cc031ce1e8f3c1615"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7f827609b7a465146a17ad0cbff6c7f7"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#a7f827609b7a465146a17ad0cbff6c7f7">closeClass</a> () const </td></tr>
<tr class="memdesc:a7f827609b7a465146a17ad0cbff6c7f7"><td class="mdescLeft">&#160;</td><td class="mdescRight">Close a property list class.  <a href="#a7f827609b7a465146a17ad0cbff6c7f7">More...</a><br/></td></tr>
<tr class="separator:a7f827609b7a465146a17ad0cbff6c7f7"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7ddaf55c2144f91013ced20f9139de74"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#a7ddaf55c2144f91013ced20f9139de74">copy</a> (const <a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;like_plist)</td></tr>
<tr class="memdesc:a7ddaf55c2144f91013ced20f9139de74"><td class="mdescLeft">&#160;</td><td class="mdescRight">Makes a copy of an existing property list.  <a href="#a7ddaf55c2144f91013ced20f9139de74">More...</a><br/></td></tr>
<tr class="separator:a7ddaf55c2144f91013ced20f9139de74"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adf60105969782abc2c4e9f38ff5ee4a1"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#adf60105969782abc2c4e9f38ff5ee4a1">copyProp</a> (<a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;dest, const char *name) const </td></tr>
<tr class="memdesc:adf60105969782abc2c4e9f38ff5ee4a1"><td class="mdescLeft">&#160;</td><td class="mdescRight">Copies a property from this property list or class to another.  <a href="#adf60105969782abc2c4e9f38ff5ee4a1">More...</a><br/></td></tr>
<tr class="separator:adf60105969782abc2c4e9f38ff5ee4a1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac951dc365b81915351a697bf153f458e"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#ac951dc365b81915351a697bf153f458e">copyProp</a> (<a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;dest, const H5std_string &amp;name) const </td></tr>
<tr class="memdesc:ac951dc365b81915351a697bf153f458e"><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="#ac951dc365b81915351a697bf153f458e">More...</a><br/></td></tr>
<tr class="separator:ac951dc365b81915351a697bf153f458e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a942895c45bc1c818bdc3900c362d6575"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#a942895c45bc1c818bdc3900c362d6575">copyProp</a> (<a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;dest, <a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;src, const char *name) const </td></tr>
<tr class="memdesc:a942895c45bc1c818bdc3900c362d6575"><td class="mdescLeft">&#160;</td><td class="mdescRight">Copies a property from one list or class to another - Obsolete.  <a href="#a942895c45bc1c818bdc3900c362d6575">More...</a><br/></td></tr>
<tr class="separator:a942895c45bc1c818bdc3900c362d6575"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acb1efff23a1b72a0472a8727c9fbe9c6"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#acb1efff23a1b72a0472a8727c9fbe9c6">copyProp</a> (<a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;dest, <a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;src, const H5std_string &amp;name) const </td></tr>
<tr class="memdesc:acb1efff23a1b72a0472a8727c9fbe9c6"><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. - Obsolete.  <a href="#acb1efff23a1b72a0472a8727c9fbe9c6">More...</a><br/></td></tr>
<tr class="separator:acb1efff23a1b72a0472a8727c9fbe9c6"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abc1415a36f6d2378ca705b2d1cd57c70"><td class="memItemLeft" align="right" valign="top">hid_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#abc1415a36f6d2378ca705b2d1cd57c70">getClass</a> () const </td></tr>
<tr class="memdesc:abc1415a36f6d2378ca705b2d1cd57c70"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the class of this property list, i.e. <code>H5P_FILE_CREATE</code>...  <a href="#abc1415a36f6d2378ca705b2d1cd57c70">More...</a><br/></td></tr>
<tr class="separator:abc1415a36f6d2378ca705b2d1cd57c70"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab1468aa7c32ed13ad898b94ff96f568d"><td class="memItemLeft" align="right" valign="top">H5std_string&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#ab1468aa7c32ed13ad898b94ff96f568d">getClassName</a> () const </td></tr>
<tr class="memdesc:ab1468aa7c32ed13ad898b94ff96f568d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Return the name of a generic property list class.  <a href="#ab1468aa7c32ed13ad898b94ff96f568d">More...</a><br/></td></tr>
<tr class="separator:ab1468aa7c32ed13ad898b94ff96f568d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a51793fc0382de4613d0c3176ef67f339"><td class="memItemLeft" align="right" valign="top"><a class="el" href="class_h5_1_1_prop_list.html">PropList</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#a51793fc0382de4613d0c3176ef67f339">getClassParent</a> () const </td></tr>
<tr class="memdesc:a51793fc0382de4613d0c3176ef67f339"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the parent class of a generic property class.  <a href="#a51793fc0382de4613d0c3176ef67f339">More...</a><br/></td></tr>
<tr class="separator:a51793fc0382de4613d0c3176ef67f339"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6821d6849c40cf6c07c0e3eac3ede81f"><td class="memItemLeft" align="right" valign="top">size_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#a6821d6849c40cf6c07c0e3eac3ede81f">getNumProps</a> () const </td></tr>
<tr class="memdesc:a6821d6849c40cf6c07c0e3eac3ede81f"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the number of properties in this property list or class.  <a href="#a6821d6849c40cf6c07c0e3eac3ede81f">More...</a><br/></td></tr>
<tr class="separator:a6821d6849c40cf6c07c0e3eac3ede81f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a957d56e03065ee211260eeb3d2813817"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#a957d56e03065ee211260eeb3d2813817">getProperty</a> (const char *name, void *value) const </td></tr>
<tr class="memdesc:a957d56e03065ee211260eeb3d2813817"><td class="mdescLeft">&#160;</td><td class="mdescRight">Query the value of a property in a property list.  <a href="#a957d56e03065ee211260eeb3d2813817">More...</a><br/></td></tr>
<tr class="separator:a957d56e03065ee211260eeb3d2813817"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abd473125c6683c6d9982e1c8559b1a31"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#abd473125c6683c6d9982e1c8559b1a31">getProperty</a> (const H5std_string &amp;name, void *value) const </td></tr>
<tr class="memdesc:abd473125c6683c6d9982e1c8559b1a31"><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="#abd473125c6683c6d9982e1c8559b1a31">More...</a><br/></td></tr>
<tr class="separator:abd473125c6683c6d9982e1c8559b1a31"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a78846ee5fab52e27d6fb0135f0c55c36"><td class="memItemLeft" align="right" valign="top">H5std_string&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#a78846ee5fab52e27d6fb0135f0c55c36">getProperty</a> (const char *name) const </td></tr>
<tr class="memdesc:a78846ee5fab52e27d6fb0135f0c55c36"><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="#a78846ee5fab52e27d6fb0135f0c55c36">More...</a><br/></td></tr>
<tr class="separator:a78846ee5fab52e27d6fb0135f0c55c36"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a400f66a05979cc41343e3f2cf4770aa1"><td class="memItemLeft" align="right" valign="top">H5std_string&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#a400f66a05979cc41343e3f2cf4770aa1">getProperty</a> (const H5std_string &amp;name) const </td></tr>
<tr class="memdesc:a400f66a05979cc41343e3f2cf4770aa1"><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="#a400f66a05979cc41343e3f2cf4770aa1">More...</a><br/></td></tr>
<tr class="separator:a400f66a05979cc41343e3f2cf4770aa1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad086b38d1792aeda39f254448c366440"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#ad086b38d1792aeda39f254448c366440">setProperty</a> (const char *name, void *value) const </td></tr>
<tr class="memdesc:ad086b38d1792aeda39f254448c366440"><td class="mdescLeft">&#160;</td><td class="mdescRight">Set a property's value in a property list.  <a href="#ad086b38d1792aeda39f254448c366440">More...</a><br/></td></tr>
<tr class="separator:ad086b38d1792aeda39f254448c366440"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9a80cb72962ffaf771004f7cfaeea161"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#a9a80cb72962ffaf771004f7cfaeea161">setProperty</a> (const char *name, const char *charptr) const </td></tr>
<tr class="memdesc:a9a80cb72962ffaf771004f7cfaeea161"><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="#a9a80cb72962ffaf771004f7cfaeea161">More...</a><br/></td></tr>
<tr class="separator:a9a80cb72962ffaf771004f7cfaeea161"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa6f2e701f614657426ae5f64bec9c876"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#aa6f2e701f614657426ae5f64bec9c876">setProperty</a> (const char *name, H5std_string &amp;strg) const </td></tr>
<tr class="memdesc:aa6f2e701f614657426ae5f64bec9c876"><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="#aa6f2e701f614657426ae5f64bec9c876">More...</a><br/></td></tr>
<tr class="separator:aa6f2e701f614657426ae5f64bec9c876"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa7b5c36ef06e3801a5c043217ba6965f"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#aa7b5c36ef06e3801a5c043217ba6965f">setProperty</a> (const H5std_string &amp;name, void *value) const </td></tr>
<tr class="memdesc:aa7b5c36ef06e3801a5c043217ba6965f"><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="#aa7b5c36ef06e3801a5c043217ba6965f">More...</a><br/></td></tr>
<tr class="separator:aa7b5c36ef06e3801a5c043217ba6965f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9e90d987e1394d59e4e0423143d0e098"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#a9e90d987e1394d59e4e0423143d0e098">setProperty</a> (const H5std_string &amp;name, H5std_string &amp;strg) const </td></tr>
<tr class="memdesc:a9e90d987e1394d59e4e0423143d0e098"><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="#a9e90d987e1394d59e4e0423143d0e098">More...</a><br/></td></tr>
<tr class="separator:a9e90d987e1394d59e4e0423143d0e098"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a44ea63b2d9f2e14c35219b31d20463f9"><td class="memItemLeft" align="right" valign="top">size_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#a44ea63b2d9f2e14c35219b31d20463f9">getPropSize</a> (const char *name) const </td></tr>
<tr class="memdesc:a44ea63b2d9f2e14c35219b31d20463f9"><td class="mdescLeft">&#160;</td><td class="mdescRight">Query the size of a property in a property list or class.  <a href="#a44ea63b2d9f2e14c35219b31d20463f9">More...</a><br/></td></tr>
<tr class="separator:a44ea63b2d9f2e14c35219b31d20463f9"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad260da9bc428af64ddebd9aabf143732"><td class="memItemLeft" align="right" valign="top">size_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#ad260da9bc428af64ddebd9aabf143732">getPropSize</a> (const H5std_string &amp;name) const </td></tr>
<tr class="memdesc:ad260da9bc428af64ddebd9aabf143732"><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="#ad260da9bc428af64ddebd9aabf143732">More...</a><br/></td></tr>
<tr class="separator:ad260da9bc428af64ddebd9aabf143732"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2769057cf24f236881d301739fc3b1b8"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#a2769057cf24f236881d301739fc3b1b8">isAClass</a> (const <a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;prop_class) const </td></tr>
<tr class="memdesc:a2769057cf24f236881d301739fc3b1b8"><td class="mdescLeft">&#160;</td><td class="mdescRight">Determines whether a property list is a certain class.  <a href="#a2769057cf24f236881d301739fc3b1b8">More...</a><br/></td></tr>
<tr class="separator:a2769057cf24f236881d301739fc3b1b8"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2e5ee376a6ca442b3a194df17ca79a1a"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#a2e5ee376a6ca442b3a194df17ca79a1a">propExist</a> (const char *name) const </td></tr>
<tr class="memdesc:a2e5ee376a6ca442b3a194df17ca79a1a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Query the existance of a property in a property object.  <a href="#a2e5ee376a6ca442b3a194df17ca79a1a">More...</a><br/></td></tr>
<tr class="separator:a2e5ee376a6ca442b3a194df17ca79a1a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9d4b8ad4e9917f8a73b3f705cfd35241"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#a9d4b8ad4e9917f8a73b3f705cfd35241">propExist</a> (const H5std_string &amp;name) const </td></tr>
<tr class="memdesc:a9d4b8ad4e9917f8a73b3f705cfd35241"><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="#a9d4b8ad4e9917f8a73b3f705cfd35241">More...</a><br/></td></tr>
<tr class="separator:a9d4b8ad4e9917f8a73b3f705cfd35241"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2d2178edf1090d16989db1f1bc70cf9e"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#a2d2178edf1090d16989db1f1bc70cf9e">removeProp</a> (const char *name) const </td></tr>
<tr class="memdesc:a2d2178edf1090d16989db1f1bc70cf9e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Removes a property from a property list.  <a href="#a2d2178edf1090d16989db1f1bc70cf9e">More...</a><br/></td></tr>
<tr class="separator:a2d2178edf1090d16989db1f1bc70cf9e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9d506f67b449021ce5c78ac8a0b99020"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#a9d506f67b449021ce5c78ac8a0b99020">removeProp</a> (const H5std_string &amp;name) const </td></tr>
<tr class="memdesc:a9d506f67b449021ce5c78ac8a0b99020"><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="#a9d506f67b449021ce5c78ac8a0b99020">More...</a><br/></td></tr>
<tr class="separator:a9d506f67b449021ce5c78ac8a0b99020"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab0648018d799b4abb1af7cf96ab6e728"><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_prop_list.html#ab0648018d799b4abb1af7cf96ab6e728">fromClass</a> () const </td></tr>
<tr class="memdesc:ab0648018d799b4abb1af7cf96ab6e728"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns this class name.  <a href="#ab0648018d799b4abb1af7cf96ab6e728">More...</a><br/></td></tr>
<tr class="separator:ab0648018d799b4abb1af7cf96ab6e728"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ace290d83122de5cfc431b33e43555e6f"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#ace290d83122de5cfc431b33e43555e6f">PropList</a> ()</td></tr>
<tr class="memdesc:ace290d83122de5cfc431b33e43555e6f"><td class="mdescLeft">&#160;</td><td class="mdescRight">Default constructor: creates a stub property list object.  <a href="#ace290d83122de5cfc431b33e43555e6f">More...</a><br/></td></tr>
<tr class="separator:ace290d83122de5cfc431b33e43555e6f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8f3198e63cf76ac921c7aff75256f6a7"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#a8f3198e63cf76ac921c7aff75256f6a7">PropList</a> (const <a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;original)</td></tr>
<tr class="memdesc:a8f3198e63cf76ac921c7aff75256f6a7"><td class="mdescLeft">&#160;</td><td class="mdescRight">Copy constructor.  <a href="#a8f3198e63cf76ac921c7aff75256f6a7">More...</a><br/></td></tr>
<tr class="separator:a8f3198e63cf76ac921c7aff75256f6a7"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a72b0944d2235eb3ec85933070d92433b"><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_prop_list.html#a72b0944d2235eb3ec85933070d92433b">getId</a> () const </td></tr>
<tr class="memdesc:a72b0944d2235eb3ec85933070d92433b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the id of this property list.  <a href="#a72b0944d2235eb3ec85933070d92433b">More...</a><br/></td></tr>
<tr class="separator:a72b0944d2235eb3ec85933070d92433b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab526997f00256819512e9a093c69ea79"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#ab526997f00256819512e9a093c69ea79">~PropList</a> ()</td></tr>
<tr class="memdesc:ab526997f00256819512e9a093c69ea79"><td class="mdescLeft">&#160;</td><td class="mdescRight">Properly terminates access to this property list.  <a href="#ab526997f00256819512e9a093c69ea79">More...</a><br/></td></tr>
<tr class="separator:ab526997f00256819512e9a093c69ea79"><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>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-attribs"></a>
Static Public Attributes</h2></td></tr>
<tr class="memitem:a0f2f757ca782a743006c5756191c404b"><td class="memItemLeft" align="right" valign="top">static const <a class="el" href="class_h5_1_1_prop_list.html">PropList</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_h5_1_1_prop_list.html#a0f2f757ca782a743006c5756191c404b">DEFAULT</a></td></tr>
<tr class="memdesc:a0f2f757ca782a743006c5756191c404b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Constant for default property.  <a href="#a0f2f757ca782a743006c5756191c404b">More...</a><br/></td></tr>
<tr class="separator:a0f2f757ca782a743006c5756191c404b"><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 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>
<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>
<h2 class="groupheader">Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="acd354e858c9ed4be9943bb3ff583a41e"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5::PropList::PropList </td>
          <td>(</td>
          <td class="paramtype">const hid_t&#160;</td>
          <td class="paramname"><em>plist_id</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">plist_id</td><td>- IN: Id of the existing property list </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_prop_list_i_exception.html">H5::PropListIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>

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

</div>
</div>
<a class="anchor" id="a8f3198e63cf76ac921c7aff75256f6a7"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5::PropList::PropList </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="class_h5_1_1_prop_list.html">PropList</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: The original property list to copy </td></tr>
  </table>
  </dd>
</dl>

<p>References <a class="el" href="class_h5_1_1_prop_list.html#a72b0944d2235eb3ec85933070d92433b">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="ab526997f00256819512e9a093c69ea79"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">H5::PropList::~PropList </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_prop_list.html#a9b1f168b3bf0a04cc031ce1e8f3c1615">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="a9b1f168b3bf0a04cc031ce1e8f3c1615"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">void H5::PropList::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_prop_list_i_exception.html">H5::PropListIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>

<p>Referenced by <a class="el" href="class_h5_1_1_prop_list.html#a7ddaf55c2144f91013ced20f9139de74">copy()</a>, and <a class="el" href="class_h5_1_1_prop_list.html#ab526997f00256819512e9a093c69ea79">~PropList()</a>.</p>

</div>
</div>
<a class="anchor" id="a7f827609b7a465146a17ad0cbff6c7f7"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void H5::PropList::closeClass </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</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_prop_list_i_exception.html">H5::PropListIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>
<dl class="section user"><dt>Description</dt><dd>Releases memory and detaches a class from the property list class hierarchy. </dd></dl>

</div>
</div>
<a class="anchor" id="a7ddaf55c2144f91013ced20f9139de74"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void H5::PropList::copy </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;&#160;</td>
          <td class="paramname"><em>like_plist</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">like_plist</td><td>- IN: Reference to the existing property list </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_prop_list_i_exception.html">H5::PropListIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>

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

<p>Referenced by <a class="el" href="class_h5_1_1_prop_list.html#a7b8ce03fb1cda95e10b2babd5567296e">operator=()</a>.</p>

</div>
</div>
<a class="anchor" id="adf60105969782abc2c4e9f38ff5ee4a1"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void H5::PropList::copyProp </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;&#160;</td>
          <td class="paramname"><em>dest</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const char *&#160;</td>
          <td class="paramname"><em>name</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">dest</td><td>- IN: Destination property list or class </td></tr>
    <tr><td class="paramname">name</td><td>- IN: Name of the property to copy - <code>char</code> pointer </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_prop_list_i_exception.html">H5::PropListIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>

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

<p>Referenced by <a class="el" href="class_h5_1_1_prop_list.html#ac951dc365b81915351a697bf153f458e">copyProp()</a>.</p>

</div>
</div>
<a class="anchor" id="ac951dc365b81915351a697bf153f458e"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void H5::PropList::copyProp </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;&#160;</td>
          <td class="paramname"><em>dest</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const H5std_string &amp;&#160;</td>
          <td class="paramname"><em>name</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">dest</td><td>- IN: Destination property list or class </td></tr>
    <tr><td class="paramname">name</td><td>- IN: Name of the property to copy - <code>H5std_string</code> </td></tr>
  </table>
  </dd>
</dl>

<p>References <a class="el" href="class_h5_1_1_prop_list.html#adf60105969782abc2c4e9f38ff5ee4a1">copyProp()</a>.</p>

</div>
</div>
<a class="anchor" id="a942895c45bc1c818bdc3900c362d6575"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void H5::PropList::copyProp </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;&#160;</td>
          <td class="paramname"><em>dest</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;&#160;</td>
          <td class="paramname"><em>src</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const char *&#160;</td>
          <td class="paramname"><em>name</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div><div class="memdoc">
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">dest</td><td>- IN: Destination property list or class </td></tr>
    <tr><td class="paramname">src</td><td>- IN: Source property list or class </td></tr>
    <tr><td class="paramname">name</td><td>- IN: Name of the property to copy - <code>char</code> pointer </td></tr>
  </table>
  </dd>
</dl>
<dl class="section note"><dt>Note</dt><dd>This member function will be removed in the next release </dd></dl>
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="class_h5_1_1_prop_list_i_exception.html">H5::PropListIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>

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

</div>
</div>
<a class="anchor" id="acb1efff23a1b72a0472a8727c9fbe9c6"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void H5::PropList::copyProp </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;&#160;</td>
          <td class="paramname"><em>dest</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;&#160;</td>
          <td class="paramname"><em>src</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const H5std_string &amp;&#160;</td>
          <td class="paramname"><em>name</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">dest</td><td>- IN: Destination property list or class </td></tr>
    <tr><td class="paramname">src</td><td>- IN: Source property list or class </td></tr>
    <tr><td class="paramname">name</td><td>- IN: Name of the property to copy - <code>H5std_string</code> </td></tr>
  </table>
  </dd>
</dl>

<p>References <a class="el" href="class_h5_1_1_prop_list.html#adf60105969782abc2c4e9f38ff5ee4a1">copyProp()</a>.</p>

</div>
</div>
<a class="anchor" id="ab0648018d799b4abb1af7cf96ab6e728"></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::PropList::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">

<p>Reimplemented in <a class="el" href="class_h5_1_1_file_acc_prop_list.html#a4ecd3bc5b4a190624e745e45c8a137cb">H5::FileAccPropList</a>, <a class="el" href="class_h5_1_1_d_set_creat_prop_list.html#a4e373ddd5932a8a040889e0bd528221e">H5::DSetCreatPropList</a>, <a class="el" href="class_h5_1_1_d_set_mem_xfer_prop_list.html#abf020492021bc0d8dfdc22878030dc4d">H5::DSetMemXferPropList</a>, and <a class="el" href="class_h5_1_1_file_creat_prop_list.html#a592ed2dcba2a223977ae07689d7c4024">H5::FileCreatPropList</a>.</p>

</div>
</div>
<a class="anchor" id="abc1415a36f6d2378ca705b2d1cd57c70"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">hid_t H5::PropList::getClass </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>The property list class if it is not equal to <code>H5P_ROOT</code> </dd></dl>
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="class_h5_1_1_prop_list_i_exception.html">H5::PropListIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ab1468aa7c32ed13ad898b94ff96f568d"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5std_string H5::PropList::getClassName </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 string containing the class name, if success, otherwise, a NULL string. </dd></dl>

</div>
</div>
<a class="anchor" id="a51793fc0382de4613d0c3176ef67f339"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="class_h5_1_1_prop_list.html">PropList</a> H5::PropList::getClassParent </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>The parent class of a property class </dd></dl>
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="class_h5_1_1_prop_list_i_exception.html">H5::PropListIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a72b0944d2235eb3ec85933070d92433b"></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::PropList::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>Property list identifier </dd></dl>

<p>Referenced by <a class="el" href="class_h5_1_1_data_type.html#a2abc382547c243346b3b6691fec813f3">H5::DataType::convert()</a>, <a class="el" href="class_h5_1_1_prop_list.html#a7ddaf55c2144f91013ced20f9139de74">copy()</a>, <a class="el" href="class_h5_1_1_prop_list.html#adf60105969782abc2c4e9f38ff5ee4a1">copyProp()</a>, <a class="el" href="class_h5_1_1_h5_location.html#a624715e413bc019345cd596db745094a">H5::H5Location::createAttribute()</a>, <a class="el" href="class_h5_1_1_common_f_g.html#a12a4af21ca0231d4f2c4008b12177bb1">H5::CommonFG::createDataSet()</a>, <a class="el" href="class_h5_1_1_h5_file.html#afab750a1b471366af92ee04730685fbd">H5::H5File::getVFDHandle()</a>, <a class="el" href="class_h5_1_1_prop_list.html#a2769057cf24f236881d301739fc3b1b8">isAClass()</a>, <a class="el" href="class_h5_1_1_common_f_g.html#a84540130b078ff2eb78cef0e249f4a99">H5::CommonFG::mount()</a>, <a class="el" href="class_h5_1_1_h5_file.html#ae20ef228e7c2db78d31180d3521319ee">H5::H5File::openFile()</a>, <a class="el" href="class_h5_1_1_prop_list.html#a3891b0fde75dc1cc0ae0f4af8c0478d9">operator==()</a>, <a class="el" href="class_h5_1_1_prop_list.html#a8f3198e63cf76ac921c7aff75256f6a7">PropList()</a>, <a class="el" href="class_h5_1_1_data_set.html#a2f0278a519122419ae9981666277c9bb">H5::DataSet::read()</a>, <a class="el" href="class_h5_1_1_file_acc_prop_list.html#ad944dbb1bdf95750572740534d9f5a7e">H5::FileAccPropList::setFamily()</a>, <a class="el" href="class_h5_1_1_file_acc_prop_list.html#abfb207b7eed2af05ba61352503cef8da">H5::FileAccPropList::setSplit()</a>, <a class="el" href="class_h5_1_1_data_set.html#a4e76899f034982233893d98a994e1020">H5::DataSet::vlenReclaim()</a>, and <a class="el" href="class_h5_1_1_data_set.html#a3ce98e7a626fd32a23d1bcc41537326f">H5::DataSet::write()</a>.</p>

</div>
</div>
<a class="anchor" id="a6821d6849c40cf6c07c0e3eac3ede81f"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">size_t H5::PropList::getNumProps </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>Size of the property. </dd></dl>
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="class_h5_1_1_prop_list_i_exception.html">H5::PropListIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a957d56e03065ee211260eeb3d2813817"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void H5::PropList::getProperty </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">void *&#160;</td>
          <td class="paramname"><em>value</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">name</td><td>- IN: Name of property to query - <code>char</code> pointer </td></tr>
    <tr><td class="paramname">value</td><td>- OUT: Pointer to the buffer for the property value </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_prop_list_i_exception.html">H5::PropListIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>
<dl class="section user"><dt>Description</dt><dd>Retrieves a copy of the value for a property in a property list. The property name must exist or this routine will throw an exception. </dd></dl>

<p>Referenced by <a class="el" href="class_h5_1_1_prop_list.html#abd473125c6683c6d9982e1c8559b1a31">getProperty()</a>.</p>

</div>
</div>
<a class="anchor" id="abd473125c6683c6d9982e1c8559b1a31"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void H5::PropList::getProperty </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">void *&#160;</td>
          <td class="paramname"><em>value</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">name</td><td>- IN: Name of property to query - <code>H5std_string</code> </td></tr>
    <tr><td class="paramname">value</td><td>- OUT: Pointer to the buffer for the property value </td></tr>
  </table>
  </dd>
</dl>

<p>References <a class="el" href="class_h5_1_1_prop_list.html#a957d56e03065ee211260eeb3d2813817">getProperty()</a>.</p>

</div>
</div>
<a class="anchor" id="a78846ee5fab52e27d6fb0135f0c55c36"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5std_string H5::PropList::getProperty </td>
          <td>(</td>
          <td class="paramtype">const char *&#160;</td>
          <td class="paramname"><em>name</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">name</td><td>- IN: Name of property to query - <code>char</code> pointer </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The property that is a <code>H5std_string</code>. </dd></dl>
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="class_h5_1_1_prop_list_i_exception.html">H5::PropListIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>

<p>References <a class="el" href="class_h5_1_1_prop_list.html#a44ea63b2d9f2e14c35219b31d20463f9">getPropSize()</a>.</p>

</div>
</div>
<a class="anchor" id="a400f66a05979cc41343e3f2cf4770aa1"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">H5std_string H5::PropList::getProperty </td>
          <td>(</td>
          <td class="paramtype">const H5std_string &amp;&#160;</td>
          <td class="paramname"><em>name</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">name</td><td>- IN: Name of property to query - <code>H5std_string</code> </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The property that is a <code>H5std_string</code>. </dd></dl>

<p>References <a class="el" href="class_h5_1_1_prop_list.html#a957d56e03065ee211260eeb3d2813817">getProperty()</a>.</p>

</div>
</div>
<a class="anchor" id="a44ea63b2d9f2e14c35219b31d20463f9"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">size_t H5::PropList::getPropSize </td>
          <td>(</td>
          <td class="paramtype">const char *&#160;</td>
          <td class="paramname"><em>name</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">name</td><td>- IN: Name of property to query </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Size of the property </dd></dl>
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="class_h5_1_1_prop_list_i_exception.html">H5::PropListIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>
<dl class="section user"><dt>Description</dt><dd>This routine retrieves the size of a property's value in bytes. Zero-sized properties are allowed and the return value will be of 0. This function works for both property lists and classes. </dd></dl>

<p>Referenced by <a class="el" href="class_h5_1_1_prop_list.html#a78846ee5fab52e27d6fb0135f0c55c36">getProperty()</a>, and <a class="el" href="class_h5_1_1_prop_list.html#ad260da9bc428af64ddebd9aabf143732">getPropSize()</a>.</p>

</div>
</div>
<a class="anchor" id="ad260da9bc428af64ddebd9aabf143732"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">size_t H5::PropList::getPropSize </td>
          <td>(</td>
          <td class="paramtype">const H5std_string &amp;&#160;</td>
          <td class="paramname"><em>name</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">name</td><td>- IN: Name of property to query - <code>H5std_string</code> </td></tr>
  </table>
  </dd>
</dl>

<p>References <a class="el" href="class_h5_1_1_prop_list.html#a44ea63b2d9f2e14c35219b31d20463f9">getPropSize()</a>.</p>

</div>
</div>
<a class="anchor" id="a2769057cf24f236881d301739fc3b1b8"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool H5::PropList::isAClass </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;&#160;</td>
          <td class="paramname"><em>prop_class</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">prop_class</td><td>- IN: Property class to query </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if the property list is a member of the property list class, 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_prop_list_i_exception.html">H5::PropListIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>

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

</div>
</div>
<a class="anchor" id="a7b8ce03fb1cda95e10b2babd5567296e"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp; H5::PropList::operator= </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;&#160;</td>
          <td class="paramname"><em>rhs</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">rhs</td><td>- IN: Reference to the existing property list </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Reference to <a class="el" href="class_h5_1_1_prop_list.html" title="Class PropList provides operations for generic property lists. ">PropList</a> instance </dd></dl>
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="class_h5_1_1_prop_list_i_exception.html">H5::PropListIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>

<p>References <a class="el" href="class_h5_1_1_prop_list.html#a7ddaf55c2144f91013ced20f9139de74">copy()</a>.</p>

</div>
</div>
<a class="anchor" id="a3891b0fde75dc1cc0ae0f4af8c0478d9"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool H5::PropList::operator== </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="class_h5_1_1_prop_list.html">PropList</a> &amp;&#160;</td>
          <td class="paramname"><em>rhs</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">rhs</td><td>- IN: Reference to the property list to compare </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if the property lists or classes are equal, 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_prop_list_i_exception.html">H5::PropListIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>

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

</div>
</div>
<a class="anchor" id="a2e5ee376a6ca442b3a194df17ca79a1a"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool H5::PropList::propExist </td>
          <td>(</td>
          <td class="paramtype">const char *&#160;</td>
          <td class="paramname"><em>name</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">name</td><td>- IN: Name of property to check for - <code>char</code> pointer </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if the property exists in the property object, 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_prop_list_i_exception.html">H5::PropListIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>
<dl class="section user"><dt>Description</dt><dd>This routine checks if a property exists within a property list or class. </dd></dl>

<p>Referenced by <a class="el" href="class_h5_1_1_prop_list.html#a9d4b8ad4e9917f8a73b3f705cfd35241">propExist()</a>.</p>

</div>
</div>
<a class="anchor" id="a9d4b8ad4e9917f8a73b3f705cfd35241"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool H5::PropList::propExist </td>
          <td>(</td>
          <td class="paramtype">const H5std_string &amp;&#160;</td>
          <td class="paramname"><em>name</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">name</td><td>- IN: Name of property to check for - <code>H5std_string</code> </td></tr>
  </table>
  </dd>
</dl>

<p>References <a class="el" href="class_h5_1_1_prop_list.html#a2e5ee376a6ca442b3a194df17ca79a1a">propExist()</a>.</p>

</div>
</div>
<a class="anchor" id="a2d2178edf1090d16989db1f1bc70cf9e"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void H5::PropList::removeProp </td>
          <td>(</td>
          <td class="paramtype">const char *&#160;</td>
          <td class="paramname"><em>name</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">name</td><td>- IN: Name of property to remove - <code>char</code> pointer </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_prop_list_i_exception.html">H5::PropListIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>

<p>Referenced by <a class="el" href="class_h5_1_1_prop_list.html#a9d506f67b449021ce5c78ac8a0b99020">removeProp()</a>.</p>

</div>
</div>
<a class="anchor" id="a9d506f67b449021ce5c78ac8a0b99020"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void H5::PropList::removeProp </td>
          <td>(</td>
          <td class="paramtype">const H5std_string &amp;&#160;</td>
          <td class="paramname"><em>name</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">name</td><td>- IN: Name of property to remove - <code>H5std_string</code> </td></tr>
  </table>
  </dd>
</dl>

<p>References <a class="el" href="class_h5_1_1_prop_list.html#a2d2178edf1090d16989db1f1bc70cf9e">removeProp()</a>.</p>

</div>
</div>
<a class="anchor" id="ad086b38d1792aeda39f254448c366440"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void H5::PropList::setProperty </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">void *&#160;</td>
          <td class="paramname"><em>value</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">name</td><td>- IN: Name of property to set - <code>char</code> pointer </td></tr>
    <tr><td class="paramname">value</td><td>- IN: Void pointer to the value for the property </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_prop_list_i_exception.html">H5::PropListIException</a></td><td></td></tr>
  </table>
  </dd>
</dl>

<p>Referenced by <a class="el" href="class_h5_1_1_prop_list.html#aa6f2e701f614657426ae5f64bec9c876">setProperty()</a>.</p>

</div>
</div>
<a class="anchor" id="a9a80cb72962ffaf771004f7cfaeea161"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void H5::PropList::setProperty </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">const char *&#160;</td>
          <td class="paramname"><em>charptr</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">name</td><td>- IN: Name of property to set - <code>char</code> pointer </td></tr>
    <tr><td class="paramname">charptr</td><td>- IN: Char pointer to the value for the property </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="aa6f2e701f614657426ae5f64bec9c876"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void H5::PropList::setProperty </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">H5std_string &amp;&#160;</td>
          <td class="paramname"><em>strg</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">name</td><td>- IN: Name of property to set - <code>char</code> pointer </td></tr>
    <tr><td class="paramname">strg</td><td>- IN: Value for the property is a <code>H5std_string</code> </td></tr>
  </table>
  </dd>
</dl>

<p>References <a class="el" href="class_h5_1_1_prop_list.html#ad086b38d1792aeda39f254448c366440">setProperty()</a>.</p>

</div>
</div>
<a class="anchor" id="aa7b5c36ef06e3801a5c043217ba6965f"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void H5::PropList::setProperty </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">void *&#160;</td>
          <td class="paramname"><em>value</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">name</td><td>- IN: Name of property to set - <code>H5std_string</code> </td></tr>
    <tr><td class="paramname">value</td><td>- IN: Void pointer to the value for the property </td></tr>
  </table>
  </dd>
</dl>

<p>References <a class="el" href="class_h5_1_1_prop_list.html#ad086b38d1792aeda39f254448c366440">setProperty()</a>.</p>

</div>
</div>
<a class="anchor" id="a9e90d987e1394d59e4e0423143d0e098"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void H5::PropList::setProperty </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">H5std_string &amp;&#160;</td>
          <td class="paramname"><em>strg</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">name</td><td>- IN: Name of property to set - <code>H5std_string</code> </td></tr>
    <tr><td class="paramname">strg</td><td>- IN: Value for the property is a <code>H5std_string</code> </td></tr>
  </table>
  </dd>
</dl>

<p>References <a class="el" href="class_h5_1_1_prop_list.html#ad086b38d1792aeda39f254448c366440">setProperty()</a>.</p>

</div>
</div>
<h2 class="groupheader">Member Data Documentation</h2>
<a class="anchor" id="a0f2f757ca782a743006c5756191c404b"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="class_h5_1_1_prop_list.html">PropList</a> H5::PropList::DEFAULT</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<hr/>The documentation for this class was generated from the following files:<ul>
<li><a class="el" href="_h5_prop_list_8h_source.html">H5PropList.h</a></li>
<li>H5PropList.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>