File: classxmlpp_1_1Element.html

package info (click to toggle)
libxml%2B%2B2.6 2.40.1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 8,048 kB
  • ctags: 1,443
  • sloc: sh: 11,363; cpp: 7,695; xml: 996; perl: 289; makefile: 219
file content (960 lines) | stat: -rw-r--r-- 106,114 bytes parent folder | download | duplicates (2)
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
<!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.9.1"/>
<title>libxml++: xmlpp::Element 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="doxygen.css" rel="stylesheet" type="text/css" />
<link href="doxygen-extra.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 style="padding-left: 0.5em;">
   <div id="projectname">libxml++
   &#160;<span id="projectnumber">2.40.1</span>
   </div>
  </td>
 </tr>
 </tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.9.1 -->
  <div id="navrow1" class="tabs">
    <ul class="tablist">
      <li><a href="index.html"><span>Main&#160;Page</span></a></li>
      <li><a href="pages.html"><span>Related&#160;Pages</span></a></li>
      <li><a href="namespaces.html"><span>Namespaces</span></a></li>
      <li class="current"><a href="annotated.html"><span>Classes</span></a></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="inherits.html"><span>Class&#160;Hierarchy</span></a></li>
      <li><a href="functions.html"><span>Class&#160;Members</span></a></li>
    </ul>
  </div>
<div id="nav-path" class="navpath">
  <ul>
<li class="navelem"><a class="el" href="namespacexmlpp.html">xmlpp</a></li><li class="navelem"><a class="el" href="classxmlpp_1_1Element.html">Element</a></li>  </ul>
</div>
</div><!-- top -->
<div class="header">
  <div class="summary">
<a href="#pub-types">Public Types</a> &#124;
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#pro-methods">Protected Member Functions</a> &#124;
<a href="classxmlpp_1_1Element-members.html">List of all members</a>  </div>
  <div class="headertitle">
<div class="title">xmlpp::Element Class Reference</div>  </div>
</div><!--header-->
<div class="contents">

<p><a class="el" href="classxmlpp_1_1Element.html" title="Element nodes have attributes as well as child nodes. ">Element</a> nodes have attributes as well as child nodes.  
 <a href="classxmlpp_1_1Element.html#details">More...</a></p>

