1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882
|
<!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.7"/>
<title>glibmm: Gio::DataInputStream 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" />
</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">glibmm
 <span id="projectnumber">2.42.0</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.7 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="modules.html"><span>Modules</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>
<li><a href="examples.html"><span>Examples</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespaceGio.html">Gio</a></li><li class="navelem"><a class="el" href="classGio_1_1DataInputStream.html">DataInputStream</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pub-static-methods">Static Public Member Functions</a> |
<a href="#pro-methods">Protected Member Functions</a> |
<a href="#related">Related Functions</a> |
<a href="classGio_1_1DataInputStream-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">Gio::DataInputStream Class Reference<div class="ingroups"><a class="el" href="group__Streams.html">Stream Classes</a></div></div> </div>
</div><!--header-->
<div class="contents">
<p>An implementation of <a class="el" href="classGio_1_1BufferedInputStream.html" title="The buffered input stream implements FilterInputStream and provides for buffered reads. ">BufferedInputStream</a> that allows for high-level data manipulation of arbitrary data (including binary operations).
<a href="classGio_1_1DataInputStream.html#details">More...</a></p>
<p><code>#include <giomm/datainputstream.h></code></p>
<div class="dynheader">
Inheritance diagram for Gio::DataInputStream:</div>
<div class="dyncontent">
<div class="center"><img src="classGio_1_1DataInputStream__inherit__graph.png" border="0" usemap="#Gio_1_1DataInputStream_inherit__map" alt="Inheritance graph"/></div>
<map name="Gio_1_1DataInputStream_inherit__map" id="Gio_1_1DataInputStream_inherit__map">
<area shape="rect" id="node2" href="classGio_1_1BufferedInputStream.html" title="The buffered input stream implements FilterInputStream and provides for buffered reads. " alt="" coords="5,379,189,405"/><area shape="rect" id="node3" href="classGio_1_1FilterInputStream.html" title="Filter Input Stream. " alt="" coords="17,304,177,331"/><area shape="rect" id="node4" href="classGio_1_1InputStream.html" title="Base class for implementing streaming input. " alt="" coords="32,229,161,256"/><area shape="rect" id="node5" href="classGlib_1_1Object.html" title="Glib::Object" alt="" coords="50,155,144,181"/><area shape="rect" id="node6" href="classGlib_1_1ObjectBase.html" title="Glib::ObjectBase is a common base class for Objects and Interfaces. " alt="" coords="34,80,160,107"/><area shape="rect" id="node7" doxygen="/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html" title="sigc::trackable" alt="" coords="40,5,155,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-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:ae97b466761df6cccb9b4232e8dece6d5"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#ae97b466761df6cccb9b4232e8dece6d5">~DataInputStream</a> ()</td></tr>
<tr class="separator:ae97b466761df6cccb9b4232e8dece6d5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad788764326462190e900785f50a50740"><td class="memItemLeft" align="right" valign="top">GDataInputStream* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#ad788764326462190e900785f50a50740">gobj</a> ()</td></tr>
<tr class="memdesc:ad788764326462190e900785f50a50740"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GObject. <a href="#ad788764326462190e900785f50a50740">More...</a><br /></td></tr>
<tr class="separator:ad788764326462190e900785f50a50740"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5d8f01998854eac791a3089acef051c0"><td class="memItemLeft" align="right" valign="top">const GDataInputStream* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#a5d8f01998854eac791a3089acef051c0">gobj</a> () const </td></tr>
<tr class="memdesc:a5d8f01998854eac791a3089acef051c0"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GObject. <a href="#a5d8f01998854eac791a3089acef051c0">More...</a><br /></td></tr>
<tr class="separator:a5d8f01998854eac791a3089acef051c0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8252806b8ac5548c51a0418162ddb6ab"><td class="memItemLeft" align="right" valign="top">GDataInputStream* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#a8252806b8ac5548c51a0418162ddb6ab">gobj_copy</a> ()</td></tr>
<tr class="memdesc:a8252806b8ac5548c51a0418162ddb6ab"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. <a href="#a8252806b8ac5548c51a0418162ddb6ab">More...</a><br /></td></tr>
<tr class="separator:a8252806b8ac5548c51a0418162ddb6ab"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a032c20df06b83828d3cb5e81f6b8f561"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#a032c20df06b83828d3cb5e81f6b8f561">set_byte_order</a> (<a class="el" href="group__giommEnums.html#ga87dea9b56fed9c0bca0f8426fb57781e">DataStreamByteOrder</a> order)</td></tr>
<tr class="memdesc:a032c20df06b83828d3cb5e81f6b8f561"><td class="mdescLeft"> </td><td class="mdescRight">This function sets the byte order for the given <em>stream</em>. <a href="#a032c20df06b83828d3cb5e81f6b8f561">More...</a><br /></td></tr>
<tr class="separator:a032c20df06b83828d3cb5e81f6b8f561"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3be4cc7ce927af027630cdeea0914004"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__giommEnums.html#ga87dea9b56fed9c0bca0f8426fb57781e">DataStreamByteOrder</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#a3be4cc7ce927af027630cdeea0914004">get_byte_order</a> () const </td></tr>
<tr class="memdesc:a3be4cc7ce927af027630cdeea0914004"><td class="mdescLeft"> </td><td class="mdescRight">Gets the byte order for the data input stream. <a href="#a3be4cc7ce927af027630cdeea0914004">More...</a><br /></td></tr>
<tr class="separator:a3be4cc7ce927af027630cdeea0914004"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afbc8ad1476fd82e808234a661bfe4cd3"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#afbc8ad1476fd82e808234a661bfe4cd3">set_newline_type</a> (<a class="el" href="group__giommEnums.html#ga2de111fe308aff763fb98a39bc507267">DataStreamNewlineType</a> type)</td></tr>
<tr class="memdesc:afbc8ad1476fd82e808234a661bfe4cd3"><td class="mdescLeft"> </td><td class="mdescRight">Sets the newline type for the <em>stream</em>. <a href="#afbc8ad1476fd82e808234a661bfe4cd3">More...</a><br /></td></tr>
<tr class="separator:afbc8ad1476fd82e808234a661bfe4cd3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afe528b7ecf9401b7bf91f0c67e34de9f"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__giommEnums.html#ga2de111fe308aff763fb98a39bc507267">DataStreamNewlineType</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#afe528b7ecf9401b7bf91f0c67e34de9f">get_newline_type</a> () const </td></tr>
<tr class="memdesc:afe528b7ecf9401b7bf91f0c67e34de9f"><td class="mdescLeft"> </td><td class="mdescRight">Gets the current newline type for the <em>stream</em>. <a href="#afe528b7ecf9401b7bf91f0c67e34de9f">More...</a><br /></td></tr>
<tr class="separator:afe528b7ecf9401b7bf91f0c67e34de9f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aca226b5c2d1248dd079d835dd089570d"><td class="memItemLeft" align="right" valign="top">guchar </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#aca226b5c2d1248dd079d835dd089570d">read_byte</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& cancellable)</td></tr>
<tr class="memdesc:aca226b5c2d1248dd079d835dd089570d"><td class="mdescLeft"> </td><td class="mdescRight">Reads an unsigned 8-bit/1-byte value from <em>stream</em>. <a href="#aca226b5c2d1248dd079d835dd089570d">More...</a><br /></td></tr>
<tr class="separator:aca226b5c2d1248dd079d835dd089570d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af4d01aa4e791d403b79db406befcc28e"><td class="memItemLeft" align="right" valign="top">guchar </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#af4d01aa4e791d403b79db406befcc28e">read_byte</a> ()</td></tr>
<tr class="memdesc:af4d01aa4e791d403b79db406befcc28e"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="el" href="classGio_1_1DataInputStream.html#af4d01aa4e791d403b79db406befcc28e" title="A read_byte() convenience overload. ">read_byte()</a> convenience overload. <a href="#af4d01aa4e791d403b79db406befcc28e">More...</a><br /></td></tr>
<tr class="separator:af4d01aa4e791d403b79db406befcc28e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9fd357f931715d83c69b7010ff86af80"><td class="memItemLeft" align="right" valign="top">gint16 </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#a9fd357f931715d83c69b7010ff86af80">read_int16</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& cancellable)</td></tr>
<tr class="memdesc:a9fd357f931715d83c69b7010ff86af80"><td class="mdescLeft"> </td><td class="mdescRight">Reads a 16-bit/2-byte value from <em>stream</em>. <a href="#a9fd357f931715d83c69b7010ff86af80">More...</a><br /></td></tr>
<tr class="separator:a9fd357f931715d83c69b7010ff86af80"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2407fa551610510cfdcda3b2d8adabdc"><td class="memItemLeft" align="right" valign="top">gint16 </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#a2407fa551610510cfdcda3b2d8adabdc">read_int16</a> ()</td></tr>
<tr class="memdesc:a2407fa551610510cfdcda3b2d8adabdc"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="el" href="classGio_1_1DataInputStream.html#a2407fa551610510cfdcda3b2d8adabdc" title="A read_int16() convenience overload. ">read_int16()</a> convenience overload. <a href="#a2407fa551610510cfdcda3b2d8adabdc">More...</a><br /></td></tr>
<tr class="separator:a2407fa551610510cfdcda3b2d8adabdc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9ac667e423ec3c3d997fc2a4683956d3"><td class="memItemLeft" align="right" valign="top">guint16 </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#a9ac667e423ec3c3d997fc2a4683956d3">read_uint16</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& cancellable)</td></tr>
<tr class="memdesc:a9ac667e423ec3c3d997fc2a4683956d3"><td class="mdescLeft"> </td><td class="mdescRight">Reads an unsigned 16-bit/2-byte value from <em>stream</em>. <a href="#a9ac667e423ec3c3d997fc2a4683956d3">More...</a><br /></td></tr>
<tr class="separator:a9ac667e423ec3c3d997fc2a4683956d3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4e99722aa033a78ac2f4dc593b36d197"><td class="memItemLeft" align="right" valign="top">guint16 </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#a4e99722aa033a78ac2f4dc593b36d197">read_uint16</a> ()</td></tr>
<tr class="memdesc:a4e99722aa033a78ac2f4dc593b36d197"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="el" href="classGio_1_1DataInputStream.html#a4e99722aa033a78ac2f4dc593b36d197" title="A read_uint16() convenience overload. ">read_uint16()</a> convenience overload. <a href="#a4e99722aa033a78ac2f4dc593b36d197">More...</a><br /></td></tr>
<tr class="separator:a4e99722aa033a78ac2f4dc593b36d197"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6280a6c0c6cc1803dc3df8dc29910bcd"><td class="memItemLeft" align="right" valign="top">gint32 </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#a6280a6c0c6cc1803dc3df8dc29910bcd">read_int32</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& cancellable)</td></tr>
<tr class="memdesc:a6280a6c0c6cc1803dc3df8dc29910bcd"><td class="mdescLeft"> </td><td class="mdescRight">Reads a signed 32-bit/4-byte value from <em>stream</em>. <a href="#a6280a6c0c6cc1803dc3df8dc29910bcd">More...</a><br /></td></tr>
<tr class="separator:a6280a6c0c6cc1803dc3df8dc29910bcd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adbbe894fae2ba5d071c3f50895af9067"><td class="memItemLeft" align="right" valign="top">gint32 </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#adbbe894fae2ba5d071c3f50895af9067">read_int32</a> ()</td></tr>
<tr class="memdesc:adbbe894fae2ba5d071c3f50895af9067"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="el" href="classGio_1_1DataInputStream.html#adbbe894fae2ba5d071c3f50895af9067" title="A read_int32() convenience overload. ">read_int32()</a> convenience overload. <a href="#adbbe894fae2ba5d071c3f50895af9067">More...</a><br /></td></tr>
<tr class="separator:adbbe894fae2ba5d071c3f50895af9067"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae7d36dbd67425b923fe335ec5a3f4124"><td class="memItemLeft" align="right" valign="top">guint32 </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#ae7d36dbd67425b923fe335ec5a3f4124">read_uint32</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& cancellable)</td></tr>
<tr class="memdesc:ae7d36dbd67425b923fe335ec5a3f4124"><td class="mdescLeft"> </td><td class="mdescRight">Reads an unsigned 32-bit/4-byte value from <em>stream</em>. <a href="#ae7d36dbd67425b923fe335ec5a3f4124">More...</a><br /></td></tr>
<tr class="separator:ae7d36dbd67425b923fe335ec5a3f4124"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a587856139c73d6c2df1ad2c5560cffec"><td class="memItemLeft" align="right" valign="top">guint32 </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#a587856139c73d6c2df1ad2c5560cffec">read_uint32</a> ()</td></tr>
<tr class="memdesc:a587856139c73d6c2df1ad2c5560cffec"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="el" href="classGio_1_1DataInputStream.html#a587856139c73d6c2df1ad2c5560cffec" title="A read_uint32() convenience overload. ">read_uint32()</a> convenience overload. <a href="#a587856139c73d6c2df1ad2c5560cffec">More...</a><br /></td></tr>
<tr class="separator:a587856139c73d6c2df1ad2c5560cffec"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5d9599527bcd651841fd4f73082d26e0"><td class="memItemLeft" align="right" valign="top">gint64 </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#a5d9599527bcd651841fd4f73082d26e0">read_int64</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& cancellable)</td></tr>
<tr class="memdesc:a5d9599527bcd651841fd4f73082d26e0"><td class="mdescLeft"> </td><td class="mdescRight">Reads a 64-bit/8-byte value from <em>stream</em>. <a href="#a5d9599527bcd651841fd4f73082d26e0">More...</a><br /></td></tr>
<tr class="separator:a5d9599527bcd651841fd4f73082d26e0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6ccd4123a211d1d89c17bb6e4a4aae35"><td class="memItemLeft" align="right" valign="top">gint64 </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#a6ccd4123a211d1d89c17bb6e4a4aae35">read_int64</a> ()</td></tr>
<tr class="memdesc:a6ccd4123a211d1d89c17bb6e4a4aae35"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="el" href="classGio_1_1DataInputStream.html#a6ccd4123a211d1d89c17bb6e4a4aae35" title="A read_int64() convenience overload. ">read_int64()</a> convenience overload. <a href="#a6ccd4123a211d1d89c17bb6e4a4aae35">More...</a><br /></td></tr>
<tr class="separator:a6ccd4123a211d1d89c17bb6e4a4aae35"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2e486863876f833e910286300c7e17a4"><td class="memItemLeft" align="right" valign="top">guint64 </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#a2e486863876f833e910286300c7e17a4">read_uint64</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& cancellable)</td></tr>
<tr class="memdesc:a2e486863876f833e910286300c7e17a4"><td class="mdescLeft"> </td><td class="mdescRight">Reads an unsigned 64-bit/8-byte value from <em>stream</em>. <a href="#a2e486863876f833e910286300c7e17a4">More...</a><br /></td></tr>
<tr class="separator:a2e486863876f833e910286300c7e17a4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9c7ed7807b2a8370f879a820dd0c7989"><td class="memItemLeft" align="right" valign="top">guint64 </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#a9c7ed7807b2a8370f879a820dd0c7989">read_uint64</a> ()</td></tr>
<tr class="memdesc:a9c7ed7807b2a8370f879a820dd0c7989"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="el" href="classGio_1_1DataInputStream.html#a9c7ed7807b2a8370f879a820dd0c7989" title="A read_uint64() convenience overload. ">read_uint64()</a> convenience overload. <a href="#a9c7ed7807b2a8370f879a820dd0c7989">More...</a><br /></td></tr>
<tr class="separator:a9c7ed7807b2a8370f879a820dd0c7989"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4e1ac2a250c7acd60417454379d580a7"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#a4e1ac2a250c7acd60417454379d580a7">read_line</a> (<a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a>& line, const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& cancellable)</td></tr>
<tr class="memdesc:a4e1ac2a250c7acd60417454379d580a7"><td class="mdescLeft"> </td><td class="mdescRight">Reads a line from the data input stream. <a href="#a4e1ac2a250c7acd60417454379d580a7">More...</a><br /></td></tr>
<tr class="separator:a4e1ac2a250c7acd60417454379d580a7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5186689410fe626e35688190b65ec0c5"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#a5186689410fe626e35688190b65ec0c5">read_line</a> (<a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a>& line)</td></tr>
<tr class="memdesc:a5186689410fe626e35688190b65ec0c5"><td class="mdescLeft"> </td><td class="mdescRight">A non-cancellable version of <a class="el" href="classGio_1_1DataInputStream.html#a4e1ac2a250c7acd60417454379d580a7" title="Reads a line from the data input stream. ">read_line()</a>. <a href="#a5186689410fe626e35688190b65ec0c5">More...</a><br /></td></tr>
<tr class="separator:a5186689410fe626e35688190b65ec0c5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac779efdf33abb470832715abeb47f3ef"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#ac779efdf33abb470832715abeb47f3ef">read_line_utf8</a> (<a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a>& line, const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& cancellable, gsize& length)</td></tr>
<tr class="memdesc:ac779efdf33abb470832715abeb47f3ef"><td class="mdescLeft"> </td><td class="mdescRight">Reads a UTF-8 encoded line from the data input stream. <a href="#ac779efdf33abb470832715abeb47f3ef">More...</a><br /></td></tr>
<tr class="separator:ac779efdf33abb470832715abeb47f3ef"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad48b87d450f26683d167c74c7c224ceb"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#ad48b87d450f26683d167c74c7c224ceb">read_line_utf8</a> (<a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a>& line, const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& cancellable)</td></tr>
<tr class="memdesc:ad48b87d450f26683d167c74c7c224ceb"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="el" href="classGio_1_1DataInputStream.html#ac779efdf33abb470832715abeb47f3ef" title="Reads a UTF-8 encoded line from the data input stream. ">read_line_utf8()</a> convenience overload. <a href="#ad48b87d450f26683d167c74c7c224ceb">More...</a><br /></td></tr>
<tr class="separator:ad48b87d450f26683d167c74c7c224ceb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa1ba4df39f51b81c6e105c71d5941493"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#aa1ba4df39f51b81c6e105c71d5941493">read_line_utf8</a> (<a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a>& line, gsize& length)</td></tr>
<tr class="memdesc:aa1ba4df39f51b81c6e105c71d5941493"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="el" href="classGio_1_1DataInputStream.html#ac779efdf33abb470832715abeb47f3ef" title="Reads a UTF-8 encoded line from the data input stream. ">read_line_utf8()</a> convenience overload. <a href="#aa1ba4df39f51b81c6e105c71d5941493">More...</a><br /></td></tr>
<tr class="separator:aa1ba4df39f51b81c6e105c71d5941493"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8cdccad3a356c1bc34bc9ec967b710b0"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#a8cdccad3a356c1bc34bc9ec967b710b0">read_line_utf8</a> (<a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a>& line)</td></tr>
<tr class="memdesc:a8cdccad3a356c1bc34bc9ec967b710b0"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="el" href="classGio_1_1DataInputStream.html#ac779efdf33abb470832715abeb47f3ef" title="Reads a UTF-8 encoded line from the data input stream. ">read_line_utf8()</a> convenience overload. <a href="#a8cdccad3a356c1bc34bc9ec967b710b0">More...</a><br /></td></tr>
<tr class="separator:a8cdccad3a356c1bc34bc9ec967b710b0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aad31c733d13f737f893326b3b7f1ff0d"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#aad31c733d13f737f893326b3b7f1ff0d">read_line_async</a> (const <a class="el" href="namespaceGio.html#aecaa02709f9ab83fa2b36d2571665cbe">SlotAsyncReady</a>& slot, const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& cancellable, int io_priority=<a class="el" href="namespaceGlib.html#a0c450f82b9e34689e2dda2038ba7834fa597ed3aa6067516c9c752896f3816b5e">Glib::PRIORITY_DEFAULT</a>)</td></tr>
<tr class="memdesc:aad31c733d13f737f893326b3b7f1ff0d"><td class="mdescLeft"> </td><td class="mdescRight">The asynchronous version of <a class="el" href="classGio_1_1DataInputStream.html#a058c5367f9be4e4e36d5fb9de2201815" title="Reads a string from the data input stream, up to the first occurrence of any of the stop characters...">read_until()</a>. <a href="#aad31c733d13f737f893326b3b7f1ff0d">More...</a><br /></td></tr>
<tr class="separator:aad31c733d13f737f893326b3b7f1ff0d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a538562b9bf3a80138ba9918b2249f834"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#a538562b9bf3a80138ba9918b2249f834">read_line_finish</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1AsyncResult.html">AsyncResult</a> >& result, <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a>& data)</td></tr>
<tr class="memdesc:a538562b9bf3a80138ba9918b2249f834"><td class="mdescLeft"> </td><td class="mdescRight">Finish an asynchronous call started by <a class="el" href="classGio_1_1DataInputStream.html#aad31c733d13f737f893326b3b7f1ff0d" title="The asynchronous version of read_until(). ">read_line_async()</a>. <a href="#a538562b9bf3a80138ba9918b2249f834">More...</a><br /></td></tr>
<tr class="separator:a538562b9bf3a80138ba9918b2249f834"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5dade4189842c81b4dc3fc43a8b79af3"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#a5dade4189842c81b4dc3fc43a8b79af3">read_line_finish_utf8</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1AsyncResult.html">AsyncResult</a> >& result, <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a>& data, gsize& length)</td></tr>
<tr class="memdesc:a5dade4189842c81b4dc3fc43a8b79af3"><td class="mdescLeft"> </td><td class="mdescRight">Finish an asynchronous call started by g_data_input_stream_read_line_async(). <a href="#a5dade4189842c81b4dc3fc43a8b79af3">More...</a><br /></td></tr>
<tr class="separator:a5dade4189842c81b4dc3fc43a8b79af3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a79e503ebe50065088e7daaa306da9cc3"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#a79e503ebe50065088e7daaa306da9cc3">read_line_finish_utf8</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1AsyncResult.html">AsyncResult</a> >& result, <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a>& data)</td></tr>
<tr class="memdesc:a79e503ebe50065088e7daaa306da9cc3"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="el" href="classGio_1_1DataInputStream.html#a5dade4189842c81b4dc3fc43a8b79af3" title="Finish an asynchronous call started by g_data_input_stream_read_line_async(). ">read_line_finish_utf8()</a> convenience overload. <a href="#a79e503ebe50065088e7daaa306da9cc3">More...</a><br /></td></tr>
<tr class="separator:a79e503ebe50065088e7daaa306da9cc3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a058c5367f9be4e4e36d5fb9de2201815"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#a058c5367f9be4e4e36d5fb9de2201815">read_until</a> (<a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a>& data, const <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a>& stop_chars, const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& cancellable)</td></tr>
<tr class="memdesc:a058c5367f9be4e4e36d5fb9de2201815"><td class="mdescLeft"> </td><td class="mdescRight">Reads a string from the data input stream, up to the first occurrence of any of the stop characters. <a href="#a058c5367f9be4e4e36d5fb9de2201815">More...</a><br /></td></tr>
<tr class="separator:a058c5367f9be4e4e36d5fb9de2201815"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa7d2a04bf5a4628df0530ec40d4c33cf"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#aa7d2a04bf5a4628df0530ec40d4c33cf">read_until</a> (<a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a>& data, const <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a>& stop_chars)</td></tr>
<tr class="memdesc:aa7d2a04bf5a4628df0530ec40d4c33cf"><td class="mdescLeft"> </td><td class="mdescRight">A non-cancellable version of <a class="el" href="classGio_1_1DataInputStream.html#a058c5367f9be4e4e36d5fb9de2201815" title="Reads a string from the data input stream, up to the first occurrence of any of the stop characters...">read_until()</a>. <a href="#aa7d2a04bf5a4628df0530ec40d4c33cf">More...</a><br /></td></tr>
<tr class="separator:aa7d2a04bf5a4628df0530ec40d4c33cf"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a708cba487c68c8c927fe8ae6277b6123"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#a708cba487c68c8c927fe8ae6277b6123">read_until_async</a> (const <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a>& stop_chars, const <a class="el" href="namespaceGio.html#aecaa02709f9ab83fa2b36d2571665cbe">SlotAsyncReady</a>& slot, const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& cancellable, int io_priority=<a class="el" href="namespaceGlib.html#a0c450f82b9e34689e2dda2038ba7834fa597ed3aa6067516c9c752896f3816b5e">Glib::PRIORITY_DEFAULT</a>)</td></tr>
<tr class="memdesc:a708cba487c68c8c927fe8ae6277b6123"><td class="mdescLeft"> </td><td class="mdescRight">The asynchronous version of <a class="el" href="classGio_1_1DataInputStream.html#a058c5367f9be4e4e36d5fb9de2201815" title="Reads a string from the data input stream, up to the first occurrence of any of the stop characters...">read_until()</a>. <a href="#a708cba487c68c8c927fe8ae6277b6123">More...</a><br /></td></tr>
<tr class="separator:a708cba487c68c8c927fe8ae6277b6123"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa851cb398896f39bea56868b46bd480d"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#aa851cb398896f39bea56868b46bd480d">read_until_finish</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1AsyncResult.html">AsyncResult</a> >& result, <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a>& data)</td></tr>
<tr class="memdesc:aa851cb398896f39bea56868b46bd480d"><td class="mdescLeft"> </td><td class="mdescRight">Finish an asynchronous call started by <a class="el" href="classGio_1_1DataInputStream.html#a708cba487c68c8c927fe8ae6277b6123" title="The asynchronous version of read_until(). ">read_until_async()</a>. <a href="#aa851cb398896f39bea56868b46bd480d">More...</a><br /></td></tr>
<tr class="separator:aa851cb398896f39bea56868b46bd480d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae1ecebe6229884c4510e5b42eabe4874"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#ae1ecebe6229884c4510e5b42eabe4874">read_upto</a> (<a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a>& data, const <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a>& stop_chars, const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& cancellable)</td></tr>
<tr class="memdesc:ae1ecebe6229884c4510e5b42eabe4874"><td class="mdescLeft"> </td><td class="mdescRight">Reads a string from the data input stream, up to the first occurrence of any of the stop characters. <a href="#ae1ecebe6229884c4510e5b42eabe4874">More...</a><br /></td></tr>
<tr class="separator:ae1ecebe6229884c4510e5b42eabe4874"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afe582f97c8438b1517f16e805e332d1f"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#afe582f97c8438b1517f16e805e332d1f">read_upto</a> (<a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a>& data, const <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a>& stop_chars)</td></tr>
<tr class="memdesc:afe582f97c8438b1517f16e805e332d1f"><td class="mdescLeft"> </td><td class="mdescRight">A non-cancellable version of <a class="el" href="classGio_1_1DataInputStream.html#ae1ecebe6229884c4510e5b42eabe4874" title="Reads a string from the data input stream, up to the first occurrence of any of the stop characters...">read_upto()</a>. <a href="#afe582f97c8438b1517f16e805e332d1f">More...</a><br /></td></tr>
<tr class="separator:afe582f97c8438b1517f16e805e332d1f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a76d195879b8aa04c22a5c69dc82c0f46"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#a76d195879b8aa04c22a5c69dc82c0f46">read_upto_async</a> (const <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a>& stop_chars, const <a class="el" href="namespaceGio.html#aecaa02709f9ab83fa2b36d2571665cbe">SlotAsyncReady</a>& slot, const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& cancellable, int io_priority=<a class="el" href="namespaceGlib.html#a0c450f82b9e34689e2dda2038ba7834fa597ed3aa6067516c9c752896f3816b5e">Glib::PRIORITY_DEFAULT</a>)</td></tr>
<tr class="memdesc:a76d195879b8aa04c22a5c69dc82c0f46"><td class="mdescLeft"> </td><td class="mdescRight">The asynchronous version of <a class="el" href="classGio_1_1DataInputStream.html#ae1ecebe6229884c4510e5b42eabe4874" title="Reads a string from the data input stream, up to the first occurrence of any of the stop characters...">read_upto()</a>. <a href="#a76d195879b8aa04c22a5c69dc82c0f46">More...</a><br /></td></tr>
<tr class="separator:a76d195879b8aa04c22a5c69dc82c0f46"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad0b61e9b6225bea6af433ae28dbdbea8"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#ad0b61e9b6225bea6af433ae28dbdbea8">read_upto_finish</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1AsyncResult.html">AsyncResult</a> >& result, <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a>& data)</td></tr>
<tr class="memdesc:ad0b61e9b6225bea6af433ae28dbdbea8"><td class="mdescLeft"> </td><td class="mdescRight">Finish an asynchronous call started by <a class="el" href="classGio_1_1DataInputStream.html#a76d195879b8aa04c22a5c69dc82c0f46" title="The asynchronous version of read_upto(). ">read_upto_async()</a>. <a href="#ad0b61e9b6225bea6af433ae28dbdbea8">More...</a><br /></td></tr>
<tr class="separator:ad0b61e9b6225bea6af433ae28dbdbea8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a53ffda2bedfb47315afc50d9ec64ba3b"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a><br class="typebreak" />
< <a class="el" href="group__giommEnums.html#ga87dea9b56fed9c0bca0f8426fb57781e">DataStreamByteOrder</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#a53ffda2bedfb47315afc50d9ec64ba3b">property_byte_order</a> ()</td></tr>
<tr class="memdesc:a53ffda2bedfb47315afc50d9ec64ba3b"><td class="mdescLeft"> </td><td class="mdescRight">The byte order. <a href="#a53ffda2bedfb47315afc50d9ec64ba3b">More...</a><br /></td></tr>
<tr class="separator:a53ffda2bedfb47315afc50d9ec64ba3b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0311a24a36a555cf9e471fbe7aa11050"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak" />
< <a class="el" href="group__giommEnums.html#ga87dea9b56fed9c0bca0f8426fb57781e">DataStreamByteOrder</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#a0311a24a36a555cf9e471fbe7aa11050">property_byte_order</a> () const </td></tr>
<tr class="memdesc:a0311a24a36a555cf9e471fbe7aa11050"><td class="mdescLeft"> </td><td class="mdescRight">The byte order. <a href="#a0311a24a36a555cf9e471fbe7aa11050">More...</a><br /></td></tr>
<tr class="separator:a0311a24a36a555cf9e471fbe7aa11050"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adf55222b27ecf5db6a604d4e111431f8"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a><br class="typebreak" />
< <a class="el" href="group__giommEnums.html#ga2de111fe308aff763fb98a39bc507267">DataStreamNewlineType</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#adf55222b27ecf5db6a604d4e111431f8">property_newline_type</a> ()</td></tr>
<tr class="memdesc:adf55222b27ecf5db6a604d4e111431f8"><td class="mdescLeft"> </td><td class="mdescRight">The accepted types of line ending. <a href="#adf55222b27ecf5db6a604d4e111431f8">More...</a><br /></td></tr>
<tr class="separator:adf55222b27ecf5db6a604d4e111431f8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aec1a1d826fb927eccc4c9f5b444e33af"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak" />
< <a class="el" href="group__giommEnums.html#ga2de111fe308aff763fb98a39bc507267">DataStreamNewlineType</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#aec1a1d826fb927eccc4c9f5b444e33af">property_newline_type</a> () const </td></tr>
<tr class="memdesc:aec1a1d826fb927eccc4c9f5b444e33af"><td class="mdescLeft"> </td><td class="mdescRight">The accepted types of line ending. <a href="#aec1a1d826fb927eccc4c9f5b444e33af">More...</a><br /></td></tr>
<tr class="separator:aec1a1d826fb927eccc4c9f5b444e33af"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classGio_1_1BufferedInputStream"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGio_1_1BufferedInputStream')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classGio_1_1BufferedInputStream.html">Gio::BufferedInputStream</a></td></tr>
<tr class="memitem:a6d961bb2ebe9c213c1e4c49572bae6ed inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1BufferedInputStream.html#a6d961bb2ebe9c213c1e4c49572bae6ed">~BufferedInputStream</a> ()</td></tr>
<tr class="separator:a6d961bb2ebe9c213c1e4c49572bae6ed inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa9d0c1e643650b9a45831865f06e21be inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memItemLeft" align="right" valign="top">GBufferedInputStream* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1BufferedInputStream.html#aa9d0c1e643650b9a45831865f06e21be">gobj</a> ()</td></tr>
<tr class="memdesc:aa9d0c1e643650b9a45831865f06e21be inherit pub_methods_classGio_1_1BufferedInputStream"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GObject. <a href="#aa9d0c1e643650b9a45831865f06e21be">More...</a><br /></td></tr>
<tr class="separator:aa9d0c1e643650b9a45831865f06e21be inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad6b09565f69b4c1cf1f0ca05ee53709e inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memItemLeft" align="right" valign="top">const GBufferedInputStream* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1BufferedInputStream.html#ad6b09565f69b4c1cf1f0ca05ee53709e">gobj</a> () const </td></tr>
<tr class="memdesc:ad6b09565f69b4c1cf1f0ca05ee53709e inherit pub_methods_classGio_1_1BufferedInputStream"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GObject. <a href="#ad6b09565f69b4c1cf1f0ca05ee53709e">More...</a><br /></td></tr>
<tr class="separator:ad6b09565f69b4c1cf1f0ca05ee53709e inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a47dc5f78b1faed25cdaaafe42b526d6d inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memItemLeft" align="right" valign="top">GBufferedInputStream* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1BufferedInputStream.html#a47dc5f78b1faed25cdaaafe42b526d6d">gobj_copy</a> ()</td></tr>
<tr class="memdesc:a47dc5f78b1faed25cdaaafe42b526d6d inherit pub_methods_classGio_1_1BufferedInputStream"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. <a href="#a47dc5f78b1faed25cdaaafe42b526d6d">More...</a><br /></td></tr>
<tr class="separator:a47dc5f78b1faed25cdaaafe42b526d6d inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a46384a96dc052e9d25e1a88281d69e40 inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memItemLeft" align="right" valign="top">gsize </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1BufferedInputStream.html#a46384a96dc052e9d25e1a88281d69e40">get_buffer_size</a> () const </td></tr>
<tr class="memdesc:a46384a96dc052e9d25e1a88281d69e40 inherit pub_methods_classGio_1_1BufferedInputStream"><td class="mdescLeft"> </td><td class="mdescRight">Gets the size of the input buffer. <a href="#a46384a96dc052e9d25e1a88281d69e40">More...</a><br /></td></tr>
<tr class="separator:a46384a96dc052e9d25e1a88281d69e40 inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af5f861a5b30aadc48e21fb10a46afaa7 inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1BufferedInputStream.html#af5f861a5b30aadc48e21fb10a46afaa7">set_buffer_size</a> (gsize <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01656.html#ga445a43f417432dd1b9aed90ef239c700">size</a>)</td></tr>
<tr class="memdesc:af5f861a5b30aadc48e21fb10a46afaa7 inherit pub_methods_classGio_1_1BufferedInputStream"><td class="mdescLeft"> </td><td class="mdescRight">Sets the size of the internal buffer of <em>stream</em> to <em>size</em>, or to the size of the contents of the buffer. <a href="#af5f861a5b30aadc48e21fb10a46afaa7">More...</a><br /></td></tr>
<tr class="separator:af5f861a5b30aadc48e21fb10a46afaa7 inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a436e3c852afdc67e8ba70d32e39ce6b9 inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memItemLeft" align="right" valign="top">gsize </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1BufferedInputStream.html#a436e3c852afdc67e8ba70d32e39ce6b9">get_available</a> () const </td></tr>
<tr class="memdesc:a436e3c852afdc67e8ba70d32e39ce6b9 inherit pub_methods_classGio_1_1BufferedInputStream"><td class="mdescLeft"> </td><td class="mdescRight">Gets the size of the available data within the stream. <a href="#a436e3c852afdc67e8ba70d32e39ce6b9">More...</a><br /></td></tr>
<tr class="separator:a436e3c852afdc67e8ba70d32e39ce6b9 inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a17a6489d7ab0b72268264c9f0a30e879 inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memItemLeft" align="right" valign="top">gsize </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1BufferedInputStream.html#a17a6489d7ab0b72268264c9f0a30e879">peek</a> (void* buffer, gsize offset, gsize <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01659.html#gad2f89a1340c43c8451e522d045aaa1b6">count</a>) const </td></tr>
<tr class="memdesc:a17a6489d7ab0b72268264c9f0a30e879 inherit pub_methods_classGio_1_1BufferedInputStream"><td class="mdescLeft"> </td><td class="mdescRight">Peeks in the buffer, copying data of size <em>count</em> into <em>buffer</em>, offset <em>offset</em> bytes. <a href="#a17a6489d7ab0b72268264c9f0a30e879">More...</a><br /></td></tr>
<tr class="separator:a17a6489d7ab0b72268264c9f0a30e879 inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a27838d9374fa86ae513bc27d939ede24 inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memItemLeft" align="right" valign="top">const void* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1BufferedInputStream.html#a27838d9374fa86ae513bc27d939ede24">peek_buffer</a> (gsize&<a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01659.html#gad2f89a1340c43c8451e522d045aaa1b6">count</a>) const </td></tr>
<tr class="memdesc:a27838d9374fa86ae513bc27d939ede24 inherit pub_methods_classGio_1_1BufferedInputStream"><td class="mdescLeft"> </td><td class="mdescRight">Returns the buffer with the currently available bytes. <a href="#a27838d9374fa86ae513bc27d939ede24">More...</a><br /></td></tr>
<tr class="separator:a27838d9374fa86ae513bc27d939ede24 inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a197687762599fb7c5b60141b55120cde inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memItemLeft" align="right" valign="top">gssize </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1BufferedInputStream.html#a197687762599fb7c5b60141b55120cde">fill</a> (gssize <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01659.html#gad2f89a1340c43c8451e522d045aaa1b6">count</a>, const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& cancellable)</td></tr>
<tr class="memdesc:a197687762599fb7c5b60141b55120cde inherit pub_methods_classGio_1_1BufferedInputStream"><td class="mdescLeft"> </td><td class="mdescRight">Tries to read <em>count</em> bytes from the stream into the buffer. <a href="#a197687762599fb7c5b60141b55120cde">More...</a><br /></td></tr>
<tr class="separator:a197687762599fb7c5b60141b55120cde inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a271eab4876136b4960d37350738bfdfe inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memItemLeft" align="right" valign="top">gssize </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1BufferedInputStream.html#a271eab4876136b4960d37350738bfdfe">fill</a> (gssize <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01659.html#gad2f89a1340c43c8451e522d045aaa1b6">count</a>)</td></tr>
<tr class="memdesc:a271eab4876136b4960d37350738bfdfe inherit pub_methods_classGio_1_1BufferedInputStream"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="el" href="classGio_1_1BufferedInputStream.html#a197687762599fb7c5b60141b55120cde" title="Tries to read count bytes from the stream into the buffer. ">fill()</a> convenience overload. <a href="#a271eab4876136b4960d37350738bfdfe">More...</a><br /></td></tr>
<tr class="separator:a271eab4876136b4960d37350738bfdfe inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0a41790e04e9ba500eb18d1ce8371d34 inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1BufferedInputStream.html#a0a41790e04e9ba500eb18d1ce8371d34">fill_async</a> (const <a class="el" href="namespaceGio.html#aecaa02709f9ab83fa2b36d2571665cbe">SlotAsyncReady</a>& slot, gssize <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01659.html#gad2f89a1340c43c8451e522d045aaa1b6">count</a>, const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& cancellable, int io_priority=<a class="el" href="namespaceGlib.html#a0c450f82b9e34689e2dda2038ba7834fa597ed3aa6067516c9c752896f3816b5e">Glib::PRIORITY_DEFAULT</a>)</td></tr>
<tr class="memdesc:a0a41790e04e9ba500eb18d1ce8371d34 inherit pub_methods_classGio_1_1BufferedInputStream"><td class="mdescLeft"> </td><td class="mdescRight">Reads data into the stream's buffer asynchronously, up to <em>count</em> size. <a href="#a0a41790e04e9ba500eb18d1ce8371d34">More...</a><br /></td></tr>
<tr class="separator:a0a41790e04e9ba500eb18d1ce8371d34 inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aadb9c1b367e36c20c91e16ea840b6ef0 inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1BufferedInputStream.html#aadb9c1b367e36c20c91e16ea840b6ef0">fill_async</a> (const <a class="el" href="namespaceGio.html#aecaa02709f9ab83fa2b36d2571665cbe">SlotAsyncReady</a>& slot, gssize <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01659.html#gad2f89a1340c43c8451e522d045aaa1b6">count</a>, int io_priority=<a class="el" href="namespaceGlib.html#a0c450f82b9e34689e2dda2038ba7834fa597ed3aa6067516c9c752896f3816b5e">Glib::PRIORITY_DEFAULT</a>)</td></tr>
<tr class="memdesc:aadb9c1b367e36c20c91e16ea840b6ef0 inherit pub_methods_classGio_1_1BufferedInputStream"><td class="mdescLeft"> </td><td class="mdescRight">Reads data into the stream's buffer asynchronously, up to <em>count</em> size. <a href="#aadb9c1b367e36c20c91e16ea840b6ef0">More...</a><br /></td></tr>
<tr class="separator:aadb9c1b367e36c20c91e16ea840b6ef0 inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a13c665ccc722a2544539086846137277 inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memItemLeft" align="right" valign="top">gssize </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1BufferedInputStream.html#a13c665ccc722a2544539086846137277">fill_finish</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1AsyncResult.html">AsyncResult</a> >& result)</td></tr>
<tr class="memdesc:a13c665ccc722a2544539086846137277 inherit pub_methods_classGio_1_1BufferedInputStream"><td class="mdescLeft"> </td><td class="mdescRight">Finishes an asynchronous read. <a href="#a13c665ccc722a2544539086846137277">More...</a><br /></td></tr>
<tr class="separator:a13c665ccc722a2544539086846137277 inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a85477f09b58dfb83e5a1ef62f119457a inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1BufferedInputStream.html#a85477f09b58dfb83e5a1ef62f119457a">read_byte</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& cancellable)</td></tr>
<tr class="memdesc:a85477f09b58dfb83e5a1ef62f119457a inherit pub_methods_classGio_1_1BufferedInputStream"><td class="mdescLeft"> </td><td class="mdescRight">Tries to read a single byte from the stream or the buffer. <a href="#a85477f09b58dfb83e5a1ef62f119457a">More...</a><br /></td></tr>
<tr class="separator:a85477f09b58dfb83e5a1ef62f119457a inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8741ffb62c82425f54bc5e005c2a238f inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1BufferedInputStream.html#a8741ffb62c82425f54bc5e005c2a238f">read_byte</a> ()</td></tr>
<tr class="memdesc:a8741ffb62c82425f54bc5e005c2a238f inherit pub_methods_classGio_1_1BufferedInputStream"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="el" href="classGio_1_1BufferedInputStream.html#a8741ffb62c82425f54bc5e005c2a238f" title="A read_byte() convenience overload. ">read_byte()</a> convenience overload. <a href="#a8741ffb62c82425f54bc5e005c2a238f">More...</a><br /></td></tr>
<tr class="separator:a8741ffb62c82425f54bc5e005c2a238f inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a10be713afc0912c4a5fe89a2c40d943e inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< guint > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1BufferedInputStream.html#a10be713afc0912c4a5fe89a2c40d943e">property_buffer_size</a> ()</td></tr>
<tr class="memdesc:a10be713afc0912c4a5fe89a2c40d943e inherit pub_methods_classGio_1_1BufferedInputStream"><td class="mdescLeft"> </td><td class="mdescRight">The size of the backend buffer. <a href="#a10be713afc0912c4a5fe89a2c40d943e">More...</a><br /></td></tr>
<tr class="separator:a10be713afc0912c4a5fe89a2c40d943e inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8d77671c76ea9170c32c294d28403378 inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak" />
< guint > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1BufferedInputStream.html#a8d77671c76ea9170c32c294d28403378">property_buffer_size</a> () const </td></tr>
<tr class="memdesc:a8d77671c76ea9170c32c294d28403378 inherit pub_methods_classGio_1_1BufferedInputStream"><td class="mdescLeft"> </td><td class="mdescRight">The size of the backend buffer. <a href="#a8d77671c76ea9170c32c294d28403378">More...</a><br /></td></tr>
<tr class="separator:a8d77671c76ea9170c32c294d28403378 inherit pub_methods_classGio_1_1BufferedInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classGio_1_1FilterInputStream"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGio_1_1FilterInputStream')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classGio_1_1FilterInputStream.html">Gio::FilterInputStream</a></td></tr>
<tr class="memitem:a5d3ea75436d7681061f6c320225d7848 inherit pub_methods_classGio_1_1FilterInputStream"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1FilterInputStream.html#a5d3ea75436d7681061f6c320225d7848">~FilterInputStream</a> ()</td></tr>
<tr class="separator:a5d3ea75436d7681061f6c320225d7848 inherit pub_methods_classGio_1_1FilterInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6db43589745dcd172f4ca4082bc5d914 inherit pub_methods_classGio_1_1FilterInputStream"><td class="memItemLeft" align="right" valign="top">GFilterInputStream* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1FilterInputStream.html#a6db43589745dcd172f4ca4082bc5d914">gobj</a> ()</td></tr>
<tr class="memdesc:a6db43589745dcd172f4ca4082bc5d914 inherit pub_methods_classGio_1_1FilterInputStream"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GObject. <a href="#a6db43589745dcd172f4ca4082bc5d914">More...</a><br /></td></tr>
<tr class="separator:a6db43589745dcd172f4ca4082bc5d914 inherit pub_methods_classGio_1_1FilterInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac8fbd2cc879bfab4854d952b27ce271c inherit pub_methods_classGio_1_1FilterInputStream"><td class="memItemLeft" align="right" valign="top">const GFilterInputStream* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1FilterInputStream.html#ac8fbd2cc879bfab4854d952b27ce271c">gobj</a> () const </td></tr>
<tr class="memdesc:ac8fbd2cc879bfab4854d952b27ce271c inherit pub_methods_classGio_1_1FilterInputStream"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GObject. <a href="#ac8fbd2cc879bfab4854d952b27ce271c">More...</a><br /></td></tr>
<tr class="separator:ac8fbd2cc879bfab4854d952b27ce271c inherit pub_methods_classGio_1_1FilterInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a55ef3320e423245cc69066c90785328e inherit pub_methods_classGio_1_1FilterInputStream"><td class="memItemLeft" align="right" valign="top">GFilterInputStream* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1FilterInputStream.html#a55ef3320e423245cc69066c90785328e">gobj_copy</a> ()</td></tr>
<tr class="memdesc:a55ef3320e423245cc69066c90785328e inherit pub_methods_classGio_1_1FilterInputStream"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. <a href="#a55ef3320e423245cc69066c90785328e">More...</a><br /></td></tr>
<tr class="separator:a55ef3320e423245cc69066c90785328e inherit pub_methods_classGio_1_1FilterInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa0e6304d8ea21a17b3e6a0127e3e7530 inherit pub_methods_classGio_1_1FilterInputStream"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1InputStream.html">InputStream</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1FilterInputStream.html#aa0e6304d8ea21a17b3e6a0127e3e7530">get_base_stream</a> ()</td></tr>
<tr class="memdesc:aa0e6304d8ea21a17b3e6a0127e3e7530 inherit pub_methods_classGio_1_1FilterInputStream"><td class="mdescLeft"> </td><td class="mdescRight">Gets the base stream for the filter stream. <a href="#aa0e6304d8ea21a17b3e6a0127e3e7530">More...</a><br /></td></tr>
<tr class="separator:aa0e6304d8ea21a17b3e6a0127e3e7530 inherit pub_methods_classGio_1_1FilterInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a41af6a4af682c043ac9c91ed13608705 inherit pub_methods_classGio_1_1FilterInputStream"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGio_1_1InputStream.html">InputStream</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1FilterInputStream.html#a41af6a4af682c043ac9c91ed13608705">get_base_stream</a> () const </td></tr>
<tr class="memdesc:a41af6a4af682c043ac9c91ed13608705 inherit pub_methods_classGio_1_1FilterInputStream"><td class="mdescLeft"> </td><td class="mdescRight">Gets the base stream for the filter stream. <a href="#a41af6a4af682c043ac9c91ed13608705">More...</a><br /></td></tr>
<tr class="separator:a41af6a4af682c043ac9c91ed13608705 inherit pub_methods_classGio_1_1FilterInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1a78226f76528f61c87ebe5a31b0f133 inherit pub_methods_classGio_1_1FilterInputStream"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1FilterInputStream.html#a1a78226f76528f61c87ebe5a31b0f133">get_close_base_stream</a> () const </td></tr>
<tr class="memdesc:a1a78226f76528f61c87ebe5a31b0f133 inherit pub_methods_classGio_1_1FilterInputStream"><td class="mdescLeft"> </td><td class="mdescRight">Returns whether the base stream will be closed when <em>stream</em> is closed. <a href="#a1a78226f76528f61c87ebe5a31b0f133">More...</a><br /></td></tr>
<tr class="separator:a1a78226f76528f61c87ebe5a31b0f133 inherit pub_methods_classGio_1_1FilterInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a82e03517a6841b170c7e13fcf2f66920 inherit pub_methods_classGio_1_1FilterInputStream"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1FilterInputStream.html#a82e03517a6841b170c7e13fcf2f66920">set_close_base_stream</a> (bool close_base=true)</td></tr>
<tr class="memdesc:a82e03517a6841b170c7e13fcf2f66920 inherit pub_methods_classGio_1_1FilterInputStream"><td class="mdescLeft"> </td><td class="mdescRight">Sets whether the base stream will be closed when <em>stream</em> is closed. <a href="#a82e03517a6841b170c7e13fcf2f66920">More...</a><br /></td></tr>
<tr class="separator:a82e03517a6841b170c7e13fcf2f66920 inherit pub_methods_classGio_1_1FilterInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aee46182be8452b2b308e62b1fe932233 inherit pub_methods_classGio_1_1FilterInputStream"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak" />
< <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1InputStream.html">InputStream</a> > > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1FilterInputStream.html#aee46182be8452b2b308e62b1fe932233">property_base_stream</a> () const </td></tr>
<tr class="memdesc:aee46182be8452b2b308e62b1fe932233 inherit pub_methods_classGio_1_1FilterInputStream"><td class="mdescLeft"> </td><td class="mdescRight">The underlying base stream on which the io ops will be done. <a href="#aee46182be8452b2b308e62b1fe932233">More...</a><br /></td></tr>
<tr class="separator:aee46182be8452b2b308e62b1fe932233 inherit pub_methods_classGio_1_1FilterInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6667a12cd90f09d79252e0f76c5f9c16 inherit pub_methods_classGio_1_1FilterInputStream"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1FilterInputStream.html#a6667a12cd90f09d79252e0f76c5f9c16">property_close_base_stream</a> ()</td></tr>
<tr class="memdesc:a6667a12cd90f09d79252e0f76c5f9c16 inherit pub_methods_classGio_1_1FilterInputStream"><td class="mdescLeft"> </td><td class="mdescRight">If the base stream should be closed when the filter stream is closed. <a href="#a6667a12cd90f09d79252e0f76c5f9c16">More...</a><br /></td></tr>
<tr class="separator:a6667a12cd90f09d79252e0f76c5f9c16 inherit pub_methods_classGio_1_1FilterInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a88a93a90feb440a6b3a38794e7e10609 inherit pub_methods_classGio_1_1FilterInputStream"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak" />
< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1FilterInputStream.html#a88a93a90feb440a6b3a38794e7e10609">property_close_base_stream</a> () const </td></tr>
<tr class="memdesc:a88a93a90feb440a6b3a38794e7e10609 inherit pub_methods_classGio_1_1FilterInputStream"><td class="mdescLeft"> </td><td class="mdescRight">If the base stream should be closed when the filter stream is closed. <a href="#a88a93a90feb440a6b3a38794e7e10609">More...</a><br /></td></tr>
<tr class="separator:a88a93a90feb440a6b3a38794e7e10609 inherit pub_methods_classGio_1_1FilterInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classGio_1_1InputStream"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGio_1_1InputStream')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classGio_1_1InputStream.html">Gio::InputStream</a></td></tr>
<tr class="memitem:afff624e3125add13c88e8a99907ba903 inherit pub_methods_classGio_1_1InputStream"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1InputStream.html#afff624e3125add13c88e8a99907ba903">~InputStream</a> ()</td></tr>
<tr class="separator:afff624e3125add13c88e8a99907ba903 inherit pub_methods_classGio_1_1InputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2ed1120b3d03a12086e7f0ed3946aba1 inherit pub_methods_classGio_1_1InputStream"><td class="memItemLeft" align="right" valign="top">GInputStream* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1InputStream.html#a2ed1120b3d03a12086e7f0ed3946aba1">gobj</a> ()</td></tr>
<tr class="memdesc:a2ed1120b3d03a12086e7f0ed3946aba1 inherit pub_methods_classGio_1_1InputStream"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GObject. <a href="#a2ed1120b3d03a12086e7f0ed3946aba1">More...</a><br /></td></tr>
<tr class="separator:a2ed1120b3d03a12086e7f0ed3946aba1 inherit pub_methods_classGio_1_1InputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1b0ef82ab81b3ded607584c7029fe1e9 inherit pub_methods_classGio_1_1InputStream"><td class="memItemLeft" align="right" valign="top">const GInputStream* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1InputStream.html#a1b0ef82ab81b3ded607584c7029fe1e9">gobj</a> () const </td></tr>
<tr class="memdesc:a1b0ef82ab81b3ded607584c7029fe1e9 inherit pub_methods_classGio_1_1InputStream"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GObject. <a href="#a1b0ef82ab81b3ded607584c7029fe1e9">More...</a><br /></td></tr>
<tr class="separator:a1b0ef82ab81b3ded607584c7029fe1e9 inherit pub_methods_classGio_1_1InputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a28a9394b07e9183c0c79798ea344c65c inherit pub_methods_classGio_1_1InputStream"><td class="memItemLeft" align="right" valign="top">GInputStream* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1InputStream.html#a28a9394b07e9183c0c79798ea344c65c">gobj_copy</a> ()</td></tr>
<tr class="memdesc:a28a9394b07e9183c0c79798ea344c65c inherit pub_methods_classGio_1_1InputStream"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. <a href="#a28a9394b07e9183c0c79798ea344c65c">More...</a><br /></td></tr>
<tr class="separator:a28a9394b07e9183c0c79798ea344c65c inherit pub_methods_classGio_1_1InputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a49a1f4219f96c7fafdcf1ed12eb443e2 inherit pub_methods_classGio_1_1InputStream"><td class="memItemLeft" align="right" valign="top">gssize </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1InputStream.html#a49a1f4219f96c7fafdcf1ed12eb443e2">read</a> (void* buffer, gsize <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01659.html#gad2f89a1340c43c8451e522d045aaa1b6">count</a>, const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& cancellable)</td></tr>
<tr class="memdesc:a49a1f4219f96c7fafdcf1ed12eb443e2 inherit pub_methods_classGio_1_1InputStream"><td class="mdescLeft"> </td><td class="mdescRight">Tries to read <em>count</em> bytes from the stream into the buffer starting at <em>buffer</em>. <a href="#a49a1f4219f96c7fafdcf1ed12eb443e2">More...</a><br /></td></tr>
<tr class="separator:a49a1f4219f96c7fafdcf1ed12eb443e2 inherit pub_methods_classGio_1_1InputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a42ab2486116d40f6ef828277befb508a inherit pub_methods_classGio_1_1InputStream"><td class="memItemLeft" align="right" valign="top">gssize </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1InputStream.html#a42ab2486116d40f6ef828277befb508a">read</a> (void* buffer, gsize <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01659.html#gad2f89a1340c43c8451e522d045aaa1b6">count</a>)</td></tr>
<tr class="memdesc:a42ab2486116d40f6ef828277befb508a inherit pub_methods_classGio_1_1InputStream"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="el" href="classGio_1_1InputStream.html#a49a1f4219f96c7fafdcf1ed12eb443e2" title="Tries to read count bytes from the stream into the buffer starting at buffer. ">read()</a> convenience overload. <a href="#a42ab2486116d40f6ef828277befb508a">More...</a><br /></td></tr>
<tr class="separator:a42ab2486116d40f6ef828277befb508a inherit pub_methods_classGio_1_1InputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1dc8a2babf32f93a0a5dccc0c39e0959 inherit pub_methods_classGio_1_1InputStream"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1InputStream.html#a1dc8a2babf32f93a0a5dccc0c39e0959">read_all</a> (void* buffer, gsize <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01659.html#gad2f89a1340c43c8451e522d045aaa1b6">count</a>, gsize& bytes_read, const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& cancellable)</td></tr>
<tr class="memdesc:a1dc8a2babf32f93a0a5dccc0c39e0959 inherit pub_methods_classGio_1_1InputStream"><td class="mdescLeft"> </td><td class="mdescRight">Tries to read <em>count</em> bytes from the stream into the buffer starting at <em>buffer</em>. <a href="#a1dc8a2babf32f93a0a5dccc0c39e0959">More...</a><br /></td></tr>
<tr class="separator:a1dc8a2babf32f93a0a5dccc0c39e0959 inherit pub_methods_classGio_1_1InputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6da0fc57d1a5df7107370c67e84aa496 inherit pub_methods_classGio_1_1InputStream"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1InputStream.html#a6da0fc57d1a5df7107370c67e84aa496">read_all</a> (void* buffer, gsize <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01659.html#gad2f89a1340c43c8451e522d045aaa1b6">count</a>, gsize& bytes_read)</td></tr>
<tr class="memdesc:a6da0fc57d1a5df7107370c67e84aa496 inherit pub_methods_classGio_1_1InputStream"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="el" href="classGio_1_1InputStream.html#a1dc8a2babf32f93a0a5dccc0c39e0959" title="Tries to read count bytes from the stream into the buffer starting at buffer. ">read_all()</a> convenience overload. <a href="#a6da0fc57d1a5df7107370c67e84aa496">More...</a><br /></td></tr>
<tr class="separator:a6da0fc57d1a5df7107370c67e84aa496 inherit pub_methods_classGio_1_1InputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af59e44aed65ee329e01d6ca6179e97b9 inherit pub_methods_classGio_1_1InputStream"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGlib_1_1Bytes.html">Glib::Bytes</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1InputStream.html#af59e44aed65ee329e01d6ca6179e97b9">read_bytes</a> (gsize <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01659.html#gad2f89a1340c43c8451e522d045aaa1b6">count</a>, const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& cancellable)</td></tr>
<tr class="memdesc:af59e44aed65ee329e01d6ca6179e97b9 inherit pub_methods_classGio_1_1InputStream"><td class="mdescLeft"> </td><td class="mdescRight">Like g_input_stream_read(), this tries to read <em>count</em> bytes from the stream in a blocking fashion. <a href="#af59e44aed65ee329e01d6ca6179e97b9">More...</a><br /></td></tr>
<tr class="separator:af59e44aed65ee329e01d6ca6179e97b9 inherit pub_methods_classGio_1_1InputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9653d83a56cef6201286ff5f4b709050 inherit pub_methods_classGio_1_1InputStream"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1InputStream.html#a9653d83a56cef6201286ff5f4b709050">read_bytes_async</a> (gsize <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01659.html#gad2f89a1340c43c8451e522d045aaa1b6">count</a>, const <a class="el" href="namespaceGio.html#aecaa02709f9ab83fa2b36d2571665cbe">SlotAsyncReady</a>& slot, const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& cancellable, int io_priority=<a class="el" href="namespaceGlib.html#a0c450f82b9e34689e2dda2038ba7834fa597ed3aa6067516c9c752896f3816b5e">Glib::PRIORITY_DEFAULT</a>)</td></tr>
<tr class="memdesc:a9653d83a56cef6201286ff5f4b709050 inherit pub_methods_classGio_1_1InputStream"><td class="mdescLeft"> </td><td class="mdescRight">Request an asynchronous read of <em>count</em> bytes from the stream into a new <a class="el" href="classGlib_1_1Bytes.html" title="A simple refcounted data type representing an immutable byte sequence from an unspecified origin...">Glib::Bytes</a>. <a href="#a9653d83a56cef6201286ff5f4b709050">More...</a><br /></td></tr>
<tr class="separator:a9653d83a56cef6201286ff5f4b709050 inherit pub_methods_classGio_1_1InputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af70a7c9073f6a494c8fac975530130c9 inherit pub_methods_classGio_1_1InputStream"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1InputStream.html#af70a7c9073f6a494c8fac975530130c9">read_bytes_async</a> (gsize <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01659.html#gad2f89a1340c43c8451e522d045aaa1b6">count</a>, const <a class="el" href="namespaceGio.html#aecaa02709f9ab83fa2b36d2571665cbe">SlotAsyncReady</a>& slot, int io_priority=<a class="el" href="namespaceGlib.html#a0c450f82b9e34689e2dda2038ba7834fa597ed3aa6067516c9c752896f3816b5e">Glib::PRIORITY_DEFAULT</a>)</td></tr>
<tr class="memdesc:af70a7c9073f6a494c8fac975530130c9 inherit pub_methods_classGio_1_1InputStream"><td class="mdescLeft"> </td><td class="mdescRight">Request an asynchronous read of <em>count</em> bytes from the stream into a new <a class="el" href="classGlib_1_1Bytes.html" title="A simple refcounted data type representing an immutable byte sequence from an unspecified origin...">Glib::Bytes</a>. <a href="#af70a7c9073f6a494c8fac975530130c9">More...</a><br /></td></tr>
<tr class="separator:af70a7c9073f6a494c8fac975530130c9 inherit pub_methods_classGio_1_1InputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0b38e525397cddd9ae4b2ebb395ba3b3 inherit pub_methods_classGio_1_1InputStream"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGlib_1_1Bytes.html">Glib::Bytes</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1InputStream.html#a0b38e525397cddd9ae4b2ebb395ba3b3">read_bytes_finish</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1AsyncResult.html">AsyncResult</a> >& result)</td></tr>
<tr class="memdesc:a0b38e525397cddd9ae4b2ebb395ba3b3 inherit pub_methods_classGio_1_1InputStream"><td class="mdescLeft"> </td><td class="mdescRight">Finishes an asynchronous stream read-into-Bytes operation. <a href="#a0b38e525397cddd9ae4b2ebb395ba3b3">More...</a><br /></td></tr>
<tr class="separator:a0b38e525397cddd9ae4b2ebb395ba3b3 inherit pub_methods_classGio_1_1InputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a17ea65f35c15043156db90af831a44a3 inherit pub_methods_classGio_1_1InputStream"><td class="memItemLeft" align="right" valign="top">gssize </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1InputStream.html#a17ea65f35c15043156db90af831a44a3">skip</a> (gsize <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01659.html#gad2f89a1340c43c8451e522d045aaa1b6">count</a>, const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& cancellable)</td></tr>
<tr class="memdesc:a17ea65f35c15043156db90af831a44a3 inherit pub_methods_classGio_1_1InputStream"><td class="mdescLeft"> </td><td class="mdescRight">Tries to skip <em>count</em> bytes from the stream. <a href="#a17ea65f35c15043156db90af831a44a3">More...</a><br /></td></tr>
<tr class="separator:a17ea65f35c15043156db90af831a44a3 inherit pub_methods_classGio_1_1InputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1ea9146d612c666168886734b79a5d65 inherit pub_methods_classGio_1_1InputStream"><td class="memItemLeft" align="right" valign="top">gssize </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1InputStream.html#a1ea9146d612c666168886734b79a5d65">skip</a> (gsize <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01659.html#gad2f89a1340c43c8451e522d045aaa1b6">count</a>)</td></tr>
<tr class="memdesc:a1ea9146d612c666168886734b79a5d65 inherit pub_methods_classGio_1_1InputStream"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="el" href="classGio_1_1InputStream.html#a17ea65f35c15043156db90af831a44a3" title="Tries to skip count bytes from the stream. ">skip()</a> convenience overload. <a href="#a1ea9146d612c666168886734b79a5d65">More...</a><br /></td></tr>
<tr class="separator:a1ea9146d612c666168886734b79a5d65 inherit pub_methods_classGio_1_1InputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1b76b2503e607475f63731a886456e09 inherit pub_methods_classGio_1_1InputStream"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1InputStream.html#a1b76b2503e607475f63731a886456e09">close</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& cancellable)</td></tr>
<tr class="memdesc:a1b76b2503e607475f63731a886456e09 inherit pub_methods_classGio_1_1InputStream"><td class="mdescLeft"> </td><td class="mdescRight">Closes the stream, releasing resources related to it. <a href="#a1b76b2503e607475f63731a886456e09">More...</a><br /></td></tr>
<tr class="separator:a1b76b2503e607475f63731a886456e09 inherit pub_methods_classGio_1_1InputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7a3202cf7014bcfb2c0a7f301448ae50 inherit pub_methods_classGio_1_1InputStream"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1InputStream.html#a7a3202cf7014bcfb2c0a7f301448ae50">close</a> ()</td></tr>
<tr class="memdesc:a7a3202cf7014bcfb2c0a7f301448ae50 inherit pub_methods_classGio_1_1InputStream"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="el" href="classGio_1_1InputStream.html#a7a3202cf7014bcfb2c0a7f301448ae50" title="A close() convenience overload. ">close()</a> convenience overload. <a href="#a7a3202cf7014bcfb2c0a7f301448ae50">More...</a><br /></td></tr>
<tr class="separator:a7a3202cf7014bcfb2c0a7f301448ae50 inherit pub_methods_classGio_1_1InputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5b7762ee3f3c571fbc59a0c9af6e879e inherit pub_methods_classGio_1_1InputStream"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1InputStream.html#a5b7762ee3f3c571fbc59a0c9af6e879e">read_async</a> (void* buffer, gsize <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01659.html#gad2f89a1340c43c8451e522d045aaa1b6">count</a>, const <a class="el" href="namespaceGio.html#aecaa02709f9ab83fa2b36d2571665cbe">SlotAsyncReady</a>& slot, const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& cancellable, int io_priority=<a class="el" href="namespaceGlib.html#a0c450f82b9e34689e2dda2038ba7834fa597ed3aa6067516c9c752896f3816b5e">Glib::PRIORITY_DEFAULT</a>)</td></tr>
<tr class="memdesc:a5b7762ee3f3c571fbc59a0c9af6e879e inherit pub_methods_classGio_1_1InputStream"><td class="mdescLeft"> </td><td class="mdescRight">Request an asynchronous read of <em>count</em> bytes from the stream into the buffer starting at <em>buffer</em>. <a href="#a5b7762ee3f3c571fbc59a0c9af6e879e">More...</a><br /></td></tr>
<tr class="separator:a5b7762ee3f3c571fbc59a0c9af6e879e inherit pub_methods_classGio_1_1InputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a05bea76fa9ac3c098a167d2b377e36a6 inherit pub_methods_classGio_1_1InputStream"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1InputStream.html#a05bea76fa9ac3c098a167d2b377e36a6">read_async</a> (void* buffer, gsize <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01659.html#gad2f89a1340c43c8451e522d045aaa1b6">count</a>, const <a class="el" href="namespaceGio.html#aecaa02709f9ab83fa2b36d2571665cbe">SlotAsyncReady</a>& slot, int io_priority=<a class="el" href="namespaceGlib.html#a0c450f82b9e34689e2dda2038ba7834fa597ed3aa6067516c9c752896f3816b5e">Glib::PRIORITY_DEFAULT</a>)</td></tr>
<tr class="memdesc:a05bea76fa9ac3c098a167d2b377e36a6 inherit pub_methods_classGio_1_1InputStream"><td class="mdescLeft"> </td><td class="mdescRight">Request an asynchronous read of <em>count</em> bytes from the stream into the buffer starting at <em>buffer</em>. <a href="#a05bea76fa9ac3c098a167d2b377e36a6">More...</a><br /></td></tr>
<tr class="separator:a05bea76fa9ac3c098a167d2b377e36a6 inherit pub_methods_classGio_1_1InputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac089ab220e671ba0af2dd97f2405c0c5 inherit pub_methods_classGio_1_1InputStream"><td class="memItemLeft" align="right" valign="top">gssize </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1InputStream.html#ac089ab220e671ba0af2dd97f2405c0c5">read_finish</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1AsyncResult.html">AsyncResult</a> >& result)</td></tr>
<tr class="memdesc:ac089ab220e671ba0af2dd97f2405c0c5 inherit pub_methods_classGio_1_1InputStream"><td class="mdescLeft"> </td><td class="mdescRight">Finishes an asynchronous stream read operation. <a href="#ac089ab220e671ba0af2dd97f2405c0c5">More...</a><br /></td></tr>
<tr class="separator:ac089ab220e671ba0af2dd97f2405c0c5 inherit pub_methods_classGio_1_1InputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1bf7a4a30005813b0a46e069215907a2 inherit pub_methods_classGio_1_1InputStream"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1InputStream.html#a1bf7a4a30005813b0a46e069215907a2">skip_async</a> (gsize <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01659.html#gad2f89a1340c43c8451e522d045aaa1b6">count</a>, const <a class="el" href="namespaceGio.html#aecaa02709f9ab83fa2b36d2571665cbe">SlotAsyncReady</a>& slot, const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& cancellable, int io_priority=<a class="el" href="namespaceGlib.html#a0c450f82b9e34689e2dda2038ba7834fa597ed3aa6067516c9c752896f3816b5e">Glib::PRIORITY_DEFAULT</a>)</td></tr>
<tr class="memdesc:a1bf7a4a30005813b0a46e069215907a2 inherit pub_methods_classGio_1_1InputStream"><td class="mdescLeft"> </td><td class="mdescRight">Request an asynchronous skip of <em>count</em> bytes from the stream into the buffer starting at <em>buffer</em>. <a href="#a1bf7a4a30005813b0a46e069215907a2">More...</a><br /></td></tr>
<tr class="separator:a1bf7a4a30005813b0a46e069215907a2 inherit pub_methods_classGio_1_1InputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a111e86dad4548394edcff16d7735d2d5 inherit pub_methods_classGio_1_1InputStream"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1InputStream.html#a111e86dad4548394edcff16d7735d2d5">skip_async</a> (gsize <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01659.html#gad2f89a1340c43c8451e522d045aaa1b6">count</a>, const <a class="el" href="namespaceGio.html#aecaa02709f9ab83fa2b36d2571665cbe">SlotAsyncReady</a>& slot, int io_priority=<a class="el" href="namespaceGlib.html#a0c450f82b9e34689e2dda2038ba7834fa597ed3aa6067516c9c752896f3816b5e">Glib::PRIORITY_DEFAULT</a>)</td></tr>
<tr class="memdesc:a111e86dad4548394edcff16d7735d2d5 inherit pub_methods_classGio_1_1InputStream"><td class="mdescLeft"> </td><td class="mdescRight">Request an asynchronous skip of <em>count</em> bytes from the stream into the buffer starting at <em>buffer</em>. <a href="#a111e86dad4548394edcff16d7735d2d5">More...</a><br /></td></tr>
<tr class="separator:a111e86dad4548394edcff16d7735d2d5 inherit pub_methods_classGio_1_1InputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1522468bd203ab3082ab54e9eba68b03 inherit pub_methods_classGio_1_1InputStream"><td class="memItemLeft" align="right" valign="top">gssize </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1InputStream.html#a1522468bd203ab3082ab54e9eba68b03">skip_finish</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1AsyncResult.html">AsyncResult</a> >& result)</td></tr>
<tr class="memdesc:a1522468bd203ab3082ab54e9eba68b03 inherit pub_methods_classGio_1_1InputStream"><td class="mdescLeft"> </td><td class="mdescRight">Finishes a stream skip operation. <a href="#a1522468bd203ab3082ab54e9eba68b03">More...</a><br /></td></tr>
<tr class="separator:a1522468bd203ab3082ab54e9eba68b03 inherit pub_methods_classGio_1_1InputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af66159778ee2d577e9df52063ced53bf inherit pub_methods_classGio_1_1InputStream"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1InputStream.html#af66159778ee2d577e9df52063ced53bf">close_async</a> (const <a class="el" href="namespaceGio.html#aecaa02709f9ab83fa2b36d2571665cbe">SlotAsyncReady</a>& slot, const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& cancellable, int io_priority=<a class="el" href="namespaceGlib.html#a0c450f82b9e34689e2dda2038ba7834fa597ed3aa6067516c9c752896f3816b5e">Glib::PRIORITY_DEFAULT</a>)</td></tr>
<tr class="memdesc:af66159778ee2d577e9df52063ced53bf inherit pub_methods_classGio_1_1InputStream"><td class="mdescLeft"> </td><td class="mdescRight">Requests an asynchronous closes of the stream, releasing resources related to it. <a href="#af66159778ee2d577e9df52063ced53bf">More...</a><br /></td></tr>
<tr class="separator:af66159778ee2d577e9df52063ced53bf inherit pub_methods_classGio_1_1InputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab5160982124f34ed6e475776acd126d2 inherit pub_methods_classGio_1_1InputStream"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1InputStream.html#ab5160982124f34ed6e475776acd126d2">close_async</a> (const <a class="el" href="namespaceGio.html#aecaa02709f9ab83fa2b36d2571665cbe">SlotAsyncReady</a>& slot, int io_priority=<a class="el" href="namespaceGlib.html#a0c450f82b9e34689e2dda2038ba7834fa597ed3aa6067516c9c752896f3816b5e">Glib::PRIORITY_DEFAULT</a>)</td></tr>
<tr class="memdesc:ab5160982124f34ed6e475776acd126d2 inherit pub_methods_classGio_1_1InputStream"><td class="mdescLeft"> </td><td class="mdescRight">Requests an asynchronous closes of the stream, releasing resources related to it. <a href="#ab5160982124f34ed6e475776acd126d2">More...</a><br /></td></tr>
<tr class="separator:ab5160982124f34ed6e475776acd126d2 inherit pub_methods_classGio_1_1InputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae5a0d2c3ccf27661e374f151117a8fb7 inherit pub_methods_classGio_1_1InputStream"><td class="memItemLeft" align="right" valign="top">gboolean </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1InputStream.html#ae5a0d2c3ccf27661e374f151117a8fb7">close_finish</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1AsyncResult.html">AsyncResult</a> >& result)</td></tr>
<tr class="memdesc:ae5a0d2c3ccf27661e374f151117a8fb7 inherit pub_methods_classGio_1_1InputStream"><td class="mdescLeft"> </td><td class="mdescRight">Finishes closing a stream asynchronously, started from g_input_stream_close_async(). <a href="#ae5a0d2c3ccf27661e374f151117a8fb7">More...</a><br /></td></tr>
<tr class="separator:ae5a0d2c3ccf27661e374f151117a8fb7 inherit pub_methods_classGio_1_1InputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classGlib_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGlib_1_1Object')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classGlib_1_1Object.html">Glib::Object</a></td></tr>
<tr class="memitem:a0e6581bcbcc6197cca07df24bb91c492 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#a0e6581bcbcc6197cca07df24bb91c492">get_data</a> (const <a class="el" href="classGlib_1_1QueryQuark.html">QueryQuark</a>& key)</td></tr>
<tr class="separator:a0e6581bcbcc6197cca07df24bb91c492 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afff7a375a862f3f899daaa99710122fa inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#afff7a375a862f3f899daaa99710122fa">set_data</a> (const <a class="el" href="classGlib_1_1Quark.html">Quark</a>& key, void* data)</td></tr>
<tr class="separator:afff7a375a862f3f899daaa99710122fa inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1febe3bae2dd71756e98e523cd33c1b4 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#a1febe3bae2dd71756e98e523cd33c1b4">set_data</a> (const <a class="el" href="classGlib_1_1Quark.html">Quark</a>& key, void* data, <a class="el" href="classGlib_1_1Object.html#a1d8d9f3c19b59eda96c40beca8d520e0">DestroyNotify</a> notify)</td></tr>
<tr class="separator:a1febe3bae2dd71756e98e523cd33c1b4 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aada5b50844bda7ee02bed0ae2a715c00 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#aada5b50844bda7ee02bed0ae2a715c00">remove_data</a> (const <a class="el" href="classGlib_1_1QueryQuark.html">QueryQuark</a>& quark)</td></tr>
<tr class="separator:aada5b50844bda7ee02bed0ae2a715c00 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab454f71bd74403b0cc46d3cbbedd6b0e inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#ab454f71bd74403b0cc46d3cbbedd6b0e">steal_data</a> (const <a class="el" href="classGlib_1_1QueryQuark.html">QueryQuark</a>& quark)</td></tr>
<tr class="separator:ab454f71bd74403b0cc46d3cbbedd6b0e inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classGlib_1_1ObjectBase"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGlib_1_1ObjectBase')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td></tr>
<tr class="memitem:aab599d3eec4b4a9ddc95ccdc6100053d inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#aab599d3eec4b4a9ddc95ccdc6100053d">set_property_value</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& property_name, const <a class="el" href="classGlib_1_1ValueBase.html">Glib::ValueBase</a>& value)</td></tr>
<tr class="memdesc:aab599d3eec4b4a9ddc95ccdc6100053d inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">You probably want to use a specific property_*() accessor method instead. <a href="#aab599d3eec4b4a9ddc95ccdc6100053d">More...</a><br /></td></tr>
<tr class="separator:aab599d3eec4b4a9ddc95ccdc6100053d inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5e30750441b92f0246c9d4ece95fc8a0 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a5e30750441b92f0246c9d4ece95fc8a0">get_property_value</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& property_name, <a class="el" href="classGlib_1_1ValueBase.html">Glib::ValueBase</a>& value) const </td></tr>
<tr class="memdesc:a5e30750441b92f0246c9d4ece95fc8a0 inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">You probably want to use a specific property_*() accessor method instead. <a href="#a5e30750441b92f0246c9d4ece95fc8a0">More...</a><br /></td></tr>
<tr class="separator:a5e30750441b92f0246c9d4ece95fc8a0 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad37844f7ea2c0091a22d011e04c48820 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memTemplParams" colspan="2">template<class PropertyType > </td></tr>
<tr class="memitem:ad37844f7ea2c0091a22d011e04c48820 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memTemplItemLeft" align="right" valign="top">void </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#ad37844f7ea2c0091a22d011e04c48820">set_property</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& property_name, const PropertyType& value)</td></tr>
<tr class="memdesc:ad37844f7ea2c0091a22d011e04c48820 inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">You probably want to use a specific property_*() accessor method instead. <a href="#ad37844f7ea2c0091a22d011e04c48820">More...</a><br /></td></tr>
<tr class="separator:ad37844f7ea2c0091a22d011e04c48820 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5f894c9c36ad391fdc85552af67a8530 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memTemplParams" colspan="2">template<class PropertyType > </td></tr>
<tr class="memitem:a5f894c9c36ad391fdc85552af67a8530 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memTemplItemLeft" align="right" valign="top">void </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a5f894c9c36ad391fdc85552af67a8530">get_property</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& property_name, PropertyType& value) const </td></tr>
<tr class="memdesc:a5f894c9c36ad391fdc85552af67a8530 inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">You probably want to use a specific property_*() accessor method instead. <a href="#a5f894c9c36ad391fdc85552af67a8530">More...</a><br /></td></tr>
<tr class="separator:a5f894c9c36ad391fdc85552af67a8530 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adc6c1e8f094275114d6e2c3ef3a33f98 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#adc6c1e8f094275114d6e2c3ef3a33f98">connect_property_changed</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& property_name, const <a class="elRef" doxygen="/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>< void >& slot)</td></tr>
<tr class="memdesc:adc6c1e8f094275114d6e2c3ef3a33f98 inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">You can use the signal_changed() signal of the property proxy instead, but this is necessary when using the reduced API. <a href="#adc6c1e8f094275114d6e2c3ef3a33f98">More...</a><br /></td></tr>
<tr class="separator:adc6c1e8f094275114d6e2c3ef3a33f98 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a896d7773c00bd2dcd310c861282ee8d1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1connection.html">sigc::connection</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a896d7773c00bd2dcd310c861282ee8d1">connect_property_changed_with_return</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& property_name, const <a class="elRef" doxygen="/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>< void >& slot)</td></tr>
<tr class="memdesc:a896d7773c00bd2dcd310c861282ee8d1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">You can use the signal_changed() signal of the property proxy instead, but this is necessary when using the reduced API. <a href="#a896d7773c00bd2dcd310c861282ee8d1">More...</a><br /></td></tr>
<tr class="separator:a896d7773c00bd2dcd310c861282ee8d1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6e9e13b75f116c20212d318204ce8ea3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a6e9e13b75f116c20212d318204ce8ea3">freeze_notify</a> ()</td></tr>
<tr class="memdesc:a6e9e13b75f116c20212d318204ce8ea3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">Increases the freeze count on object. <a href="#a6e9e13b75f116c20212d318204ce8ea3">More...</a><br /></td></tr>
<tr class="separator:a6e9e13b75f116c20212d318204ce8ea3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1bd8ea7bd8c4084ade6b3c27dddf06a4 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a1bd8ea7bd8c4084ade6b3c27dddf06a4">thaw_notify</a> ()</td></tr>
<tr class="memdesc:a1bd8ea7bd8c4084ade6b3c27dddf06a4 inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">Reverts the effect of a previous call to <a class="el" href="classGlib_1_1ObjectBase.html#a6e9e13b75f116c20212d318204ce8ea3" title="Increases the freeze count on object. ">freeze_notify()</a>. <a href="#a1bd8ea7bd8c4084ade6b3c27dddf06a4">More...</a><br /></td></tr>
<tr class="separator:a1bd8ea7bd8c4084ade6b3c27dddf06a4 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a896a8a5db20043ea82956e3ef4b9c4ae inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a896a8a5db20043ea82956e3ef4b9c4ae">reference</a> () const </td></tr>
<tr class="memdesc:a896a8a5db20043ea82956e3ef4b9c4ae inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">Increment the reference count for this object. <a href="#a896a8a5db20043ea82956e3ef4b9c4ae">More...</a><br /></td></tr>
<tr class="separator:a896a8a5db20043ea82956e3ef4b9c4ae inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3234b8ffb2a35b927e2978c8f3bfbfe3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a3234b8ffb2a35b927e2978c8f3bfbfe3">unreference</a> () const </td></tr>
<tr class="memdesc:a3234b8ffb2a35b927e2978c8f3bfbfe3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">Decrement the reference count for this object. <a href="#a3234b8ffb2a35b927e2978c8f3bfbfe3">More...</a><br /></td></tr>
<tr class="separator:a3234b8ffb2a35b927e2978c8f3bfbfe3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4c6efc18be8cb9c56e58fc0bd20fafbe inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">GObject* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a4c6efc18be8cb9c56e58fc0bd20fafbe">gobj</a> ()</td></tr>
<tr class="memdesc:a4c6efc18be8cb9c56e58fc0bd20fafbe inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GObject. <a href="#a4c6efc18be8cb9c56e58fc0bd20fafbe">More...</a><br /></td></tr>
<tr class="separator:a4c6efc18be8cb9c56e58fc0bd20fafbe inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a778a94181132976bbfb0519793f3b32e inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">const GObject* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a778a94181132976bbfb0519793f3b32e">gobj</a> () const </td></tr>
<tr class="memdesc:a778a94181132976bbfb0519793f3b32e inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GObject. <a href="#a778a94181132976bbfb0519793f3b32e">More...</a><br /></td></tr>
<tr class="separator:a778a94181132976bbfb0519793f3b32e inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9b2a5eb93102f1849e5419016e22a15f inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">GObject* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a9b2a5eb93102f1849e5419016e22a15f">gobj_copy</a> () const </td></tr>
<tr class="memdesc:a9b2a5eb93102f1849e5419016e22a15f inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">Give a ref-ed copy to someone. Use for direct struct access. <a href="#a9b2a5eb93102f1849e5419016e22a15f">More...</a><br /></td></tr>
<tr class="separator:a9b2a5eb93102f1849e5419016e22a15f inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-methods"></a>
Static Public Member Functions</h2></td></tr>
<tr class="memitem:a9880bf6913e0ac284cb2607efbb91178"><td class="memItemLeft" align="right" valign="top">static GType </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#a9880bf6913e0ac284cb2607efbb91178">get_type</a> ()</td></tr>
<tr class="memdesc:a9880bf6913e0ac284cb2607efbb91178"><td class="mdescLeft"> </td><td class="mdescRight">Get the GType for this class, for use with the underlying GObject type system. <a href="#a9880bf6913e0ac284cb2607efbb91178">More...</a><br /></td></tr>
<tr class="separator:a9880bf6913e0ac284cb2607efbb91178"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5ecca0b3f4fdc5962c3c63e4e6706e4e"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a><br class="typebreak" />
< <a class="el" href="classGio_1_1DataInputStream.html">DataInputStream</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#a5ecca0b3f4fdc5962c3c63e4e6706e4e">create</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1InputStream.html">InputStream</a> >& base_stream)</td></tr>
<tr class="separator:a5ecca0b3f4fdc5962c3c63e4e6706e4e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_static_methods_classGio_1_1BufferedInputStream"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classGio_1_1BufferedInputStream')"><img src="closed.png" alt="-"/> Static Public Member Functions inherited from <a class="el" href="classGio_1_1BufferedInputStream.html">Gio::BufferedInputStream</a></td></tr>
<tr class="memitem:aa08a6604e27f04c95fa7ed60838fff02 inherit pub_static_methods_classGio_1_1BufferedInputStream"><td class="memItemLeft" align="right" valign="top">static GType </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1BufferedInputStream.html#aa08a6604e27f04c95fa7ed60838fff02">get_type</a> ()</td></tr>
<tr class="memdesc:aa08a6604e27f04c95fa7ed60838fff02 inherit pub_static_methods_classGio_1_1BufferedInputStream"><td class="mdescLeft"> </td><td class="mdescRight">Get the GType for this class, for use with the underlying GObject type system. <a href="#aa08a6604e27f04c95fa7ed60838fff02">More...</a><br /></td></tr>
<tr class="separator:aa08a6604e27f04c95fa7ed60838fff02 inherit pub_static_methods_classGio_1_1BufferedInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afc33c31f5c437df14d385d3aa9d1a37b inherit pub_static_methods_classGio_1_1BufferedInputStream"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a><br class="typebreak" />
< <a class="el" href="classGio_1_1BufferedInputStream.html">BufferedInputStream</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1BufferedInputStream.html#afc33c31f5c437df14d385d3aa9d1a37b">create</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1InputStream.html">InputStream</a> >& base_stream)</td></tr>
<tr class="memdesc:afc33c31f5c437df14d385d3aa9d1a37b inherit pub_static_methods_classGio_1_1BufferedInputStream"><td class="mdescLeft"> </td><td class="mdescRight">Creates a new <a class="el" href="classGio_1_1InputStream.html" title="Base class for implementing streaming input. ">InputStream</a> from the given base_stream, with a buffer set to the default size (4 kilobytes). <a href="#afc33c31f5c437df14d385d3aa9d1a37b">More...</a><br /></td></tr>
<tr class="separator:afc33c31f5c437df14d385d3aa9d1a37b inherit pub_static_methods_classGio_1_1BufferedInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0ecd42e418c250abc04bfa03f09b252c inherit pub_static_methods_classGio_1_1BufferedInputStream"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a><br class="typebreak" />
< <a class="el" href="classGio_1_1BufferedInputStream.html">BufferedInputStream</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1BufferedInputStream.html#a0ecd42e418c250abc04bfa03f09b252c">create_sized</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1InputStream.html">InputStream</a> >& base_stream, gsize buffer_size)</td></tr>
<tr class="memdesc:a0ecd42e418c250abc04bfa03f09b252c inherit pub_static_methods_classGio_1_1BufferedInputStream"><td class="mdescLeft"> </td><td class="mdescRight">Creates a new <a class="el" href="classGio_1_1InputStream.html" title="Base class for implementing streaming input. ">InputStream</a> from the given base_stream, with a buffer set to size. <a href="#a0ecd42e418c250abc04bfa03f09b252c">More...</a><br /></td></tr>
<tr class="separator:a0ecd42e418c250abc04bfa03f09b252c inherit pub_static_methods_classGio_1_1BufferedInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_static_methods_classGio_1_1FilterInputStream"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classGio_1_1FilterInputStream')"><img src="closed.png" alt="-"/> Static Public Member Functions inherited from <a class="el" href="classGio_1_1FilterInputStream.html">Gio::FilterInputStream</a></td></tr>
<tr class="memitem:ad5357b46433b56fa6ad18ccd5063e71c inherit pub_static_methods_classGio_1_1FilterInputStream"><td class="memItemLeft" align="right" valign="top">static GType </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1FilterInputStream.html#ad5357b46433b56fa6ad18ccd5063e71c">get_type</a> ()</td></tr>
<tr class="memdesc:ad5357b46433b56fa6ad18ccd5063e71c inherit pub_static_methods_classGio_1_1FilterInputStream"><td class="mdescLeft"> </td><td class="mdescRight">Get the GType for this class, for use with the underlying GObject type system. <a href="#ad5357b46433b56fa6ad18ccd5063e71c">More...</a><br /></td></tr>
<tr class="separator:ad5357b46433b56fa6ad18ccd5063e71c inherit pub_static_methods_classGio_1_1FilterInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_static_methods_classGio_1_1InputStream"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classGio_1_1InputStream')"><img src="closed.png" alt="-"/> Static Public Member Functions inherited from <a class="el" href="classGio_1_1InputStream.html">Gio::InputStream</a></td></tr>
<tr class="memitem:a0c4d454f8b892bcfc951740ddaa6f4da inherit pub_static_methods_classGio_1_1InputStream"><td class="memItemLeft" align="right" valign="top">static GType </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1InputStream.html#a0c4d454f8b892bcfc951740ddaa6f4da">get_type</a> ()</td></tr>
<tr class="memdesc:a0c4d454f8b892bcfc951740ddaa6f4da inherit pub_static_methods_classGio_1_1InputStream"><td class="mdescLeft"> </td><td class="mdescRight">Get the GType for this class, for use with the underlying GObject type system. <a href="#a0c4d454f8b892bcfc951740ddaa6f4da">More...</a><br /></td></tr>
<tr class="separator:a0c4d454f8b892bcfc951740ddaa6f4da inherit pub_static_methods_classGio_1_1InputStream"><td class="memSeparator" colspan="2"> </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:a65e68eef09e6aa1d9e52d446a171fba3"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#a65e68eef09e6aa1d9e52d446a171fba3">DataInputStream</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1InputStream.html">InputStream</a> >& base_stream)</td></tr>
<tr class="separator:a65e68eef09e6aa1d9e52d446a171fba3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classGio_1_1BufferedInputStream"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classGio_1_1BufferedInputStream')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="classGio_1_1BufferedInputStream.html">Gio::BufferedInputStream</a></td></tr>
<tr class="memitem:a0a81d8bea742203e775f796f73f46ea4 inherit pro_methods_classGio_1_1BufferedInputStream"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1BufferedInputStream.html#a0a81d8bea742203e775f796f73f46ea4">BufferedInputStream</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1InputStream.html">InputStream</a> >& base_stream)</td></tr>
<tr class="separator:a0a81d8bea742203e775f796f73f46ea4 inherit pro_methods_classGio_1_1BufferedInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afdadf0f95e646cdeede70af551f7fa85 inherit pro_methods_classGio_1_1BufferedInputStream"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1BufferedInputStream.html#afdadf0f95e646cdeede70af551f7fa85">BufferedInputStream</a> (const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1InputStream.html">InputStream</a> >& base_stream, gsize buffer_size)</td></tr>
<tr class="separator:afdadf0f95e646cdeede70af551f7fa85 inherit pro_methods_classGio_1_1BufferedInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classGlib_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classGlib_1_1Object')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="classGlib_1_1Object.html">Glib::Object</a></td></tr>
<tr class="memitem:ad43f7c5ad0336e1eb3af622392a112eb inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#ad43f7c5ad0336e1eb3af622392a112eb">Object</a> ()</td></tr>
<tr class="separator:ad43f7c5ad0336e1eb3af622392a112eb inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6d72588496bd7ac03f72420021fb94a5 inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#a6d72588496bd7ac03f72420021fb94a5">Object</a> (const Glib::ConstructParams& construct_params)</td></tr>
<tr class="separator:a6d72588496bd7ac03f72420021fb94a5 inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6f490eeaeb71db673c36799a0f729be5 inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#a6f490eeaeb71db673c36799a0f729be5">Object</a> (GObject* castitem)</td></tr>
<tr class="separator:a6f490eeaeb71db673c36799a0f729be5 inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5ae4319439a3a03d8f803fb5a27f12df inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#a5ae4319439a3a03d8f803fb5a27f12df">~Object</a> ()</td></tr>
<tr class="separator:a5ae4319439a3a03d8f803fb5a27f12df inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classGlib_1_1ObjectBase"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classGlib_1_1ObjectBase')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td></tr>
<tr class="memitem:a27d3451d9ca28d6a2f00838d7c56d545 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a27d3451d9ca28d6a2f00838d7c56d545">ObjectBase</a> ()</td></tr>
<tr class="memdesc:a27d3451d9ca28d6a2f00838d7c56d545 inherit pro_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">This default constructor is called implicitly from the constructor of user-derived classes, even if, for instance, Gtk::Button calls a different <a class="el" href="classGlib_1_1ObjectBase.html" title="Glib::ObjectBase is a common base class for Objects and Interfaces. ">ObjectBase</a> constructor. <a href="#a27d3451d9ca28d6a2f00838d7c56d545">More...</a><br /></td></tr>
<tr class="separator:a27d3451d9ca28d6a2f00838d7c56d545 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad4ef18214894c6874579313ab21d1018 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#ad4ef18214894c6874579313ab21d1018">ObjectBase</a> (const char* custom_type_name)</td></tr>
<tr class="memdesc:ad4ef18214894c6874579313ab21d1018 inherit pro_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">A derived constructor always overrides this choice. <a href="#ad4ef18214894c6874579313ab21d1018">More...</a><br /></td></tr>
<tr class="separator:ad4ef18214894c6874579313ab21d1018 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3d59b4d85b0ee72a727e6b2e1b31a2ff inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a3d59b4d85b0ee72a727e6b2e1b31a2ff">ObjectBase</a> (const <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00947.html">std::type_info</a>& custom_type_info)</td></tr>
<tr class="memdesc:a3d59b4d85b0ee72a727e6b2e1b31a2ff inherit pro_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">This constructor is a special feature to allow creation of derived types on the fly, without having to use g_object_new() manually. <a href="#a3d59b4d85b0ee72a727e6b2e1b31a2ff">More...</a><br /></td></tr>
<tr class="separator:a3d59b4d85b0ee72a727e6b2e1b31a2ff inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a42ac047a06c36c2d9c75f7cffc537dc4 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a42ac047a06c36c2d9c75f7cffc537dc4">~ObjectBase</a> ()=0</td></tr>
<tr class="separator:a42ac047a06c36c2d9c75f7cffc537dc4 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3faafb14c4f0ca60fbf0f5f5c4d549d0 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a3faafb14c4f0ca60fbf0f5f5c4d549d0">initialize</a> (GObject* castitem)</td></tr>
<tr class="separator:a3faafb14c4f0ca60fbf0f5f5c4d549d0 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="related"></a>
Related Functions</h2></td></tr>
<tr><td class="ititle" colspan="2"><p>(Note that these are not member functions.) </p>
</td></tr>
<tr class="memitem:a88853a1864df25dc8dda900a6ad52266"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a><br class="typebreak" />
< <a class="el" href="classGio_1_1DataInputStream.html">Gio::DataInputStream</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1DataInputStream.html#a88853a1864df25dc8dda900a6ad52266">wrap</a> (GDataInputStream* object, bool take_copy=false)</td></tr>
<tr class="memdesc:a88853a1864df25dc8dda900a6ad52266"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="el" href="namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object. <a href="#a88853a1864df25dc8dda900a6ad52266">More...</a><br /></td></tr>
<tr class="separator:a88853a1864df25dc8dda900a6ad52266"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header related_classGio_1_1BufferedInputStream"><td colspan="2" onclick="javascript:toggleInherit('related_classGio_1_1BufferedInputStream')"><img src="closed.png" alt="-"/> Related Functions inherited from <a class="el" href="classGio_1_1BufferedInputStream.html">Gio::BufferedInputStream</a></td></tr>
<tr class="memitem:adfe9bf4339f83095d6e96dda7b747575 inherit related_classGio_1_1BufferedInputStream"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a><br class="typebreak" />
< <a class="el" href="classGio_1_1BufferedInputStream.html">Gio::BufferedInputStream</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1BufferedInputStream.html#adfe9bf4339f83095d6e96dda7b747575">wrap</a> (GBufferedInputStream* object, bool take_copy=false)</td></tr>
<tr class="memdesc:adfe9bf4339f83095d6e96dda7b747575 inherit related_classGio_1_1BufferedInputStream"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="el" href="namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object. <a href="#adfe9bf4339f83095d6e96dda7b747575">More...</a><br /></td></tr>
<tr class="separator:adfe9bf4339f83095d6e96dda7b747575 inherit related_classGio_1_1BufferedInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header related_classGio_1_1FilterInputStream"><td colspan="2" onclick="javascript:toggleInherit('related_classGio_1_1FilterInputStream')"><img src="closed.png" alt="-"/> Related Functions inherited from <a class="el" href="classGio_1_1FilterInputStream.html">Gio::FilterInputStream</a></td></tr>
<tr class="memitem:a5f5a6b8c088b86f8671d9dfaed24ac70 inherit related_classGio_1_1FilterInputStream"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a><br class="typebreak" />
< <a class="el" href="classGio_1_1FilterInputStream.html">Gio::FilterInputStream</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1FilterInputStream.html#a5f5a6b8c088b86f8671d9dfaed24ac70">wrap</a> (GFilterInputStream* object, bool take_copy=false)</td></tr>
<tr class="memdesc:a5f5a6b8c088b86f8671d9dfaed24ac70 inherit related_classGio_1_1FilterInputStream"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="el" href="namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object. <a href="#a5f5a6b8c088b86f8671d9dfaed24ac70">More...</a><br /></td></tr>
<tr class="separator:a5f5a6b8c088b86f8671d9dfaed24ac70 inherit related_classGio_1_1FilterInputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header related_classGio_1_1InputStream"><td colspan="2" onclick="javascript:toggleInherit('related_classGio_1_1InputStream')"><img src="closed.png" alt="-"/> Related Functions inherited from <a class="el" href="classGio_1_1InputStream.html">Gio::InputStream</a></td></tr>
<tr class="memitem:aec580b0fc1e0807d7ccba6cbb7e302db inherit related_classGio_1_1InputStream"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1InputStream.html">Gio::InputStream</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1InputStream.html#aec580b0fc1e0807d7ccba6cbb7e302db">wrap</a> (GInputStream* object, bool take_copy=false)</td></tr>
<tr class="memdesc:aec580b0fc1e0807d7ccba6cbb7e302db inherit related_classGio_1_1InputStream"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="el" href="namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object. <a href="#aec580b0fc1e0807d7ccba6cbb7e302db">More...</a><br /></td></tr>
<tr class="separator:aec580b0fc1e0807d7ccba6cbb7e302db inherit related_classGio_1_1InputStream"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header related_classGlib_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('related_classGlib_1_1Object')"><img src="closed.png" alt="-"/> Related Functions inherited from <a class="el" href="classGlib_1_1Object.html">Glib::Object</a></td></tr>
<tr class="memitem:ae4dea9a8dc611d6e4400a5b6a3cb4e7f inherit related_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGlib_1_1Object.html">Glib::Object</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#ae4dea9a8dc611d6e4400a5b6a3cb4e7f">wrap</a> (GObject* object, bool take_copy=false)</td></tr>
<tr class="separator:ae4dea9a8dc611d6e4400a5b6a3cb4e7f inherit related_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </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_types_classGlib_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('pub_types_classGlib_1_1Object')"><img src="closed.png" alt="-"/> Public Types inherited from <a class="el" href="classGlib_1_1Object.html">Glib::Object</a></td></tr>
<tr class="memitem:a1d8d9f3c19b59eda96c40beca8d520e0 inherit pub_types_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">typedef void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#a1d8d9f3c19b59eda96c40beca8d520e0">DestroyNotify</a> )(gpointer data)</td></tr>
<tr class="separator:a1d8d9f3c19b59eda96c40beca8d520e0 inherit pub_types_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>An implementation of <a class="el" href="classGio_1_1BufferedInputStream.html" title="The buffered input stream implements FilterInputStream and provides for buffered reads. ">BufferedInputStream</a> that allows for high-level data manipulation of arbitrary data (including binary operations). </p>
<dl class="since_2_16"><dt><b><a class="el" href="since_2_16.html#_since_2_16000021">Since glibmm 2.16:</a></b></dt><dd></dd></dl>
</div><h2 class="groupheader">Constructor & Destructor Documentation</h2>
<a class="anchor" id="ae97b466761df6cccb9b4232e8dece6d5"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual Gio::DataInputStream::~DataInputStream </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a65e68eef09e6aa1d9e52d446a171fba3"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">Gio::DataInputStream::DataInputStream </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1InputStream.html">InputStream</a> >& </td>
<td class="paramname"><em>base_stream</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">explicit</span><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="a5ecca0b3f4fdc5962c3c63e4e6706e4e"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGio_1_1DataInputStream.html">DataInputStream</a>> Gio::DataInputStream::create </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1InputStream.html">InputStream</a> >& </td>
<td class="paramname"><em>base_stream</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a3be4cc7ce927af027630cdeea0914004"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__giommEnums.html#ga87dea9b56fed9c0bca0f8426fb57781e">DataStreamByteOrder</a> Gio::DataInputStream::get_byte_order </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the byte order for the data input stream. </p>
<dl class="section return"><dt>Returns</dt><dd>The <em>stream's</em> current DataStreamByteOrder. </dd></dl>
</div>
</div>
<a class="anchor" id="afe528b7ecf9401b7bf91f0c67e34de9f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__giommEnums.html#ga2de111fe308aff763fb98a39bc507267">DataStreamNewlineType</a> Gio::DataInputStream::get_newline_type </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the current newline type for the <em>stream</em>. </p>
<dl class="section return"><dt>Returns</dt><dd>DataStreamNewlineType for the given <em>stream</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a9880bf6913e0ac284cb2607efbb91178"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static GType Gio::DataInputStream::get_type </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Get the GType for this class, for use with the underlying GObject type system. </p>
</div>
</div>
<a class="anchor" id="ad788764326462190e900785f50a50740"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">GDataInputStream* Gio::DataInputStream::gobj </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Provides access to the underlying C GObject. </p>
</div>
</div>
<a class="anchor" id="a5d8f01998854eac791a3089acef051c0"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">const GDataInputStream* Gio::DataInputStream::gobj </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Provides access to the underlying C GObject. </p>
</div>
</div>
<a class="anchor" id="a8252806b8ac5548c51a0418162ddb6ab"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GDataInputStream* Gio::DataInputStream::gobj_copy </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. </p>
</div>
</div>
<a class="anchor" id="a53ffda2bedfb47315afc50d9ec64ba3b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="el" href="group__giommEnums.html#ga87dea9b56fed9c0bca0f8426fb57781e">DataStreamByteOrder</a> > Gio::DataInputStream::property_byte_order </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>The byte order. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p><dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a0311a24a36a555cf9e471fbe7aa11050"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="el" href="group__giommEnums.html#ga87dea9b56fed9c0bca0f8426fb57781e">DataStreamByteOrder</a> > Gio::DataInputStream::property_byte_order </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The byte order. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p><dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="adf55222b27ecf5db6a604d4e111431f8"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a>< <a class="el" href="group__giommEnums.html#ga2de111fe308aff763fb98a39bc507267">DataStreamNewlineType</a> > Gio::DataInputStream::property_newline_type </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>The accepted types of line ending. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p><dl class="section return"><dt>Returns</dt><dd>A PropertyProxy that allows you to get or set the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="aec1a1d826fb927eccc4c9f5b444e33af"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="el" href="group__giommEnums.html#ga2de111fe308aff763fb98a39bc507267">DataStreamNewlineType</a> > Gio::DataInputStream::property_newline_type </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The accepted types of line ending. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p><dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="aca226b5c2d1248dd079d835dd089570d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">guchar Gio::DataInputStream::read_byte </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& </td>
<td class="paramname"><em>cancellable</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Reads an unsigned 8-bit/1-byte value from <em>stream</em>. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">cancellable</td><td>Optional <a class="el" href="classGio_1_1Cancellable.html" title="Allows actions to be cancelled. ">Cancellable</a> object, <code>0</code> to ignore. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>An unsigned 8-bit/1-byte value read from the <em>stream</em> or %0 if an error occurred. </dd></dl>
</div>
</div>
<a class="anchor" id="af4d01aa4e791d403b79db406befcc28e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">guchar Gio::DataInputStream::read_byte </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>A <a class="el" href="classGio_1_1DataInputStream.html#af4d01aa4e791d403b79db406befcc28e" title="A read_byte() convenience overload. ">read_byte()</a> convenience overload. </p>
</div>
</div>
<a class="anchor" id="a9fd357f931715d83c69b7010ff86af80"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">gint16 Gio::DataInputStream::read_int16 </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& </td>
<td class="paramname"><em>cancellable</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Reads a 16-bit/2-byte value from <em>stream</em>. </p>
<p>In order to get the correct byte order for this read operation, see g_data_input_stream_get_byte_order() and g_data_input_stream_set_byte_order().</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">cancellable</td><td>Optional <a class="el" href="classGio_1_1Cancellable.html" title="Allows actions to be cancelled. ">Cancellable</a> object, <code>0</code> to ignore. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A signed 16-bit/2-byte value read from <em>stream</em> or %0 if an error occurred. </dd></dl>
</div>
</div>
<a class="anchor" id="a2407fa551610510cfdcda3b2d8adabdc"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">gint16 Gio::DataInputStream::read_int16 </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>A <a class="el" href="classGio_1_1DataInputStream.html#a2407fa551610510cfdcda3b2d8adabdc" title="A read_int16() convenience overload. ">read_int16()</a> convenience overload. </p>
</div>
</div>
<a class="anchor" id="a6280a6c0c6cc1803dc3df8dc29910bcd"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">gint32 Gio::DataInputStream::read_int32 </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& </td>
<td class="paramname"><em>cancellable</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Reads a signed 32-bit/4-byte value from <em>stream</em>. </p>
<p>In order to get the correct byte order for this read operation, see Glib::data_stream_get_byte_order() and Glib::data_stream_set_byte_order().</p>
<p>The operation can be cancelled by triggering the cancellable object from another thread. If the operation was cancelled, a <a class="el" href="classGio_1_1Error.html" title="Exception class for giomm errors. ">Gio::Error</a> will be thrown with CANCELLED.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">cancellable</td><td><a class="el" href="classGio_1_1Cancellable.html" title="Allows actions to be cancelled. ">Cancellable</a> object. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A signed 32-bit/4-byte value read from the <em>stream</em> or %0 if an error occurred. </dd></dl>
</div>
</div>
<a class="anchor" id="adbbe894fae2ba5d071c3f50895af9067"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">gint32 Gio::DataInputStream::read_int32 </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>A <a class="el" href="classGio_1_1DataInputStream.html#adbbe894fae2ba5d071c3f50895af9067" title="A read_int32() convenience overload. ">read_int32()</a> convenience overload. </p>
</div>
</div>
<a class="anchor" id="a5d9599527bcd651841fd4f73082d26e0"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">gint64 Gio::DataInputStream::read_int64 </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& </td>
<td class="paramname"><em>cancellable</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Reads a 64-bit/8-byte value from <em>stream</em>. </p>
<p>In order to get the correct byte order for this read operation, see Glib::data_stream_get_byte_order() and Glib::data_stream_set_byte_order().</p>
<p>The operation can be cancelled by triggering the cancellable object from another thread. If the operation was cancelled, a <a class="el" href="classGio_1_1Error.html" title="Exception class for giomm errors. ">Gio::Error</a> will be thrown with CANCELLED.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">cancellable</td><td><a class="el" href="classGio_1_1Cancellable.html" title="Allows actions to be cancelled. ">Cancellable</a> object. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A signed 64-bit/8-byte value read from <em>stream</em> or %0 if an error occurred. </dd></dl>
</div>
</div>
<a class="anchor" id="a6ccd4123a211d1d89c17bb6e4a4aae35"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">gint64 Gio::DataInputStream::read_int64 </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>A <a class="el" href="classGio_1_1DataInputStream.html#a6ccd4123a211d1d89c17bb6e4a4aae35" title="A read_int64() convenience overload. ">read_int64()</a> convenience overload. </p>
</div>
</div>
<a class="anchor" id="a4e1ac2a250c7acd60417454379d580a7"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gio::DataInputStream::read_line </td>
<td>(</td>
<td class="paramtype"><a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> & </td>
<td class="paramname"><em>line</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& </td>
<td class="paramname"><em>cancellable</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Reads a line from the data input stream. </p>
<p>The operation can be cancelled by triggering the cancellable object from another thread. If the operation was cancelled, a <a class="el" href="classGio_1_1Error.html" title="Exception class for giomm errors. ">Gio::Error</a> with CANCELLED will be thrown.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">line</td><td>A string to fill with the read data (without the newlines). </td></tr>
<tr><td class="paramname">cancellable</td><td>A cancellable object. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if the read succeeded without error. </dd></dl>
</div>
</div>
<a class="anchor" id="a5186689410fe626e35688190b65ec0c5"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gio::DataInputStream::read_line </td>
<td>(</td>
<td class="paramtype"><a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> & </td>
<td class="paramname"><em>line</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>A non-cancellable version of <a class="el" href="classGio_1_1DataInputStream.html#a4e1ac2a250c7acd60417454379d580a7" title="Reads a line from the data input stream. ">read_line()</a>. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">line</td><td>A string to fill with the read data (without the newlines). </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if the read succeeded without error. </dd></dl>
</div>
</div>
<a class="anchor" id="aad31c733d13f737f893326b3b7f1ff0d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gio::DataInputStream::read_line_async </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="namespaceGio.html#aecaa02709f9ab83fa2b36d2571665cbe">SlotAsyncReady</a>& </td>
<td class="paramname"><em>slot</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& </td>
<td class="paramname"><em>cancellable</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>io_priority</em> = <code><a class="el" href="namespaceGlib.html#a0c450f82b9e34689e2dda2038ba7834fa597ed3aa6067516c9c752896f3816b5e">Glib::PRIORITY_DEFAULT</a></code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>The asynchronous version of <a class="el" href="classGio_1_1DataInputStream.html#a058c5367f9be4e4e36d5fb9de2201815" title="Reads a string from the data input stream, up to the first occurrence of any of the stop characters...">read_until()</a>. </p>
<p>It is an error to have two outstanding calls to this function.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">slot</td><td>The slot to call when the request is satisfied. </td></tr>
<tr><td class="paramname">cancellable</td><td>A cancellable object. </td></tr>
<tr><td class="paramname">io_priority</td><td>The I/O priority of the request. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if the read succeeded without error. </dd></dl>
</div>
</div>
<a class="anchor" id="a538562b9bf3a80138ba9918b2249f834"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gio::DataInputStream::read_line_finish </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1AsyncResult.html">AsyncResult</a> >& </td>
<td class="paramname"><em>result</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> & </td>
<td class="paramname"><em>data</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Finish an asynchronous call started by <a class="el" href="classGio_1_1DataInputStream.html#aad31c733d13f737f893326b3b7f1ff0d" title="The asynchronous version of read_until(). ">read_line_async()</a>. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">result</td><td>The <a class="el" href="classGio_1_1AsyncResult.html" title="Provides a base class for implementing asynchronous function results. ">AsyncResult</a> that was provided to the callback slot. </td></tr>
<tr><td class="paramname">data</td><td>A string to fill with the read data. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if the read succeeded without error. </dd></dl>
</div>
</div>
<a class="anchor" id="a5dade4189842c81b4dc3fc43a8b79af3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gio::DataInputStream::read_line_finish_utf8 </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1AsyncResult.html">AsyncResult</a> >& </td>
<td class="paramname"><em>result</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> & </td>
<td class="paramname"><em>data</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">gsize & </td>
<td class="paramname"><em>length</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Finish an asynchronous call started by g_data_input_stream_read_line_async(). </p>
<dl class="since_2_30"><dt><b><a class="el" href="since_2_30.html#_since_2_30000007">Since glibmm 2.30:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">result</td><td>The <a class="el" href="classGio_1_1AsyncResult.html" title="Provides a base class for implementing asynchronous function results. ">AsyncResult</a> that was provided to the callback. </td></tr>
<tr><td class="paramname">length</td><td>A #gsize to get the length of the data read in. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A string with the line that was read in (without the newlines). Set <em>length</em> to a #gsize to get the length of the read line. On an error, it will return <code>0</code> and <em>error</em> will be set. For UTF-8 conversion errors, the set error domain is CONVERT_ERROR. If there's no content to read, it will still return <code>0</code>, but <em>error</em> won't be set. </dd></dl>
</div>
</div>
<a class="anchor" id="a79e503ebe50065088e7daaa306da9cc3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gio::DataInputStream::read_line_finish_utf8 </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1AsyncResult.html">AsyncResult</a> >& </td>
<td class="paramname"><em>result</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> & </td>
<td class="paramname"><em>data</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>A <a class="el" href="classGio_1_1DataInputStream.html#a5dade4189842c81b4dc3fc43a8b79af3" title="Finish an asynchronous call started by g_data_input_stream_read_line_async(). ">read_line_finish_utf8()</a> convenience overload. </p>
</div>
</div>
<a class="anchor" id="ac779efdf33abb470832715abeb47f3ef"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gio::DataInputStream::read_line_utf8 </td>
<td>(</td>
<td class="paramtype"><a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> & </td>
<td class="paramname"><em>line</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& </td>
<td class="paramname"><em>cancellable</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">gsize & </td>
<td class="paramname"><em>length</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Reads a UTF-8 encoded line from the data input stream. </p>
<p>If <em>cancellable</em> is not <code>0</code>, then the operation can be cancelled by triggering the cancellable object from another thread. If the operation was cancelled, the error IO_ERROR_CANCELLED will be returned.</p>
<dl class="since_2_30"><dt><b><a class="el" href="since_2_30.html#_since_2_30000006">Since glibmm 2.30:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">length</td><td>A #gsize to get the length of the data read in. </td></tr>
<tr><td class="paramname">cancellable</td><td>Optional <a class="el" href="classGio_1_1Cancellable.html" title="Allows actions to be cancelled. ">Cancellable</a> object, <code>0</code> to ignore. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A NUL terminated UTF-8 string with the line that was read in (without the newlines). Set <em>length</em> to a #gsize to get the length of the read line. On an error, it will return <code>0</code> and <em>error</em> will be set. For UTF-8 conversion errors, the set error domain is CONVERT_ERROR. If there's no content to read, it will still return <code>0</code>, but <em>error</em> won't be set. </dd></dl>
</div>
</div>
<a class="anchor" id="ad48b87d450f26683d167c74c7c224ceb"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gio::DataInputStream::read_line_utf8 </td>
<td>(</td>
<td class="paramtype"><a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> & </td>
<td class="paramname"><em>line</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& </td>
<td class="paramname"><em>cancellable</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>A <a class="el" href="classGio_1_1DataInputStream.html#ac779efdf33abb470832715abeb47f3ef" title="Reads a UTF-8 encoded line from the data input stream. ">read_line_utf8()</a> convenience overload. </p>
</div>
</div>
<a class="anchor" id="aa1ba4df39f51b81c6e105c71d5941493"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gio::DataInputStream::read_line_utf8 </td>
<td>(</td>
<td class="paramtype"><a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> & </td>
<td class="paramname"><em>line</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">gsize & </td>
<td class="paramname"><em>length</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>A <a class="el" href="classGio_1_1DataInputStream.html#ac779efdf33abb470832715abeb47f3ef" title="Reads a UTF-8 encoded line from the data input stream. ">read_line_utf8()</a> convenience overload. </p>
</div>
</div>
<a class="anchor" id="a8cdccad3a356c1bc34bc9ec967b710b0"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gio::DataInputStream::read_line_utf8 </td>
<td>(</td>
<td class="paramtype"><a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> & </td>
<td class="paramname"><em>line</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>A <a class="el" href="classGio_1_1DataInputStream.html#ac779efdf33abb470832715abeb47f3ef" title="Reads a UTF-8 encoded line from the data input stream. ">read_line_utf8()</a> convenience overload. </p>
</div>
</div>
<a class="anchor" id="a9ac667e423ec3c3d997fc2a4683956d3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">guint16 Gio::DataInputStream::read_uint16 </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& </td>
<td class="paramname"><em>cancellable</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Reads an unsigned 16-bit/2-byte value from <em>stream</em>. </p>
<p>In order to get the correct byte order for this read operation, see g_data_input_stream_get_byte_order() and g_data_input_stream_set_byte_order().</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">cancellable</td><td>Optional <a class="el" href="classGio_1_1Cancellable.html" title="Allows actions to be cancelled. ">Cancellable</a> object, <code>0</code> to ignore. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>An unsigned 16-bit/2-byte value read from the <em>stream</em> or %0 if an error occurred. </dd></dl>
</div>
</div>
<a class="anchor" id="a4e99722aa033a78ac2f4dc593b36d197"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">guint16 Gio::DataInputStream::read_uint16 </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>A <a class="el" href="classGio_1_1DataInputStream.html#a4e99722aa033a78ac2f4dc593b36d197" title="A read_uint16() convenience overload. ">read_uint16()</a> convenience overload. </p>
</div>
</div>
<a class="anchor" id="ae7d36dbd67425b923fe335ec5a3f4124"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">guint32 Gio::DataInputStream::read_uint32 </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& </td>
<td class="paramname"><em>cancellable</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Reads an unsigned 32-bit/4-byte value from <em>stream</em>. </p>
<p>In order to get the correct byte order for this read operation, see Glib::data_stream_get_byte_order() and Glib::data_stream_set_byte_order().</p>
<p>The operation can be cancelled by triggering the cancellable object from another thread. If the operation was cancelled, a <a class="el" href="classGio_1_1Error.html" title="Exception class for giomm errors. ">Gio::Error</a> will be thrown with CANCELLED.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">cancellable</td><td><a class="el" href="classGio_1_1Cancellable.html" title="Allows actions to be cancelled. ">Cancellable</a> object. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>An unsigned 32-bit/4-byte value read from the <em>stream</em> or %0 if an error occurred. </dd></dl>
</div>
</div>
<a class="anchor" id="a587856139c73d6c2df1ad2c5560cffec"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">guint32 Gio::DataInputStream::read_uint32 </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>A <a class="el" href="classGio_1_1DataInputStream.html#a587856139c73d6c2df1ad2c5560cffec" title="A read_uint32() convenience overload. ">read_uint32()</a> convenience overload. </p>
</div>
</div>
<a class="anchor" id="a2e486863876f833e910286300c7e17a4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">guint64 Gio::DataInputStream::read_uint64 </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& </td>
<td class="paramname"><em>cancellable</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Reads an unsigned 64-bit/8-byte value from <em>stream</em>. </p>
<p>In order to get the correct byte order for this read operation, see Glib::data_stream_get_byte_order().</p>
<p>The operation can be cancelled by triggering the cancellable object from another thread. If the operation was cancelled, a <a class="el" href="classGio_1_1Error.html" title="Exception class for giomm errors. ">Gio::Error</a> will be thrown with CANCELLED.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">cancellable</td><td><a class="el" href="classGio_1_1Cancellable.html" title="Allows actions to be cancelled. ">Cancellable</a> object. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>An unsigned 64-bit/8-byte read from <em>stream</em> or %0 if an error occurred. </dd></dl>
</div>
</div>
<a class="anchor" id="a9c7ed7807b2a8370f879a820dd0c7989"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">guint64 Gio::DataInputStream::read_uint64 </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>A <a class="el" href="classGio_1_1DataInputStream.html#a9c7ed7807b2a8370f879a820dd0c7989" title="A read_uint64() convenience overload. ">read_uint64()</a> convenience overload. </p>
</div>
</div>
<a class="anchor" id="a058c5367f9be4e4e36d5fb9de2201815"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gio::DataInputStream::read_until </td>
<td>(</td>
<td class="paramtype"><a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> & </td>
<td class="paramname"><em>data</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> & </td>
<td class="paramname"><em>stop_chars</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& </td>
<td class="paramname"><em>cancellable</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Reads a string from the data input stream, up to the first occurrence of any of the stop characters. </p>
<p>Note that, in contrast to <a class="el" href="classGio_1_1DataInputStream.html#a708cba487c68c8c927fe8ae6277b6123" title="The asynchronous version of read_until(). ">read_until_async()</a>, this function consumes the stop character that it finds.</p>
<p>Don't use this function in new code. Its functionality is inconsistent with <a class="el" href="classGio_1_1DataInputStream.html#a708cba487c68c8c927fe8ae6277b6123" title="The asynchronous version of read_until(). ">read_until_async()</a>. Both functions will be marked as deprecated in a future release. Use <a class="el" href="classGio_1_1DataInputStream.html#ae1ecebe6229884c4510e5b42eabe4874" title="Reads a string from the data input stream, up to the first occurrence of any of the stop characters...">read_upto()</a> instead, but note that that method does not consume the stop character.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">data</td><td>A string to fill with the read data. </td></tr>
<tr><td class="paramname">stop_chars</td><td>Characters to terminate the read. </td></tr>
<tr><td class="paramname">cancellable</td><td>A cancellable object. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if the read succeeded without error. </dd></dl>
</div>
</div>
<a class="anchor" id="aa7d2a04bf5a4628df0530ec40d4c33cf"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gio::DataInputStream::read_until </td>
<td>(</td>
<td class="paramtype"><a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> & </td>
<td class="paramname"><em>data</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> & </td>
<td class="paramname"><em>stop_chars</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>A non-cancellable version of <a class="el" href="classGio_1_1DataInputStream.html#a058c5367f9be4e4e36d5fb9de2201815" title="Reads a string from the data input stream, up to the first occurrence of any of the stop characters...">read_until()</a>. </p>
<p>Note that, in contrast to <a class="el" href="classGio_1_1DataInputStream.html#a708cba487c68c8c927fe8ae6277b6123" title="The asynchronous version of read_until(). ">read_until_async()</a>, this function consumes the stop character that it finds.</p>
<p>Don't use this function in new code. Its functionality is inconsistent with <a class="el" href="classGio_1_1DataInputStream.html#a708cba487c68c8c927fe8ae6277b6123" title="The asynchronous version of read_until(). ">read_until_async()</a>. Both functions will be marked as deprecated in a future release. Use <a class="el" href="classGio_1_1DataInputStream.html#ae1ecebe6229884c4510e5b42eabe4874" title="Reads a string from the data input stream, up to the first occurrence of any of the stop characters...">read_upto()</a> instead, but note that that method does not consume the stop character.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">data</td><td>A string to fill with the read data. </td></tr>
<tr><td class="paramname">stop_chars</td><td>Characters to terminate the read. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if the read succeeded without error. </dd></dl>
</div>
</div>
<a class="anchor" id="a708cba487c68c8c927fe8ae6277b6123"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gio::DataInputStream::read_until_async </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> & </td>
<td class="paramname"><em>stop_chars</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="namespaceGio.html#aecaa02709f9ab83fa2b36d2571665cbe">SlotAsyncReady</a>& </td>
<td class="paramname"><em>slot</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& </td>
<td class="paramname"><em>cancellable</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>io_priority</em> = <code><a class="el" href="namespaceGlib.html#a0c450f82b9e34689e2dda2038ba7834fa597ed3aa6067516c9c752896f3816b5e">Glib::PRIORITY_DEFAULT</a></code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>The asynchronous version of <a class="el" href="classGio_1_1DataInputStream.html#a058c5367f9be4e4e36d5fb9de2201815" title="Reads a string from the data input stream, up to the first occurrence of any of the stop characters...">read_until()</a>. </p>
<p>It is an error to have two outstanding calls to this function.</p>
<p>Note that, in contrast to ead_until(), this function does not consume the stop character that it finds. You must read it for yourself.</p>
<p>Don't use this function in new code. Its functionality is inconsistent with <a class="el" href="classGio_1_1DataInputStream.html#a058c5367f9be4e4e36d5fb9de2201815" title="Reads a string from the data input stream, up to the first occurrence of any of the stop characters...">read_until()</a>. Both functions will be marked as deprecated in a future release. Use <a class="el" href="classGio_1_1DataInputStream.html#a76d195879b8aa04c22a5c69dc82c0f46" title="The asynchronous version of read_upto(). ">read_upto_async()</a> instead.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">stop_chars</td><td>Characters to terminate the read. </td></tr>
<tr><td class="paramname">slot</td><td>The slot to call when the request is satisfied. </td></tr>
<tr><td class="paramname">cancellable</td><td>A cancellable object. </td></tr>
<tr><td class="paramname">io_priority</td><td>The I/O priority of the request. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if the read succeeded without error. </dd></dl>
</div>
</div>
<a class="anchor" id="aa851cb398896f39bea56868b46bd480d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gio::DataInputStream::read_until_finish </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1AsyncResult.html">AsyncResult</a> >& </td>
<td class="paramname"><em>result</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> & </td>
<td class="paramname"><em>data</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Finish an asynchronous call started by <a class="el" href="classGio_1_1DataInputStream.html#a708cba487c68c8c927fe8ae6277b6123" title="The asynchronous version of read_until(). ">read_until_async()</a>. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">result</td><td>The <a class="el" href="classGio_1_1AsyncResult.html" title="Provides a base class for implementing asynchronous function results. ">AsyncResult</a> that was provided to the callback slot. </td></tr>
<tr><td class="paramname">data</td><td>A string to fill with the read data. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if the read succeeded without error. </dd></dl>
</div>
</div>
<a class="anchor" id="ae1ecebe6229884c4510e5b42eabe4874"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gio::DataInputStream::read_upto </td>
<td>(</td>
<td class="paramtype"><a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> & </td>
<td class="paramname"><em>data</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> & </td>
<td class="paramname"><em>stop_chars</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& </td>
<td class="paramname"><em>cancellable</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Reads a string from the data input stream, up to the first occurrence of any of the stop characters. </p>
<p>In contrast to <a class="el" href="classGio_1_1DataInputStream.html#a058c5367f9be4e4e36d5fb9de2201815" title="Reads a string from the data input stream, up to the first occurrence of any of the stop characters...">read_until()</a>, this method does <em>not</em> consume the stop character. You have to use <a class="el" href="classGio_1_1DataInputStream.html#af4d01aa4e791d403b79db406befcc28e" title="A read_byte() convenience overload. ">read_byte()</a> to get it before calling <a class="el" href="classGio_1_1DataInputStream.html#ae1ecebe6229884c4510e5b42eabe4874" title="Reads a string from the data input stream, up to the first occurrence of any of the stop characters...">read_upto()</a> again.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">data</td><td>A string to fill with the read data. </td></tr>
<tr><td class="paramname">stop_chars</td><td>Characters to terminate the read. </td></tr>
<tr><td class="paramname">cancellable</td><td>A cancellable object. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if the read succeeded without error. </dd></dl>
</div>
</div>
<a class="anchor" id="afe582f97c8438b1517f16e805e332d1f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gio::DataInputStream::read_upto </td>
<td>(</td>
<td class="paramtype"><a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> & </td>
<td class="paramname"><em>data</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> & </td>
<td class="paramname"><em>stop_chars</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>A non-cancellable version of <a class="el" href="classGio_1_1DataInputStream.html#ae1ecebe6229884c4510e5b42eabe4874" title="Reads a string from the data input stream, up to the first occurrence of any of the stop characters...">read_upto()</a>. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">data</td><td>A string to fill with the read data. </td></tr>
<tr><td class="paramname">stop_chars</td><td>Characters to terminate the read. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if the read succeeded without error. </dd></dl>
</div>
</div>
<a class="anchor" id="a76d195879b8aa04c22a5c69dc82c0f46"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gio::DataInputStream::read_upto_async </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> & </td>
<td class="paramname"><em>stop_chars</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="namespaceGio.html#aecaa02709f9ab83fa2b36d2571665cbe">SlotAsyncReady</a>& </td>
<td class="paramname"><em>slot</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Cancellable.html">Cancellable</a> >& </td>
<td class="paramname"><em>cancellable</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>io_priority</em> = <code><a class="el" href="namespaceGlib.html#a0c450f82b9e34689e2dda2038ba7834fa597ed3aa6067516c9c752896f3816b5e">Glib::PRIORITY_DEFAULT</a></code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>The asynchronous version of <a class="el" href="classGio_1_1DataInputStream.html#ae1ecebe6229884c4510e5b42eabe4874" title="Reads a string from the data input stream, up to the first occurrence of any of the stop characters...">read_upto()</a>. </p>
<p>It is an error to have two outstanding calls to this function.</p>
<p>In contrast to <a class="el" href="classGio_1_1DataInputStream.html#a058c5367f9be4e4e36d5fb9de2201815" title="Reads a string from the data input stream, up to the first occurrence of any of the stop characters...">read_until()</a>, this method does <em>not</em> consume the stop character. You have to use <a class="el" href="classGio_1_1DataInputStream.html#af4d01aa4e791d403b79db406befcc28e" title="A read_byte() convenience overload. ">read_byte()</a> to get it before calling <a class="el" href="classGio_1_1DataInputStream.html#ae1ecebe6229884c4510e5b42eabe4874" title="Reads a string from the data input stream, up to the first occurrence of any of the stop characters...">read_upto()</a> again.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">stop_chars</td><td>Characters to terminate the read. </td></tr>
<tr><td class="paramname">slot</td><td>The slot to call when the request is satisfied. </td></tr>
<tr><td class="paramname">cancellable</td><td>A cancellable object. </td></tr>
<tr><td class="paramname">io_priority</td><td>The I/O priority of the request. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if the read succeeded without error. </dd></dl>
</div>
</div>
<a class="anchor" id="ad0b61e9b6225bea6af433ae28dbdbea8"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gio::DataInputStream::read_upto_finish </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1AsyncResult.html">AsyncResult</a> >& </td>
<td class="paramname"><em>result</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> & </td>
<td class="paramname"><em>data</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Finish an asynchronous call started by <a class="el" href="classGio_1_1DataInputStream.html#a76d195879b8aa04c22a5c69dc82c0f46" title="The asynchronous version of read_upto(). ">read_upto_async()</a>. </p>
<p>Note that this function does <em>not</em> consume the stop character. You have to use <a class="el" href="classGio_1_1DataInputStream.html#af4d01aa4e791d403b79db406befcc28e" title="A read_byte() convenience overload. ">read_byte()</a> to get it before calling <a class="el" href="classGio_1_1DataInputStream.html#a76d195879b8aa04c22a5c69dc82c0f46" title="The asynchronous version of read_upto(). ">read_upto_async()</a> again.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">result</td><td>The <a class="el" href="classGio_1_1AsyncResult.html" title="Provides a base class for implementing asynchronous function results. ">AsyncResult</a> that was provided to the callback slot. </td></tr>
<tr><td class="paramname">data</td><td>A string to fill with the read data. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if the read succeeded without error. </dd></dl>
</div>
</div>
<a class="anchor" id="a032c20df06b83828d3cb5e81f6b8f561"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gio::DataInputStream::set_byte_order </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__giommEnums.html#ga87dea9b56fed9c0bca0f8426fb57781e">DataStreamByteOrder</a> </td>
<td class="paramname"><em>order</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>This function sets the byte order for the given <em>stream</em>. </p>
<p>All subsequent reads from the <em>stream</em> will be read in the given <em>order</em>.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">order</td><td>A DataStreamByteOrder to set. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="afbc8ad1476fd82e808234a661bfe4cd3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gio::DataInputStream::set_newline_type </td>
<td>(</td>
<td class="paramtype"><a class="el" href="group__giommEnums.html#ga2de111fe308aff763fb98a39bc507267">DataStreamNewlineType</a> </td>
<td class="paramname"><em>type</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the newline type for the <em>stream</em>. </p>
<p>Note that using G_DATA_STREAM_NEWLINE_TYPE_ANY is slightly unsafe. If a read chunk ends in "CR" we must read an additional byte to know if this is "CR" or "CR LF", and this might block if there is no more data available.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">type</td><td>The type of new line return as DataStreamNewlineType. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<h2 class="groupheader">Friends And Related Function Documentation</h2>
<a class="anchor" id="a88853a1864df25dc8dda900a6ad52266"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1DataInputStream.html">Gio::DataInputStream</a> > wrap </td>
<td>(</td>
<td class="paramtype">GDataInputStream * </td>
<td class="paramname"><em>object</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>take_copy</em> = <code>false</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">related</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>A <a class="el" href="namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">object</td><td>The C instance. </td></tr>
<tr><td class="paramname">take_copy</td><td>False if the result should take ownership of the C instance. True if it should take a new copy or ref. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A C++ instance that wraps this C instance. </dd></dl>
</div>
</div>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Sep 22 2014 21:38:31 for glibmm by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.7
</small></address>
</body>
</html>
|