<p><code>#include &lt;libxml++/nodes/element.h&gt;</code></p>
<div class="dynheader">
Inheritance diagram for xmlpp::Element:</div>
<div class="dyncontent">
<div class="center"><img src="classxmlpp_1_1Element__inherit__graph.png" border="0" usemap="#xmlpp_1_1Element_inherit__map" alt="Inheritance graph"/></div>
<map name="xmlpp_1_1Element_inherit__map" id="xmlpp_1_1Element_inherit__map">
<area shape="rect" id="node2" href="classxmlpp_1_1Node.html" title="Represents XML Nodes. " alt="" coords="31,80,134,107"/><area shape="rect" id="node3" href="classxmlpp_1_1NonCopyable.html" title="A base for classes which cannot be copied. " alt="" coords="5,5,160,32"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-types"></a>
Public Types</h2></td></tr>
<tr class="memitem:a7c54c83af3dfeddf2a70dba5ca6cc1d1"><td class="memItemLeft" align="right" valign="top">typedef <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00464.html">std::list</a>&lt; <a class="el" href="classxmlpp_1_1Attribute.html">Attribute</a>* &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Element.html#a7c54c83af3dfeddf2a70dba5ca6cc1d1">AttributeList</a></td></tr>
<tr class="separator:a7c54c83af3dfeddf2a70dba5ca6cc1d1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_types_classxmlpp_1_1Node"><td colspan="2" onclick="javascript:toggleInherit('pub_types_classxmlpp_1_1Node')"><img src="closed.png" alt="-"/>&#160;Public Types inherited from <a class="el" href="classxmlpp_1_1Node.html">xmlpp::Node</a></td></tr>
<tr class="memitem:a7b0205c6df142d060dfca9119fadff49 inherit pub_types_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top">typedef <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00464.html">std::list</a>&lt; <a class="el" href="classxmlpp_1_1Node.html">Node</a>* &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#a7b0205c6df142d060dfca9119fadff49">NodeList</a></td></tr>
<tr class="separator:a7b0205c6df142d060dfca9119fadff49 inherit pub_types_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0175dca099d30f45ebbfd6a238420426 inherit pub_types_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top">typedef <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00825.html">std::map</a>&lt; <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>, <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#a0175dca099d30f45ebbfd6a238420426">PrefixNsMap</a></td></tr>
<tr class="memdesc:a0175dca099d30f45ebbfd6a238420426 inherit pub_types_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">A map of namespace prefixes to namespace URIs.  <a href="#a0175dca099d30f45ebbfd6a238420426">More...</a><br /></td></tr>
<tr class="separator:a0175dca099d30f45ebbfd6a238420426 inherit pub_types_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><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:addce07f26b8ca52beb583d942375a756"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Element.html#addce07f26b8ca52beb583d942375a756">Element</a> (_xmlNode* node)</td></tr>
<tr class="separator:addce07f26b8ca52beb583d942375a756"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2cdba1990c4620a4b02b4fcd4a4afa2d"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Element.html#a2cdba1990c4620a4b02b4fcd4a4afa2d">~Element</a> () override</td></tr>
<tr class="separator:a2cdba1990c4620a4b02b4fcd4a4afa2d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a422cf7abd2dcc7da5a465f9b6afffd05"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classxmlpp_1_1CdataNode.html">CdataNode</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Element.html#a422cf7abd2dcc7da5a465f9b6afffd05">add_child_cdata</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; content)</td></tr>
<tr class="memdesc:a422cf7abd2dcc7da5a465f9b6afffd05"><td class="mdescLeft">&#160;</td><td class="mdescRight">Append a new CDATA node.  <a href="#a422cf7abd2dcc7da5a465f9b6afffd05">More...</a><br /></td></tr>
<tr class="separator:a422cf7abd2dcc7da5a465f9b6afffd05"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af69479710a4ab4cd8e89703a20dd360e"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classxmlpp_1_1CommentNode.html">CommentNode</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Element.html#af69479710a4ab4cd8e89703a20dd360e">add_child_comment</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; content)</td></tr>
<tr class="memdesc:af69479710a4ab4cd8e89703a20dd360e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Append a new comment node.  <a href="#af69479710a4ab4cd8e89703a20dd360e">More...</a><br /></td></tr>
<tr class="separator:af69479710a4ab4cd8e89703a20dd360e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3a9aa8bc8745eb2521f705c1d468cc85"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classxmlpp_1_1EntityReference.html">EntityReference</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Element.html#a3a9aa8bc8745eb2521f705c1d468cc85">add_child_entity_reference</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; name)</td></tr>
<tr class="memdesc:a3a9aa8bc8745eb2521f705c1d468cc85"><td class="mdescLeft">&#160;</td><td class="mdescRight">Append a new entity reference node.  <a href="#a3a9aa8bc8745eb2521f705c1d468cc85">More...</a><br /></td></tr>
<tr class="separator:a3a9aa8bc8745eb2521f705c1d468cc85"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1fec4ad7b2f01d71606432ab9dfc27dd"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classxmlpp_1_1ProcessingInstructionNode.html">ProcessingInstructionNode</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Element.html#a1fec4ad7b2f01d71606432ab9dfc27dd">add_child_processing_instruction</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; name, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; content)</td></tr>
<tr class="memdesc:a1fec4ad7b2f01d71606432ab9dfc27dd"><td class="mdescLeft">&#160;</td><td class="mdescRight">Append a new processing instruction node.  <a href="#a1fec4ad7b2f01d71606432ab9dfc27dd">More...</a><br /></td></tr>
<tr class="separator:a1fec4ad7b2f01d71606432ab9dfc27dd"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a15cd56e871aaf9625b7f4fbedb97c764"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classxmlpp_1_1TextNode.html">TextNode</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Element.html#a15cd56e871aaf9625b7f4fbedb97c764">add_child_text</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; content=<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>())</td></tr>
<tr class="memdesc:a15cd56e871aaf9625b7f4fbedb97c764"><td class="mdescLeft">&#160;</td><td class="mdescRight">Append a new text node.  <a href="#a15cd56e871aaf9625b7f4fbedb97c764">More...</a><br /></td></tr>
<tr class="separator:a15cd56e871aaf9625b7f4fbedb97c764"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:af774512e6c39e8e6741a0ff7bf9250f5"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classxmlpp_1_1TextNode.html">TextNode</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Element.html#af774512e6c39e8e6741a0ff7bf9250f5">add_child_text</a> (<a class="el" href="classxmlpp_1_1Node.html">xmlpp::Node</a>* previous_sibling, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; content=<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>())</td></tr>
<tr class="memdesc:af774512e6c39e8e6741a0ff7bf9250f5"><td class="mdescLeft">&#160;</td><td class="mdescRight">Add a new text node after the specified existing child node.  <a href="#af774512e6c39e8e6741a0ff7bf9250f5">More...</a><br /></td></tr>
<tr class="separator:af774512e6c39e8e6741a0ff7bf9250f5"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa05dee4b080f6e3c709397a48ad2a34e"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classxmlpp_1_1TextNode.html">TextNode</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Element.html#aa05dee4b080f6e3c709397a48ad2a34e">add_child_text_before</a> (<a class="el" href="classxmlpp_1_1Node.html">xmlpp::Node</a>* next_sibling, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; content=<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>())</td></tr>
<tr class="memdesc:aa05dee4b080f6e3c709397a48ad2a34e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Add a new text node before the specified existing child node.  <a href="#aa05dee4b080f6e3c709397a48ad2a34e">More...</a><br /></td></tr>
<tr class="separator:aa05dee4b080f6e3c709397a48ad2a34e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a21fcf0bb1ee913fb698d2ab8911dda77"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classxmlpp_1_1Attribute.html">Attribute</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Element.html#a21fcf0bb1ee913fb698d2ab8911dda77">get_attribute</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; name, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; ns_prefix=<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>()) const </td></tr>
<tr class="memdesc:a21fcf0bb1ee913fb698d2ab8911dda77"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the attribute with this name, and optionally with this namespace.  <a href="#a21fcf0bb1ee913fb698d2ab8911dda77">More...</a><br /></td></tr>
<tr class="separator:a21fcf0bb1ee913fb698d2ab8911dda77"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8ae47935bca05ac2a6f0d8b02221a6b1"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Element.html#a8ae47935bca05ac2a6f0d8b02221a6b1">get_attribute_value</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; name, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; ns_prefix=<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>()) const </td></tr>
<tr class="memdesc:a8ae47935bca05ac2a6f0d8b02221a6b1"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the value of the attribute with this name, and optionally with this namespace.  <a href="#a8ae47935bca05ac2a6f0d8b02221a6b1">More...</a><br /></td></tr>
<tr class="separator:a8ae47935bca05ac2a6f0d8b02221a6b1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8fbb85e7ecabc5a8b9b39638f94e4fb7"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classxmlpp_1_1Element.html#a7c54c83af3dfeddf2a70dba5ca6cc1d1">AttributeList</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Element.html#a8fbb85e7ecabc5a8b9b39638f94e4fb7">get_attributes</a> ()</td></tr>
<tr class="memdesc:a8fbb85e7ecabc5a8b9b39638f94e4fb7"><td class="mdescLeft">&#160;</td><td class="mdescRight">Obtain the list of explicitly set attributes for this element.  <a href="#a8fbb85e7ecabc5a8b9b39638f94e4fb7">More...</a><br /></td></tr>
<tr class="separator:a8fbb85e7ecabc5a8b9b39638f94e4fb7"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afc9883eee2a4fb0584a60b21b5d2673b"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classxmlpp_1_1Element.html#a7c54c83af3dfeddf2a70dba5ca6cc1d1">AttributeList</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Element.html#afc9883eee2a4fb0584a60b21b5d2673b">get_attributes</a> () const </td></tr>
<tr class="memdesc:afc9883eee2a4fb0584a60b21b5d2673b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Obtain the list of explicitly set attributes for this element.  <a href="#afc9883eee2a4fb0584a60b21b5d2673b">More...</a><br /></td></tr>
<tr class="separator:afc9883eee2a4fb0584a60b21b5d2673b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a71885eacc99a1e7812b47d3d0607423a"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classxmlpp_1_1TextNode.html">TextNode</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Element.html#a71885eacc99a1e7812b47d3d0607423a">get_child_text</a> ()</td></tr>
<tr class="memdesc:a71885eacc99a1e7812b47d3d0607423a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the first child text content node.  <a href="#a71885eacc99a1e7812b47d3d0607423a">More...</a><br /></td></tr>
<tr class="separator:a71885eacc99a1e7812b47d3d0607423a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0a2326904a79f2e2abb5c91a4107fa6f"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classxmlpp_1_1TextNode.html">TextNode</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Element.html#a0a2326904a79f2e2abb5c91a4107fa6f">get_child_text</a> () const </td></tr>
<tr class="memdesc:a0a2326904a79f2e2abb5c91a4107fa6f"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the first child text content node.  <a href="#a0a2326904a79f2e2abb5c91a4107fa6f">More...</a><br /></td></tr>
<tr class="separator:a0a2326904a79f2e2abb5c91a4107fa6f"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a40d1299122bd9921fcb544ca1236aa95"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Element.html#a40d1299122bd9921fcb544ca1236aa95">has_child_text</a> () const </td></tr>
<tr class="memdesc:a40d1299122bd9921fcb544ca1236aa95"><td class="mdescLeft">&#160;</td><td class="mdescRight">Discover whether one of the child nodes is a text node.  <a href="#a40d1299122bd9921fcb544ca1236aa95">More...</a><br /></td></tr>
<tr class="separator:a40d1299122bd9921fcb544ca1236aa95"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3d5765f07699dc8d4d55c0b0157defad"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Element.html#a3d5765f07699dc8d4d55c0b0157defad">remove_attribute</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; name, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; ns_prefix=<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>())</td></tr>
<tr class="memdesc:a3d5765f07699dc8d4d55c0b0157defad"><td class="mdescLeft">&#160;</td><td class="mdescRight">Remove the attribute with this name, and optionally with this namespace.  <a href="#a3d5765f07699dc8d4d55c0b0157defad">More...</a><br /></td></tr>
<tr class="separator:a3d5765f07699dc8d4d55c0b0157defad"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a359b10f76db129fff5776c8405ac8e9a"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classxmlpp_1_1Attribute.html">Attribute</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Element.html#a359b10f76db129fff5776c8405ac8e9a">set_attribute</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; name, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; value, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; ns_prefix=<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>())</td></tr>
<tr class="memdesc:a359b10f76db129fff5776c8405ac8e9a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the value of the attribute with this name, and optionally with this namespace.  <a href="#a359b10f76db129fff5776c8405ac8e9a">More...</a><br /></td></tr>
<tr class="separator:a359b10f76db129fff5776c8405ac8e9a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9be4234049fe13f2941d9c7a5dbc37e2"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Element.html#a9be4234049fe13f2941d9c7a5dbc37e2">set_child_text</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; content)</td></tr>
<tr class="memdesc:a9be4234049fe13f2941d9c7a5dbc37e2"><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the text of the first text node, adding one if necessary.  <a href="#a9be4234049fe13f2941d9c7a5dbc37e2">More...</a><br /></td></tr>
<tr class="separator:a9be4234049fe13f2941d9c7a5dbc37e2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a801e28a85e4c45d145d056c5ff7186f3"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Element.html#a801e28a85e4c45d145d056c5ff7186f3">set_namespace_declaration</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; ns_uri, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; ns_prefix=<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>())</td></tr>
<tr class="memdesc:a801e28a85e4c45d145d056c5ff7186f3"><td class="mdescLeft">&#160;</td><td class="mdescRight">Add a namespace declaration to this node which will apply to this node and all children.  <a href="#a801e28a85e4c45d145d056c5ff7186f3">More...</a><br /></td></tr>
<tr class="separator:a801e28a85e4c45d145d056c5ff7186f3"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_classxmlpp_1_1Node"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classxmlpp_1_1Node')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classxmlpp_1_1Node.html">xmlpp::Node</a></td></tr>
<tr class="memitem:a215d8c01b6b01596c4ea853f99dce8e7 inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#a215d8c01b6b01596c4ea853f99dce8e7">Node</a> (_xmlNode* node)</td></tr>
<tr class="separator:a215d8c01b6b01596c4ea853f99dce8e7 inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aed8dc1eea15e3e1ac42b43a49c3016ba inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#aed8dc1eea15e3e1ac42b43a49c3016ba">~Node</a> () override</td></tr>
<tr class="separator:aed8dc1eea15e3e1ac42b43a49c3016ba inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac56c54f8006cbfb545642cbf2e96bc4a inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classxmlpp_1_1Element.html">Element</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#ac56c54f8006cbfb545642cbf2e96bc4a">add_child</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; name, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; ns_prefix=<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>())</td></tr>
<tr class="memdesc:ac56c54f8006cbfb545642cbf2e96bc4a inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Add a child element to this node.  <a href="#ac56c54f8006cbfb545642cbf2e96bc4a">More...</a><br /></td></tr>
<tr class="separator:ac56c54f8006cbfb545642cbf2e96bc4a inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a57bc6d6c941f1477a2445609d49ce645 inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classxmlpp_1_1Element.html">Element</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#a57bc6d6c941f1477a2445609d49ce645">add_child</a> (<a class="el" href="classxmlpp_1_1Node.html">xmlpp::Node</a>* previous_sibling, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; name, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; ns_prefix=<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>())</td></tr>
<tr class="memdesc:a57bc6d6c941f1477a2445609d49ce645 inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Add a child element to this node after the specified existing child node.  <a href="#a57bc6d6c941f1477a2445609d49ce645">More...</a><br /></td></tr>
<tr class="separator:a57bc6d6c941f1477a2445609d49ce645 inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9dff93a466cfbeda0357dfc9a3bd316c inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classxmlpp_1_1Element.html">Element</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#a9dff93a466cfbeda0357dfc9a3bd316c">add_child_before</a> (<a class="el" href="classxmlpp_1_1Node.html">xmlpp::Node</a>* next_sibling, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; name, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; ns_prefix=<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>())</td></tr>
<tr class="memdesc:a9dff93a466cfbeda0357dfc9a3bd316c inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Add a child element to this node before the specified existing child node.  <a href="#a9dff93a466cfbeda0357dfc9a3bd316c">More...</a><br /></td></tr>
<tr class="separator:a9dff93a466cfbeda0357dfc9a3bd316c inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a156ccad85c38eafa123b961d75b555a2 inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classxmlpp_1_1Element.html">Element</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#a156ccad85c38eafa123b961d75b555a2">add_child_before_with_new_ns</a> (<a class="el" href="classxmlpp_1_1Node.html">xmlpp::Node</a>* next_sibling, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; name, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; ns_uri, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; ns_prefix=<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>())</td></tr>
<tr class="memdesc:a156ccad85c38eafa123b961d75b555a2 inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Add a child element to this node before the specified existing child node.  <a href="#a156ccad85c38eafa123b961d75b555a2">More...</a><br /></td></tr>
<tr class="separator:a156ccad85c38eafa123b961d75b555a2 inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1f160d71f2da9394eabcbf7133295373 inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classxmlpp_1_1Element.html">Element</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#a1f160d71f2da9394eabcbf7133295373">add_child_with_new_ns</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; name, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; ns_uri, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; ns_prefix=<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>())</td></tr>
<tr class="memdesc:a1f160d71f2da9394eabcbf7133295373 inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Add a child element to this node.  <a href="#a1f160d71f2da9394eabcbf7133295373">More...</a><br /></td></tr>
<tr class="separator:a1f160d71f2da9394eabcbf7133295373 inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2fe5c9f57bfbc11693eb2507a84f5cb3 inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classxmlpp_1_1Element.html">Element</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#a2fe5c9f57bfbc11693eb2507a84f5cb3">add_child_with_new_ns</a> (<a class="el" href="classxmlpp_1_1Node.html">xmlpp::Node</a>* previous_sibling, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; name, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; ns_uri, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; ns_prefix=<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>())</td></tr>
<tr class="memdesc:a2fe5c9f57bfbc11693eb2507a84f5cb3 inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Add a child element to this node after the specified existing child node.  <a href="#a2fe5c9f57bfbc11693eb2507a84f5cb3">More...</a><br /></td></tr>
<tr class="separator:a2fe5c9f57bfbc11693eb2507a84f5cb3 inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aeede250f5cf6de5f55cb7bb94084ec7c inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top">_xmlNode*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#aeede250f5cf6de5f55cb7bb94084ec7c">cobj</a> ()</td></tr>
<tr class="memdesc:aeede250f5cf6de5f55cb7bb94084ec7c inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Access the underlying libxml implementation.  <a href="#aeede250f5cf6de5f55cb7bb94084ec7c">More...</a><br /></td></tr>
<tr class="separator:aeede250f5cf6de5f55cb7bb94084ec7c inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a831eea0dbe1e51a350a9b20a2da47fc9 inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top">const _xmlNode*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#a831eea0dbe1e51a350a9b20a2da47fc9">cobj</a> () const </td></tr>
<tr class="memdesc:a831eea0dbe1e51a350a9b20a2da47fc9 inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Access the underlying libxml implementation.  <a href="#a831eea0dbe1e51a350a9b20a2da47fc9">More...</a><br /></td></tr>
<tr class="separator:a831eea0dbe1e51a350a9b20a2da47fc9 inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae8988c7f4e67edefb937f5447885f93a inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#ae8988c7f4e67edefb937f5447885f93a">eval_to_boolean</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; xpath, <a class="el" href="namespacexmlpp.html#ac91075edf569a213343d7d13ae4be3c8">XPathResultType</a>* result_type=nullptr) const </td></tr>
<tr class="memdesc:ae8988c7f4e67edefb937f5447885f93a inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Evaluate an XPath expression.  <a href="#ae8988c7f4e67edefb937f5447885f93a">More...</a><br /></td></tr>
<tr class="separator:ae8988c7f4e67edefb937f5447885f93a inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a34f9662bb9799899f7d8553ce8905fbe inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#a34f9662bb9799899f7d8553ce8905fbe">eval_to_boolean</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; xpath, const <a class="el" href="classxmlpp_1_1Node.html#a0175dca099d30f45ebbfd6a238420426">PrefixNsMap</a>&amp; namespaces, <a class="el" href="namespacexmlpp.html#ac91075edf569a213343d7d13ae4be3c8">XPathResultType</a>* result_type=nullptr) const </td></tr>
<tr class="memdesc:a34f9662bb9799899f7d8553ce8905fbe inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Evaluate an XPath expression.  <a href="#a34f9662bb9799899f7d8553ce8905fbe">More...</a><br /></td></tr>
<tr class="separator:a34f9662bb9799899f7d8553ce8905fbe inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a47b9e43f49cdf34dd8c6f1c29c3515c5 inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top">double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#a47b9e43f49cdf34dd8c6f1c29c3515c5">eval_to_number</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; xpath, <a class="el" href="namespacexmlpp.html#ac91075edf569a213343d7d13ae4be3c8">XPathResultType</a>* result_type=nullptr) const </td></tr>
<tr class="memdesc:a47b9e43f49cdf34dd8c6f1c29c3515c5 inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Evaluate an XPath expression.  <a href="#a47b9e43f49cdf34dd8c6f1c29c3515c5">More...</a><br /></td></tr>
<tr class="separator:a47b9e43f49cdf34dd8c6f1c29c3515c5 inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:afccccafd8aec8ad99f97646473e5040b inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top">double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#afccccafd8aec8ad99f97646473e5040b">eval_to_number</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; xpath, const <a class="el" href="classxmlpp_1_1Node.html#a0175dca099d30f45ebbfd6a238420426">PrefixNsMap</a>&amp; namespaces, <a class="el" href="namespacexmlpp.html#ac91075edf569a213343d7d13ae4be3c8">XPathResultType</a>* result_type=nullptr) const </td></tr>
<tr class="memdesc:afccccafd8aec8ad99f97646473e5040b inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Evaluate an XPath expression.  <a href="#afccccafd8aec8ad99f97646473e5040b">More...</a><br /></td></tr>
<tr class="separator:afccccafd8aec8ad99f97646473e5040b inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abb70aab3d697af6c5ce6b74c4b4efc42 inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#abb70aab3d697af6c5ce6b74c4b4efc42">eval_to_string</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; xpath, <a class="el" href="namespacexmlpp.html#ac91075edf569a213343d7d13ae4be3c8">XPathResultType</a>* result_type=nullptr) const </td></tr>
<tr class="memdesc:abb70aab3d697af6c5ce6b74c4b4efc42 inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Evaluate an XPath expression.  <a href="#abb70aab3d697af6c5ce6b74c4b4efc42">More...</a><br /></td></tr>
<tr class="separator:abb70aab3d697af6c5ce6b74c4b4efc42 inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a32deb54bf7aeb60ed72311bb482d2037 inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#a32deb54bf7aeb60ed72311bb482d2037">eval_to_string</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; xpath, const <a class="el" href="classxmlpp_1_1Node.html#a0175dca099d30f45ebbfd6a238420426">PrefixNsMap</a>&amp; namespaces, <a class="el" href="namespacexmlpp.html#ac91075edf569a213343d7d13ae4be3c8">XPathResultType</a>* result_type=nullptr) const </td></tr>
<tr class="memdesc:a32deb54bf7aeb60ed72311bb482d2037 inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Evaluate an XPath expression.  <a href="#a32deb54bf7aeb60ed72311bb482d2037">More...</a><br /></td></tr>
<tr class="separator:a32deb54bf7aeb60ed72311bb482d2037 inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a25e56c6ae44be0926d1efcc7e488d96f inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top"><a class="el" href="namespacexmlpp.html#a649baf2bb62274444784ffb180b3f34c">NodeSet</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#a25e56c6ae44be0926d1efcc7e488d96f">find</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; xpath) const </td></tr>
<tr class="memdesc:a25e56c6ae44be0926d1efcc7e488d96f inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Find nodes from an XPath expression.  <a href="#a25e56c6ae44be0926d1efcc7e488d96f">More...</a><br /></td></tr>
<tr class="separator:a25e56c6ae44be0926d1efcc7e488d96f inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4bfbd6ed354524c960d6cd425c534c7c inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top"><a class="el" href="namespacexmlpp.html#a649baf2bb62274444784ffb180b3f34c">NodeSet</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#a4bfbd6ed354524c960d6cd425c534c7c">find</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; xpath, const <a class="el" href="classxmlpp_1_1Node.html#a0175dca099d30f45ebbfd6a238420426">PrefixNsMap</a>&amp; namespaces) const </td></tr>
<tr class="memdesc:a4bfbd6ed354524c960d6cd425c534c7c inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Find nodes from an XPath expression.  <a href="#a4bfbd6ed354524c960d6cd425c534c7c">More...</a><br /></td></tr>
<tr class="separator:a4bfbd6ed354524c960d6cd425c534c7c inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abb9d4d7aad234b9b01ae7fe404915a95 inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classxmlpp_1_1Node.html#a7b0205c6df142d060dfca9119fadff49">NodeList</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#abb9d4d7aad234b9b01ae7fe404915a95">get_children</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; name=<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>())</td></tr>
<tr class="memdesc:abb9d4d7aad234b9b01ae7fe404915a95 inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Obtain the list of child nodes.  <a href="#abb9d4d7aad234b9b01ae7fe404915a95">More...</a><br /></td></tr>
<tr class="separator:abb9d4d7aad234b9b01ae7fe404915a95 inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2cb9f082c7bebc349c1f606e69788a57 inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classxmlpp_1_1Node.html#a7b0205c6df142d060dfca9119fadff49">NodeList</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#a2cb9f082c7bebc349c1f606e69788a57">get_children</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; name=<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>()) const </td></tr>
<tr class="memdesc:a2cb9f082c7bebc349c1f606e69788a57 inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Obtain the list of child nodes.  <a href="#a2cb9f082c7bebc349c1f606e69788a57">More...</a><br /></td></tr>
<tr class="separator:a2cb9f082c7bebc349c1f606e69788a57 inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a0e244ac3573fc927bcb0f70d6b70f5d2 inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classxmlpp_1_1Node.html">Node</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#a0e244ac3573fc927bcb0f70d6b70f5d2">get_first_child</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; name=<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>()) const </td></tr>
<tr class="memdesc:a0e244ac3573fc927bcb0f70d6b70f5d2 inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the first child of this node.  <a href="#a0e244ac3573fc927bcb0f70d6b70f5d2">More...</a><br /></td></tr>
<tr class="separator:a0e244ac3573fc927bcb0f70d6b70f5d2 inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5eb1d1e3d4616604da7cf58da15b6fa7 inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classxmlpp_1_1Node.html">Node</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#a5eb1d1e3d4616604da7cf58da15b6fa7">get_first_child</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; name=<a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>())</td></tr>
<tr class="memdesc:a5eb1d1e3d4616604da7cf58da15b6fa7 inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the first child of this node.  <a href="#a5eb1d1e3d4616604da7cf58da15b6fa7">More...</a><br /></td></tr>
<tr class="separator:a5eb1d1e3d4616604da7cf58da15b6fa7 inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5e21f3a9996e25bd2df5ec8ce9906575 inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#a5e21f3a9996e25bd2df5ec8ce9906575">get_line</a> () const </td></tr>
<tr class="memdesc:a5e21f3a9996e25bd2df5ec8ce9906575 inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Discover at what line number this node occurs in the XML file.  <a href="#a5e21f3a9996e25bd2df5ec8ce9906575">More...</a><br /></td></tr>
<tr class="separator:a5e21f3a9996e25bd2df5ec8ce9906575 inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad8cba86cb7f43dd512f5b6817ed47d9a inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#ad8cba86cb7f43dd512f5b6817ed47d9a">get_name</a> () const </td></tr>
<tr class="memdesc:ad8cba86cb7f43dd512f5b6817ed47d9a inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the name of this node.  <a href="#ad8cba86cb7f43dd512f5b6817ed47d9a">More...</a><br /></td></tr>
<tr class="separator:ad8cba86cb7f43dd512f5b6817ed47d9a inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a06790680c79808f1a56ddea438a6df5c inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#a06790680c79808f1a56ddea438a6df5c">get_namespace_prefix</a> () const </td></tr>
<tr class="memdesc:a06790680c79808f1a56ddea438a6df5c inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the namespace prefix of this node.  <a href="#a06790680c79808f1a56ddea438a6df5c">More...</a><br /></td></tr>
<tr class="separator:a06790680c79808f1a56ddea438a6df5c inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9356e5ee02dbc809f9bf139b12befc6c inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#a9356e5ee02dbc809f9bf139b12befc6c">get_namespace_uri</a> () const </td></tr>
<tr class="memdesc:a9356e5ee02dbc809f9bf139b12befc6c inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the namespace URI of this node.  <a href="#a9356e5ee02dbc809f9bf139b12befc6c">More...</a><br /></td></tr>
<tr class="separator:a9356e5ee02dbc809f9bf139b12befc6c inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a59a3e52fd752c243654a2cb58b1b0e18 inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classxmlpp_1_1Node.html">Node</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#a59a3e52fd752c243654a2cb58b1b0e18">get_next_sibling</a> () const </td></tr>
<tr class="memdesc:a59a3e52fd752c243654a2cb58b1b0e18 inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the next sibling for this node.  <a href="#a59a3e52fd752c243654a2cb58b1b0e18">More...</a><br /></td></tr>
<tr class="separator:a59a3e52fd752c243654a2cb58b1b0e18 inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2576ce35a6a3dd13b49e857524360ac4 inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classxmlpp_1_1Node.html">Node</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#a2576ce35a6a3dd13b49e857524360ac4">get_next_sibling</a> ()</td></tr>
<tr class="memdesc:a2576ce35a6a3dd13b49e857524360ac4 inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the next sibling for this node.  <a href="#a2576ce35a6a3dd13b49e857524360ac4">More...</a><br /></td></tr>
<tr class="separator:a2576ce35a6a3dd13b49e857524360ac4 inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa8a68ac1887a33e44e3af365bd02db1b inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classxmlpp_1_1Element.html">Element</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#aa8a68ac1887a33e44e3af365bd02db1b">get_parent</a> () const </td></tr>
<tr class="memdesc:aa8a68ac1887a33e44e3af365bd02db1b inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the parent element for this node.  <a href="#aa8a68ac1887a33e44e3af365bd02db1b">More...</a><br /></td></tr>
<tr class="separator:aa8a68ac1887a33e44e3af365bd02db1b inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a998e8cb924bd04abf72e57b68d2817f4 inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classxmlpp_1_1Element.html">Element</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#a998e8cb924bd04abf72e57b68d2817f4">get_parent</a> ()</td></tr>
<tr class="memdesc:a998e8cb924bd04abf72e57b68d2817f4 inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the parent element for this node.  <a href="#a998e8cb924bd04abf72e57b68d2817f4">More...</a><br /></td></tr>
<tr class="separator:a998e8cb924bd04abf72e57b68d2817f4 inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad05b43e18a4600ada423b74a59efb541 inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#ad05b43e18a4600ada423b74a59efb541">get_path</a> () const </td></tr>
<tr class="memdesc:ad05b43e18a4600ada423b74a59efb541 inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the XPath of this node.  <a href="#ad05b43e18a4600ada423b74a59efb541">More...</a><br /></td></tr>
<tr class="separator:ad05b43e18a4600ada423b74a59efb541 inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa3ca83ba6e10ff21060be5d0441fa6ac inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classxmlpp_1_1Node.html">Node</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#aa3ca83ba6e10ff21060be5d0441fa6ac">get_previous_sibling</a> () const </td></tr>
<tr class="memdesc:aa3ca83ba6e10ff21060be5d0441fa6ac inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the previous sibling for this node .  <a href="#aa3ca83ba6e10ff21060be5d0441fa6ac">More...</a><br /></td></tr>
<tr class="separator:aa3ca83ba6e10ff21060be5d0441fa6ac inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a567be4ebaffb2cd3dd2ae602c8df4a29 inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classxmlpp_1_1Node.html">Node</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#a567be4ebaffb2cd3dd2ae602c8df4a29">get_previous_sibling</a> ()</td></tr>
<tr class="memdesc:a567be4ebaffb2cd3dd2ae602c8df4a29 inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Get the previous sibling for this node.  <a href="#a567be4ebaffb2cd3dd2ae602c8df4a29">More...</a><br /></td></tr>
<tr class="separator:a567be4ebaffb2cd3dd2ae602c8df4a29 inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aea42eae72fa7901aa1fb8f5c0fd194ec inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classxmlpp_1_1Node.html">Node</a>*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#aea42eae72fa7901aa1fb8f5c0fd194ec">import_node</a> (const <a class="el" href="classxmlpp_1_1Node.html">Node</a>* node, bool recursive=true)</td></tr>
<tr class="memdesc:aea42eae72fa7901aa1fb8f5c0fd194ec inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Import node(s) from another document under this node, without affecting the source node.  <a href="#aea42eae72fa7901aa1fb8f5c0fd194ec">More...</a><br /></td></tr>
<tr class="separator:aea42eae72fa7901aa1fb8f5c0fd194ec inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a00ccfb39d9b6d82b5acd5f458c8f8ca8 inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#a00ccfb39d9b6d82b5acd5f458c8f8ca8">remove_child</a> (<a class="el" href="classxmlpp_1_1Node.html">Node</a>* node)</td></tr>
<tr class="memdesc:a00ccfb39d9b6d82b5acd5f458c8f8ca8 inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Remove the child node.  <a href="#a00ccfb39d9b6d82b5acd5f458c8f8ca8">More...</a><br /></td></tr>
<tr class="separator:a00ccfb39d9b6d82b5acd5f458c8f8ca8 inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab5e1b1059a2af0818b1a8937fad49835 inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#ab5e1b1059a2af0818b1a8937fad49835">set_name</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; name)</td></tr>
<tr class="memdesc:ab5e1b1059a2af0818b1a8937fad49835 inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the name of this node.  <a href="#ab5e1b1059a2af0818b1a8937fad49835">More...</a><br /></td></tr>
<tr class="separator:ab5e1b1059a2af0818b1a8937fad49835 inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4ddefaaaf3f0b550e776e9100bc23257 inherit pub_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#a4ddefaaaf3f0b550e776e9100bc23257">set_namespace</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; ns_prefix)</td></tr>
<tr class="memdesc:a4ddefaaaf3f0b550e776e9100bc23257 inherit pub_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Set the namespace prefix used by the node.  <a href="#a4ddefaaaf3f0b550e776e9100bc23257">More...</a><br /></td></tr>
<tr class="separator:a4ddefaaaf3f0b550e776e9100bc23257 inherit pub_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr class="memitem:af4c996b3eed332ed7e4e3096427e624d"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Element.html#af4c996b3eed332ed7e4e3096427e624d">get_namespace_uri_for_prefix</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; ns_prefix) const </td></tr>
<tr class="separator:af4c996b3eed332ed7e4e3096427e624d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_methods_classxmlpp_1_1Node"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classxmlpp_1_1Node')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="classxmlpp_1_1Node.html">xmlpp::Node</a></td></tr>
<tr class="memitem:af8d31aaa506d229651e8328f8294f5df inherit pro_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top">_xmlNode*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#af8d31aaa506d229651e8328f8294f5df">create_new_child_node</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; name, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; ns_prefix)</td></tr>
<tr class="memdesc:af8d31aaa506d229651e8328f8294f5df inherit pro_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the C instance ready to be added to the parent node.  <a href="#af8d31aaa506d229651e8328f8294f5df">More...</a><br /></td></tr>
<tr class="separator:af8d31aaa506d229651e8328f8294f5df inherit pro_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8b7defd7eaf5909122ca354549745f2f inherit pro_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top">_xmlNode*&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#a8b7defd7eaf5909122ca354549745f2f">create_new_child_node_with_new_ns</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; name, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; ns_uri, const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>&amp; ns_prefix)</td></tr>
<tr class="memdesc:a8b7defd7eaf5909122ca354549745f2f inherit pro_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Create the C instance ready to be added to the parent node.  <a href="#a8b7defd7eaf5909122ca354549745f2f">More...</a><br /></td></tr>
<tr class="separator:a8b7defd7eaf5909122ca354549745f2f inherit pro_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_methods_classxmlpp_1_1NonCopyable"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classxmlpp_1_1NonCopyable')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="classxmlpp_1_1NonCopyable.html">xmlpp::NonCopyable</a></td></tr>
<tr class="memitem:a77c785ff1149642caa3058f49223f112 inherit pro_methods_classxmlpp_1_1NonCopyable"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1NonCopyable.html#a77c785ff1149642caa3058f49223f112">NonCopyable</a> ()</td></tr>
<tr class="separator:a77c785ff1149642caa3058f49223f112 inherit pro_methods_classxmlpp_1_1NonCopyable"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aded750a42a8acdd5ed63827c158f7763 inherit pro_methods_classxmlpp_1_1NonCopyable"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1NonCopyable.html#aded750a42a8acdd5ed63827c158f7763">NonCopyable</a> (const <a class="el" href="classxmlpp_1_1NonCopyable.html">NonCopyable</a>&amp;)=delete</td></tr>
<tr class="separator:aded750a42a8acdd5ed63827c158f7763 inherit pro_methods_classxmlpp_1_1NonCopyable"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a14e2e0391beb4b8f20f5d51e8a253d63 inherit pro_methods_classxmlpp_1_1NonCopyable"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1NonCopyable.html#a14e2e0391beb4b8f20f5d51e8a253d63">~NonCopyable</a> ()</td></tr>
<tr class="separator:a14e2e0391beb4b8f20f5d51e8a253d63 inherit pro_methods_classxmlpp_1_1NonCopyable"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adef35c286da3c2b8c90da9bb50aaddf1 inherit pro_methods_classxmlpp_1_1NonCopyable"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classxmlpp_1_1NonCopyable.html">NonCopyable</a>&amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1NonCopyable.html#adef35c286da3c2b8c90da9bb50aaddf1">operator=</a> (const <a class="el" href="classxmlpp_1_1NonCopyable.html">NonCopyable</a>&amp;)=delete</td></tr>
<tr class="separator:adef35c286da3c2b8c90da9bb50aaddf1 inherit pro_methods_classxmlpp_1_1NonCopyable"><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_classxmlpp_1_1Node"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classxmlpp_1_1Node')"><img src="closed.png" alt="-"/>&#160;Static Public Member Functions inherited from <a class="el" href="classxmlpp_1_1Node.html">xmlpp::Node</a></td></tr>
<tr class="memitem:a616a872d0fbd86206c0beee0be5abee3 inherit pub_static_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top">static void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#a616a872d0fbd86206c0beee0be5abee3">create_wrapper</a> (_xmlNode* node)</td></tr>
<tr class="memdesc:a616a872d0fbd86206c0beee0be5abee3 inherit pub_static_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Construct the correct C++ instance for a given libxml C struct instance.  <a href="#a616a872d0fbd86206c0beee0be5abee3">More...</a><br /></td></tr>
<tr class="separator:a616a872d0fbd86206c0beee0be5abee3 inherit pub_static_methods_classxmlpp_1_1Node"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa47901df78305a685fc9682cd44290d6 inherit pub_static_methods_classxmlpp_1_1Node"><td class="memItemLeft" align="right" valign="top">static void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classxmlpp_1_1Node.html#aa47901df78305a685fc9682cd44290d6">free_wrappers</a> (_xmlNode* node)</td></tr>
<tr class="memdesc:aa47901df78305a685fc9682cd44290d6 inherit pub_static_methods_classxmlpp_1_1Node"><td class="mdescLeft">&#160;</td><td class="mdescRight">Delete the C++ instance for a given libxml C struct instance, and also recursively destroy the C++ instances for any children.  <a href="#aa47901df78305a685fc9682cd44290d6">More...</a><br /></td></tr>
<tr class="separator:aa47901df78305a685fc9682cd44290d6 inherit pub_static_methods_classxmlpp_1_1Node"><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><a class="el" href="classxmlpp_1_1Element.html" title="Element nodes have attributes as well as child nodes. ">Element</a> nodes have attributes as well as child nodes. </p>
<p>This will be instantiated by the parser. </p>
</div><h2 class="groupheader">Member Typedef Documentation</h2>
<a class="anchor" id="a7c54c83af3dfeddf2a70dba5ca6cc1d1"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">typedef <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00464.html">std::list</a>&lt;<a class="el" href="classxmlpp_1_1Attribute.html">Attribute</a>*&gt; <a class="el" href="classxmlpp_1_1Element.html#a7c54c83af3dfeddf2a70dba5ca6cc1d1">xmlpp::Element::AttributeList</a></td>
        </tr>
      </table>
</div><div class="memdoc">

</div>
</div>
<h2 class="groupheader">Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="addce07f26b8ca52beb583d942375a756"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">xmlpp::Element::Element </td>
          <td>(</td>
          <td class="paramtype">_xmlNode *&#160;</td>
          <td class="paramname"><em>node</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">explicit</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="a2cdba1990c4620a4b02b4fcd4a4afa2d"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">xmlpp::Element::~Element </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">override</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="a422cf7abd2dcc7da5a465f9b6afffd05"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classxmlpp_1_1CdataNode.html">CdataNode</a>* xmlpp::Element::add_child_cdata </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"><em>content</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Append a new CDATA node. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">content</td><td>The raw text. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The new CDATA node. </dd></dl>
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classxmlpp_1_1internal__error.html">xmlpp::internal_error</a></td><td></td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="af69479710a4ab4cd8e89703a20dd360e"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classxmlpp_1_1CommentNode.html">CommentNode</a>* xmlpp::Element::add_child_comment </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"><em>content</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Append a new comment node. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">content</td><td>The text. This should be unescaped - see <a class="el" href="classxmlpp_1_1ContentNode.html#a2e9978caa82eb11cadccd4d5fc4e690a" title="Set the text of this content node. ">ContentNode::set_content()</a>. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The new comment node. </dd></dl>
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classxmlpp_1_1internal__error.html">xmlpp::internal_error</a></td><td></td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a3a9aa8bc8745eb2521f705c1d468cc85"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classxmlpp_1_1EntityReference.html">EntityReference</a>* xmlpp::Element::add_child_entity_reference </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"><em>name</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Append a new entity reference node. </p>
<p>The reference can be either an entity reference ("name" or "&amp;name;") or a character reference ("#dec", "#xhex", "&amp;#dec;", or "&amp;#xhex;").</p>
<p>'&amp;' and ';' are optional. If they exist, they are stripped from the stored copy of the name. <a class="el" href="classxmlpp_1_1Node.html#ad8cba86cb7f43dd512f5b6817ed47d9a" title="Get the name of this node. ">Node::get_name()</a> returns the name without '&amp;' and ';'. If the <a class="el" href="classxmlpp_1_1Document.html" title="Represents an XML document in the DOM model. ">Document</a> is written to an XML file, '&amp;' and ';' are written.</p>
<dl class="since_2_36"><dt><b><a class="el" href="since_2_36.html#_since_2_36000007">Since libxml++ 2.36:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">name</td><td>The name of the entity. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The new entity reference node. </dd></dl>
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classxmlpp_1_1internal__error.html">xmlpp::internal_error</a></td><td></td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a1fec4ad7b2f01d71606432ab9dfc27dd"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classxmlpp_1_1ProcessingInstructionNode.html">ProcessingInstructionNode</a>* xmlpp::Element::add_child_processing_instruction </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"><em>name</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"><em>content</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Append a new processing instruction node. </p>
<dl class="since_2_36"><dt><b><a class="el" href="since_2_36.html#_since_2_36000008">Since libxml++ 2.36:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">name</td><td>The name of the application to which the instruction is directed. </td></tr>
    <tr><td class="paramname">content</td><td>The content of the instruction. This should be unescaped - see <a class="el" href="classxmlpp_1_1ContentNode.html#a2e9978caa82eb11cadccd4d5fc4e690a" title="Set the text of this content node. ">ContentNode::set_content()</a>. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The new processing instruction node. </dd></dl>
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classxmlpp_1_1internal__error.html">xmlpp::internal_error</a></td><td></td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a15cd56e871aaf9625b7f4fbedb97c764"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classxmlpp_1_1TextNode.html">TextNode</a>* xmlpp::Element::add_child_text </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"><em>content</em> = <code><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>()</code></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Append a new text node. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">content</td><td>The text. This should be unescaped - see <a class="el" href="classxmlpp_1_1ContentNode.html#a2e9978caa82eb11cadccd4d5fc4e690a" title="Set the text of this content node. ">ContentNode::set_content()</a>. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The new text node. </dd></dl>
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classxmlpp_1_1internal__error.html">xmlpp::internal_error</a></td><td></td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="af774512e6c39e8e6741a0ff7bf9250f5"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classxmlpp_1_1TextNode.html">TextNode</a>* xmlpp::Element::add_child_text </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classxmlpp_1_1Node.html">xmlpp::Node</a>*&#160;</td>
          <td class="paramname"><em>previous_sibling</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"><em>content</em> = <code><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>()</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Add a new text node after the specified existing child node. </p>
<dl class="since_2_24"><dt><b><a class="el" href="since_2_24.html#_since_2_24000002">Since libxml++ 2.24:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">previous_sibling</td><td>An existing child node. </td></tr>
    <tr><td class="paramname">content</td><td>The text. This should be unescaped - see <a class="el" href="classxmlpp_1_1ContentNode.html#a2e9978caa82eb11cadccd4d5fc4e690a" title="Set the text of this content node. ">ContentNode::set_content()</a>. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The new text node. </dd></dl>
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classxmlpp_1_1internal__error.html">xmlpp::internal_error</a></td><td></td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="aa05dee4b080f6e3c709397a48ad2a34e"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classxmlpp_1_1TextNode.html">TextNode</a>* xmlpp::Element::add_child_text_before </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="classxmlpp_1_1Node.html">xmlpp::Node</a>*&#160;</td>
          <td class="paramname"><em>next_sibling</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"><em>content</em> = <code><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>()</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Add a new text node before the specified existing child node. </p>
<dl class="since_2_24"><dt><b><a class="el" href="since_2_24.html#_since_2_24000003">Since libxml++ 2.24:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">next_sibling</td><td>An existing child node. </td></tr>
    <tr><td class="paramname">content</td><td>The text. This should be unescaped - see <a class="el" href="classxmlpp_1_1ContentNode.html#a2e9978caa82eb11cadccd4d5fc4e690a" title="Set the text of this content node. ">ContentNode::set_content()</a>. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The new text node. </dd></dl>
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classxmlpp_1_1internal__error.html">xmlpp::internal_error</a></td><td></td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a21fcf0bb1ee913fb698d2ab8911dda77"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classxmlpp_1_1Attribute.html">Attribute</a>* xmlpp::Element::get_attribute </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"><em>name</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"><em>ns_prefix</em> = <code><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>()</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Get the attribute with this name, and optionally with this namespace. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">name</td><td>The name of the attribute that will be retrieved. </td></tr>
    <tr><td class="paramname">ns_prefix</td><td>Namespace prefix. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The attribute, or <code>nullptr</code> if no suitable <a class="el" href="classxmlpp_1_1Attribute.html" title="Represents an XML Node attribute. ">Attribute</a> was found. Is either an AttributeNode*, pointing to an explicitly set attribute, or an AttributeDeclaration*, pointing to the declaration of an attribute with a default value. </dd></dl>

</div>
</div>
<a class="anchor" id="a8ae47935bca05ac2a6f0d8b02221a6b1"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> xmlpp::Element::get_attribute_value </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"><em>name</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"><em>ns_prefix</em> = <code><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>()</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Get the value of the attribute with this name, and optionally with this namespace. </p>
<p>For finer control, you might use <a class="el" href="classxmlpp_1_1Element.html#a21fcf0bb1ee913fb698d2ab8911dda77" title="Get the attribute with this name, and optionally with this namespace. ">get_attribute()</a> and use the methods of the <a class="el" href="classxmlpp_1_1Attribute.html" title="Represents an XML Node attribute. ">Attribute</a> class. </p><dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">name</td><td>The name of the attribute whose value will be retrieved. </td></tr>
    <tr><td class="paramname">ns_prefix</td><td>Namespace prefix. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The text value of the attribute, or an empty string if no such attribute was found.</dd></dl>
<dl class="since_2_20"><dt><b><a class="el" href="since_2_20.html#_since_2_20000001">Since libxml++ 2.20:</a></b></dt><dd></dd></dl>

</div>
</div>
<a class="anchor" id="a8fbb85e7ecabc5a8b9b39638f94e4fb7"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classxmlpp_1_1Element.html#a7c54c83af3dfeddf2a70dba5ca6cc1d1">AttributeList</a> xmlpp::Element::get_attributes </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Obtain the list of explicitly set attributes for this element. </p>
<dl class="section return"><dt>Returns</dt><dd>The list of explicitly set attributes. </dd></dl>

</div>
</div>
<a class="anchor" id="afc9883eee2a4fb0584a60b21b5d2673b"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classxmlpp_1_1Element.html#a7c54c83af3dfeddf2a70dba5ca6cc1d1">AttributeList</a> xmlpp::Element::get_attributes </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Obtain the list of explicitly set attributes for this element. </p>
<dl class="section return"><dt>Returns</dt><dd>The list of explicitly set attributes. </dd></dl>

</div>
</div>
<a class="anchor" id="a71885eacc99a1e7812b47d3d0607423a"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classxmlpp_1_1TextNode.html">TextNode</a>* xmlpp::Element::get_child_text </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Get the first child text content node. </p>
<p>This is a convenience method, meant as an alternative to iterating over all the child nodes to find the first suitable node then and getting the text directly. </p><dl class="section return"><dt>Returns</dt><dd>The first text node, if any. </dd></dl>

</div>
</div>
<a class="anchor" id="a0a2326904a79f2e2abb5c91a4107fa6f"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">const <a class="el" href="classxmlpp_1_1TextNode.html">TextNode</a>* xmlpp::Element::get_child_text </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Get the first child text content node. </p>
<p>This is a convenience method, meant as an alternative to iterating over all the child nodes to find the first suitable node then and getting the text directly. </p><dl class="section return"><dt>Returns</dt><dd>The first text node, if any. </dd></dl>

</div>
</div>
<a class="anchor" id="af4c996b3eed332ed7e4e3096427e624d"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> xmlpp::Element::get_namespace_uri_for_prefix </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"><em>ns_prefix</em></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

</div>
</div>
<a class="anchor" id="a40d1299122bd9921fcb544ca1236aa95"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">bool xmlpp::Element::has_child_text </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Discover whether one of the child nodes is a text node. </p>
<p>This is a convenience method, meant as an alternative to iterating over all the child nodes and examining them directly. </p><dl class="section return"><dt>Returns</dt><dd>Whether this node has a child text node. </dd></dl>

</div>
</div>
<a class="anchor" id="a3d5765f07699dc8d4d55c0b0157defad"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void xmlpp::Element::remove_attribute </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"><em>name</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"><em>ns_prefix</em> = <code><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>()</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Remove the attribute with this name, and optionally with this namespace. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">name</td><td>The name of the attribute to be removed </td></tr>
    <tr><td class="paramname">ns_prefix</td><td>Namespace prefix. If specified, the attribute will be removed only if the attribute has this namespace. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a359b10f76db129fff5776c8405ac8e9a"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="classxmlpp_1_1Attribute.html">Attribute</a>* xmlpp::Element::set_attribute </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"><em>name</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"><em>value</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"><em>ns_prefix</em> = <code><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>()</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Set the value of the attribute with this name, and optionally with this namespace. </p>
<p>A matching attribute will be added if no matching attribute already exists. For finer control, you might want to use <a class="el" href="classxmlpp_1_1Element.html#a21fcf0bb1ee913fb698d2ab8911dda77" title="Get the attribute with this name, and optionally with this namespace. ">get_attribute()</a> and use the methods of the <a class="el" href="classxmlpp_1_1Attribute.html" title="Represents an XML Node attribute. ">Attribute</a> class. </p><dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">name</td><td>The name of the attribute whose value will change. </td></tr>
    <tr><td class="paramname">value</td><td>The new value for the attribute </td></tr>
    <tr><td class="paramname">ns_prefix</td><td>Namespace prefix. If the prefix has not been declared then this method will throw an exception. </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The attribute that was changed, or <code>nullptr</code> is no suitable <a class="el" href="classxmlpp_1_1Attribute.html" title="Represents an XML Node attribute. ">Attribute</a> was found. </dd></dl>
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classxmlpp_1_1exception.html" title="Base class for all xmlpp exceptions. ">xmlpp::exception</a></td><td></td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a9be4234049fe13f2941d9c7a5dbc37e2"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void xmlpp::Element::set_child_text </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"><em>content</em></td><td>)</td>
          <td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Set the text of the first text node, adding one if necessary. </p>
<p>This is a convenience method, meant as an alternative to iterating over all the child nodes to find the first suitable node then and setting the text directly. </p><dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">content</td><td>The text. This should be unescaped - see <a class="el" href="classxmlpp_1_1ContentNode.html#a2e9978caa82eb11cadccd4d5fc4e690a" title="Set the text of this content node. ">ContentNode::set_content()</a>. </td></tr>
  </table>
  </dd>
</dl>
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classxmlpp_1_1internal__error.html">xmlpp::internal_error</a></td><td></td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a801e28a85e4c45d145d056c5ff7186f3"></a>
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void xmlpp::Element::set_namespace_declaration </td>
          <td>(</td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"><em>ns_uri</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> &amp;&#160;</td>
          <td class="paramname"><em>ns_prefix</em> = <code><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>()</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
</div><div class="memdoc">

<p>Add a namespace declaration to this node which will apply to this node and all children. </p>
<p>If the added namespace prefix is equal to the prefix associated to the node, the associated namespace of the node itself is updated, but child nodes are not updated. If you use this method on a node after children have been added, it may be necessary to save the XML document and reparse it to get correct namespaces on all nodes.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">ns_uri</td><td>The namespace to associate with the prefix, or to use as the default namespace if no prefix is specified. </td></tr>
    <tr><td class="paramname">ns_prefix</td><td>The namespace prefix. If no prefix is specified then the namespace URI will be the default namespace. </td></tr>
  </table>
  </dd>
</dl>
<dl class="exception"><dt>Exceptions</dt><dd>
  <table class="exception">
    <tr><td class="paramname"><a class="el" href="classxmlpp_1_1exception.html" title="Base class for all xmlpp exceptions. ">xmlpp::exception</a></td><td>If a new namespace node cannot be created, e.g. because a namespace with the same prefix but another URI already exists. </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Wed Oct 28 2015 14:41:04 for libxml++ by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.9.1
</small></address>
</body>
</html>