1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499
|
<!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>
<title>Namespace Poco</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<meta name="author" content="Applied Informatics Software Engineering GmbH and Contributors"/>
<meta name="publisher" content="Applied Informatics Software Engineering GmbH and Contributors"/>
<meta name="copyright" content="Copyright (c) 2009, Applied Informatics Software Engineering GmbH and Contributors"/>
<meta name="language" content="en"/>
<meta name="date" content="2009-11-24"/>
<meta name="generator" content="PocoDoc"/>
<link rel="stylesheet" href="css/styles.css" type="text/css"/>
</head>
<body bgcolor="#ffffff" leftmargin="0" topmargin="0">
<div class="header">
<h1 class="symbol">namespace Poco</h1>
</div>
<div class="body">
<h2>Overview</h2>
<p><b>Namespaces:</b>
<a href="Poco.Crypto.html" title="namespace Poco::Crypto">Crypto</a>, <a href="Poco.Data.html" title="namespace Poco::Data">Data</a>, <a href="Poco.Net.html" title="namespace Poco::Net">Net</a>, <a href="Poco.Util.html" title="namespace Poco::Util">Util</a>, <a href="Poco.XML.html" title="namespace Poco::XML">XML</a>, <a href="Poco.Zip.html" title="namespace Poco::Zip">Zip</a></p>
<p><b>Classes:</b>
<a href="Poco.ASCIIEncoding.html" title="class Poco::ASCIIEncoding">ASCIIEncoding</a>, <a href="Poco.AbstractCache.html" title="class Poco::AbstractCache">AbstractCache</a>, <a href="Poco.AbstractDelegate.html" title="class Poco::AbstractDelegate">AbstractDelegate</a>, <a href="Poco.AbstractEvent.html" title="class Poco::AbstractEvent">AbstractEvent</a>, <a href="Poco.AbstractInstantiator.html" title="class Poco::AbstractInstantiator">AbstractInstantiator</a>, <a href="Poco.AbstractMetaObject.html" title="class Poco::AbstractMetaObject">AbstractMetaObject</a>, <a href="Poco.AbstractObserver.html" title="class Poco::AbstractObserver">AbstractObserver</a>, <a href="Poco.AbstractPriorityDelegate.html" title="class Poco::AbstractPriorityDelegate">AbstractPriorityDelegate</a>, <a href="Poco.AbstractStrategy.html" title="class Poco::AbstractStrategy">AbstractStrategy</a>, <a href="Poco.AbstractTimerCallback.html" title="class Poco::AbstractTimerCallback">AbstractTimerCallback</a>, <a href="Poco.AccessExpirationDecorator.html" title="class Poco::AccessExpirationDecorator">AccessExpirationDecorator</a>, <a href="Poco.AccessExpireCache.html" title="class Poco::AccessExpireCache">AccessExpireCache</a>, <a href="Poco.AccessExpireLRUCache.html" title="class Poco::AccessExpireLRUCache">AccessExpireLRUCache</a>, <a href="Poco.AccessExpireStrategy.html" title="class Poco::AccessExpireStrategy">AccessExpireStrategy</a>, <a href="Poco.ActiveDispatcher.html" title="class Poco::ActiveDispatcher">ActiveDispatcher</a>, <a href="Poco.ActiveMethod.html" title="class Poco::ActiveMethod">ActiveMethod</a>, <a href="Poco.ActiveResult.html" title="class Poco::ActiveResult">ActiveResult</a>, <a href="Poco.ActiveResultHolder.html" title="class Poco::ActiveResultHolder">ActiveResultHolder</a>, <a href="Poco.ActiveRunnable.html" title="class Poco::ActiveRunnable">ActiveRunnable</a>, <a href="Poco.ActiveRunnableBase.html" title="class Poco::ActiveRunnableBase">ActiveRunnableBase</a>, <a href="Poco.ActiveStarter.html" title="class Poco::ActiveStarter">ActiveStarter</a>, <a href="Poco.Activity.html" title="class Poco::Activity">Activity</a>, <a href="Poco.Any.html" title="class Poco::Any">Any</a>, <a href="Poco.ApplicationException.html" title="class Poco::ApplicationException">ApplicationException</a>, <a href="Poco.ArchiveByNumberStrategy.html" title="class Poco::ArchiveByNumberStrategy">ArchiveByNumberStrategy</a>, <a href="Poco.ArchiveByTimestampStrategy.html" title="class Poco::ArchiveByTimestampStrategy">ArchiveByTimestampStrategy</a>, <a href="Poco.ArchiveStrategy.html" title="class Poco::ArchiveStrategy">ArchiveStrategy</a>, <a href="Poco.AssertionViolationException.html" title="class Poco::AssertionViolationException">AssertionViolationException</a>, <a href="Poco.AsyncChannel.html" title="class Poco::AsyncChannel">AsyncChannel</a>, <a href="Poco.AtomicCounter.html" title="class Poco::AtomicCounter">AtomicCounter</a>, <a href="Poco.AutoPtr.html" title="class Poco::AutoPtr">AutoPtr</a>, <a href="Poco.AutoReleasePool.html" title="class Poco::AutoReleasePool">AutoReleasePool</a>, <a href="Poco.BadCastException.html" title="class Poco::BadCastException">BadCastException</a>, <a href="Poco.Base64Decoder.html" title="class Poco::Base64Decoder">Base64Decoder</a>, <a href="Poco.Base64DecoderBuf.html" title="class Poco::Base64DecoderBuf">Base64DecoderBuf</a>, <a href="Poco.Base64DecoderIOS.html" title="class Poco::Base64DecoderIOS">Base64DecoderIOS</a>, <a href="Poco.Base64Encoder.html" title="class Poco::Base64Encoder">Base64Encoder</a>, <a href="Poco.Base64EncoderBuf.html" title="class Poco::Base64EncoderBuf">Base64EncoderBuf</a>, <a href="Poco.Base64EncoderIOS.html" title="class Poco::Base64EncoderIOS">Base64EncoderIOS</a>, <a href="Poco.BasicBufferedBidirectionalStreamBuf.html" title="class Poco::BasicBufferedBidirectionalStreamBuf">BasicBufferedBidirectionalStreamBuf</a>, <a href="Poco.BasicBufferedStreamBuf.html" title="class Poco::BasicBufferedStreamBuf">BasicBufferedStreamBuf</a>, <a href="Poco.BasicEvent.html" title="class Poco::BasicEvent">BasicEvent</a>, <a href="Poco.BasicMemoryStreamBuf.html" title="class Poco::BasicMemoryStreamBuf">BasicMemoryStreamBuf</a>, <a href="Poco.BasicUnbufferedStreamBuf.html" title="class Poco::BasicUnbufferedStreamBuf">BasicUnbufferedStreamBuf</a>, <a href="Poco.BinaryReader.html" title="class Poco::BinaryReader">BinaryReader</a>, <a href="Poco.BinaryWriter.html" title="class Poco::BinaryWriter">BinaryWriter</a>, <a href="Poco.Buffer.html" title="class Poco::Buffer">Buffer</a>, <a href="Poco.BufferAllocator.html" title="class Poco::BufferAllocator">BufferAllocator</a>, <a href="Poco.Bugcheck.html" title="class Poco::Bugcheck">Bugcheck</a>, <a href="Poco.BugcheckException.html" title="class Poco::BugcheckException">BugcheckException</a>, <a href="Poco.ByteOrder.html" title="class Poco::ByteOrder">ByteOrder</a>, <a href="Poco.Channel.html" title="class Poco::Channel">Channel</a>, <a href="Poco.Checksum.html" title="class Poco::Checksum">Checksum</a>, <a href="Poco.CircularReferenceException.html" title="class Poco::CircularReferenceException">CircularReferenceException</a>, <a href="Poco.ClassLoader.html" title="class Poco::ClassLoader">ClassLoader</a>, <a href="Poco.Condition.html" title="class Poco::Condition">Condition</a>, <a href="Poco.Configurable.html" title="class Poco::Configurable">Configurable</a>, <a href="Poco.ConsoleChannel.html" title="class Poco::ConsoleChannel">ConsoleChannel</a>, <a href="Poco.CountingIOS.html" title="class Poco::CountingIOS">CountingIOS</a>, <a href="Poco.CountingInputStream.html" title="class Poco::CountingInputStream">CountingInputStream</a>, <a href="Poco.CountingOutputStream.html" title="class Poco::CountingOutputStream">CountingOutputStream</a>, <a href="Poco.CountingStreamBuf.html" title="class Poco::CountingStreamBuf">CountingStreamBuf</a>, <a href="Poco.CreateFileException.html" title="class Poco::CreateFileException">CreateFileException</a>, <a href="Poco.DataException.html" title="class Poco::DataException">DataException</a>, <a href="Poco.DataFormatException.html" title="class Poco::DataFormatException">DataFormatException</a>, <a href="Poco.DateTime.html" title="class Poco::DateTime">DateTime</a>, <a href="Poco.DateTimeFormat.html" title="class Poco::DateTimeFormat">DateTimeFormat</a>, <a href="Poco.DateTimeFormatter.html" title="class Poco::DateTimeFormatter">DateTimeFormatter</a>, <a href="Poco.DateTimeParser.html" title="class Poco::DateTimeParser">DateTimeParser</a>, <a href="Poco.Debugger.html" title="class Poco::Debugger">Debugger</a>, <a href="Poco.DefaultStrategy.html" title="class Poco::DefaultStrategy">DefaultStrategy</a>, <a href="Poco.DeflatingIOS.html" title="class Poco::DeflatingIOS">DeflatingIOS</a>, <a href="Poco.DeflatingInputStream.html" title="class Poco::DeflatingInputStream">DeflatingInputStream</a>, <a href="Poco.DeflatingOutputStream.html" title="class Poco::DeflatingOutputStream">DeflatingOutputStream</a>, <a href="Poco.DeflatingStreamBuf.html" title="class Poco::DeflatingStreamBuf">DeflatingStreamBuf</a>, <a href="Poco.Delegate.html" title="class Poco::Delegate">Delegate</a>, <a href="Poco.DigestBuf.html" title="class Poco::DigestBuf">DigestBuf</a>, <a href="Poco.DigestEngine.html" title="class Poco::DigestEngine">DigestEngine</a>, <a href="Poco.DigestIOS.html" title="class Poco::DigestIOS">DigestIOS</a>, <a href="Poco.DigestInputStream.html" title="class Poco::DigestInputStream">DigestInputStream</a>, <a href="Poco.DigestOutputStream.html" title="class Poco::DigestOutputStream">DigestOutputStream</a>, <a href="Poco.DirectoryIterator.html" title="class Poco::DirectoryIterator">DirectoryIterator</a>, <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a>, <a href="Poco.DynamicAnyHolder.html" title="class Poco::DynamicAnyHolder">DynamicAnyHolder</a>, <a href="Poco.DynamicAnyHolderImpl.html" title="class Poco::DynamicAnyHolderImpl">DynamicAnyHolderImpl</a>, <a href="Poco.DynamicFactory.html" title="class Poco::DynamicFactory">DynamicFactory</a>, <a href="Poco.EOFToken.html" title="class Poco::EOFToken">EOFToken</a>, <a href="Poco.Environment.html" title="class Poco::Environment">Environment</a>, <a href="Poco.ErrorHandler.html" title="class Poco::ErrorHandler">ErrorHandler</a>, <a href="Poco.Event.html" title="class Poco::Event">Event</a>, <a href="Poco.EventArgs.html" title="class Poco::EventArgs">EventArgs</a>, <a href="Poco.EventLogChannel.html" title="class Poco::EventLogChannel">EventLogChannel</a>, <a href="Poco.Exception.html" title="class Poco::Exception">Exception</a>, <a href="Poco.ExistsException.html" title="class Poco::ExistsException">ExistsException</a>, <a href="Poco.ExpirationDecorator.html" title="class Poco::ExpirationDecorator">ExpirationDecorator</a>, <a href="Poco.Expire.html" title="class Poco::Expire">Expire</a>, <a href="Poco.ExpireCache.html" title="class Poco::ExpireCache">ExpireCache</a>, <a href="Poco.ExpireLRUCache.html" title="class Poco::ExpireLRUCache">ExpireLRUCache</a>, <a href="Poco.ExpireStrategy.html" title="class Poco::ExpireStrategy">ExpireStrategy</a>, <a href="Poco.FIFOEvent.html" title="class Poco::FIFOEvent">FIFOEvent</a>, <a href="Poco.FIFOStrategy.html" title="class Poco::FIFOStrategy">FIFOStrategy</a>, <a href="Poco.FPEnvironment.html" title="class Poco::FPEnvironment">FPEnvironment</a>, <a href="Poco.FastMutex.html" title="class Poco::FastMutex">FastMutex</a>, <a href="Poco.File.html" title="class Poco::File">File</a>, <a href="Poco.FileAccessDeniedException.html" title="class Poco::FileAccessDeniedException">FileAccessDeniedException</a>, <a href="Poco.FileChannel.html" title="class Poco::FileChannel">FileChannel</a>, <a href="Poco.FileException.html" title="class Poco::FileException">FileException</a>, <a href="Poco.FileExistsException.html" title="class Poco::FileExistsException">FileExistsException</a>, <a href="Poco.FileIOS.html" title="class Poco::FileIOS">FileIOS</a>, <a href="Poco.FileInputStream.html" title="class Poco::FileInputStream">FileInputStream</a>, <a href="Poco.FileNotFoundException.html" title="class Poco::FileNotFoundException">FileNotFoundException</a>, <a href="Poco.FileOutputStream.html" title="class Poco::FileOutputStream">FileOutputStream</a>, <a href="Poco.FileReadOnlyException.html" title="class Poco::FileReadOnlyException">FileReadOnlyException</a>, <a href="Poco.FileStream.html" title="class Poco::FileStream">FileStream</a>, <a href="Poco.FileStreamFactory.html" title="class Poco::FileStreamFactory">FileStreamFactory</a>, <a href="Poco.Formatter.html" title="class Poco::Formatter">Formatter</a>, <a href="Poco.FormattingChannel.html" title="class Poco::FormattingChannel">FormattingChannel</a>, <a href="Poco.FunctionDelegate.html" title="class Poco::FunctionDelegate">FunctionDelegate</a>, <a href="Poco.FunctionPriorityDelegate.html" title="class Poco::FunctionPriorityDelegate">FunctionPriorityDelegate</a>, <a href="Poco.Getter.html" title="struct Poco::Getter">Getter</a>, <a href="Poco.Glob.html" title="class Poco::Glob">Glob</a>, <a href="Poco.HMACEngine.html" title="class Poco::HMACEngine">HMACEngine</a>, <a href="Poco.Hash.html" title="struct Poco::Hash">Hash</a>, <a href="Poco.HashFunction.html" title="struct Poco::HashFunction">HashFunction</a>, <a href="Poco.HashMap.html" title="class Poco::HashMap">HashMap</a>, <a href="Poco.HashMapEntry.html" title="struct Poco::HashMapEntry">HashMapEntry</a>, <a href="Poco.HashMapEntryHash.html" title="struct Poco::HashMapEntryHash">HashMapEntryHash</a>, <a href="Poco.HashSet.html" title="class Poco::HashSet">HashSet</a>, <a href="Poco.HashStatistic.html" title="class Poco::HashStatistic">HashStatistic</a>, <a href="Poco.HashTable.html" title="class Poco::HashTable">HashTable</a>, <a href="Poco.HexBinaryDecoder.html" title="class Poco::HexBinaryDecoder">HexBinaryDecoder</a>, <a href="Poco.HexBinaryDecoderBuf.html" title="class Poco::HexBinaryDecoderBuf">HexBinaryDecoderBuf</a>, <a href="Poco.HexBinaryDecoderIOS.html" title="class Poco::HexBinaryDecoderIOS">HexBinaryDecoderIOS</a>, <a href="Poco.HexBinaryEncoder.html" title="class Poco::HexBinaryEncoder">HexBinaryEncoder</a>, <a href="Poco.HexBinaryEncoderBuf.html" title="class Poco::HexBinaryEncoderBuf">HexBinaryEncoderBuf</a>, <a href="Poco.HexBinaryEncoderIOS.html" title="class Poco::HexBinaryEncoderIOS">HexBinaryEncoderIOS</a>, <a href="Poco.IOException.html" title="class Poco::IOException">IOException</a>, <a href="Poco.IllegalStateException.html" title="class Poco::IllegalStateException">IllegalStateException</a>, <a href="Poco.InflatingIOS.html" title="class Poco::InflatingIOS">InflatingIOS</a>, <a href="Poco.InflatingInputStream.html" title="class Poco::InflatingInputStream">InflatingInputStream</a>, <a href="Poco.InflatingOutputStream.html" title="class Poco::InflatingOutputStream">InflatingOutputStream</a>, <a href="Poco.InflatingStreamBuf.html" title="class Poco::InflatingStreamBuf">InflatingStreamBuf</a>, <a href="Poco.InputLineEndingConverter.html" title="class Poco::InputLineEndingConverter">InputLineEndingConverter</a>, <a href="Poco.InputStreamConverter.html" title="class Poco::InputStreamConverter">InputStreamConverter</a>, <a href="Poco.Instantiator.html" title="class Poco::Instantiator">Instantiator</a>, <a href="Poco.InvalidAccessException.html" title="class Poco::InvalidAccessException">InvalidAccessException</a>, <a href="Poco.InvalidArgumentException.html" title="class Poco::InvalidArgumentException">InvalidArgumentException</a>, <a href="Poco.InvalidToken.html" title="class Poco::InvalidToken">InvalidToken</a>, <a href="Poco.IsConst.html" title="struct Poco::IsConst">IsConst</a>, <a href="Poco.IsReference.html" title="struct Poco::IsReference">IsReference</a>, <a href="Poco.KeyValueArgs.html" title="class Poco::KeyValueArgs">KeyValueArgs</a>, <a href="Poco.LRUCache.html" title="class Poco::LRUCache">LRUCache</a>, <a href="Poco.LRUStrategy.html" title="class Poco::LRUStrategy">LRUStrategy</a>, <a href="Poco.Latin1Encoding.html" title="class Poco::Latin1Encoding">Latin1Encoding</a>, <a href="Poco.Latin9Encoding.html" title="class Poco::Latin9Encoding">Latin9Encoding</a>, <a href="Poco.LibraryAlreadyLoadedException.html" title="class Poco::LibraryAlreadyLoadedException">LibraryAlreadyLoadedException</a>, <a href="Poco.LibraryLoadException.html" title="class Poco::LibraryLoadException">LibraryLoadException</a>, <a href="Poco.LineEnding.html" title="class Poco::LineEnding">LineEnding</a>, <a href="Poco.LineEndingConverterIOS.html" title="class Poco::LineEndingConverterIOS">LineEndingConverterIOS</a>, <a href="Poco.LineEndingConverterStreamBuf.html" title="class Poco::LineEndingConverterStreamBuf">LineEndingConverterStreamBuf</a>, <a href="Poco.LinearHashTable.html" title="class Poco::LinearHashTable">LinearHashTable</a>, <a href="Poco.LocalDateTime.html" title="class Poco::LocalDateTime">LocalDateTime</a>, <a href="Poco.LogFile.html" title="class Poco::LogFile">LogFile</a>, <a href="Poco.LogIOS.html" title="class Poco::LogIOS">LogIOS</a>, <a href="Poco.LogStream.html" title="class Poco::LogStream">LogStream</a>, <a href="Poco.LogStreamBuf.html" title="class Poco::LogStreamBuf">LogStreamBuf</a>, <a href="Poco.Logger.html" title="class Poco::Logger">Logger</a>, <a href="Poco.LoggingFactory.html" title="class Poco::LoggingFactory">LoggingFactory</a>, <a href="Poco.LoggingRegistry.html" title="class Poco::LoggingRegistry">LoggingRegistry</a>, <a href="Poco.LogicException.html" title="class Poco::LogicException">LogicException</a>, <a href="Poco.MD2Engine.html" title="class Poco::MD2Engine">MD2Engine</a>, <a href="Poco.MD4Engine.html" title="class Poco::MD4Engine">MD4Engine</a>, <a href="Poco.MD5Engine.html" title="class Poco::MD5Engine">MD5Engine</a>, <a href="Poco.Manifest.html" title="class Poco::Manifest">Manifest</a>, <a href="Poco.ManifestBase.html" title="class Poco::ManifestBase">ManifestBase</a>, <a href="Poco.MemoryIOS.html" title="class Poco::MemoryIOS">MemoryIOS</a>, <a href="Poco.MemoryInputStream.html" title="class Poco::MemoryInputStream">MemoryInputStream</a>, <a href="Poco.MemoryOutputStream.html" title="class Poco::MemoryOutputStream">MemoryOutputStream</a>, <a href="Poco.MemoryPool.html" title="class Poco::MemoryPool">MemoryPool</a>, <a href="Poco.Message.html" title="class Poco::Message">Message</a>, <a href="Poco.MetaObject.html" title="class Poco::MetaObject">MetaObject</a>, <a href="Poco.MetaSingleton.html" title="class Poco::MetaSingleton">MetaSingleton</a>, <a href="Poco.Mutex.html" title="class Poco::Mutex">Mutex</a>, <a href="Poco.NDCScope.html" title="class Poco::NDCScope">NDCScope</a>, <a href="Poco.NObserver.html" title="class Poco::NObserver">NObserver</a>, <a href="Poco.NamedEvent.html" title="class Poco::NamedEvent">NamedEvent</a>, <a href="Poco.NamedMutex.html" title="class Poco::NamedMutex">NamedMutex</a>, <a href="Poco.NamedTuple.html" title="struct Poco::NamedTuple">NamedTuple</a>, <a href="Poco.NestedDiagnosticContext.html" title="class Poco::NestedDiagnosticContext">NestedDiagnosticContext</a>, <a href="Poco.NoPermissionException.html" title="class Poco::NoPermissionException">NoPermissionException</a>, <a href="Poco.NoThreadAvailableException.html" title="class Poco::NoThreadAvailableException">NoThreadAvailableException</a>, <a href="Poco.NotFoundException.html" title="class Poco::NotFoundException">NotFoundException</a>, <a href="Poco.NotImplementedException.html" title="class Poco::NotImplementedException">NotImplementedException</a>, <a href="Poco.Notification.html" title="class Poco::Notification">Notification</a>, <a href="Poco.NotificationCenter.html" title="class Poco::NotificationCenter">NotificationCenter</a>, <a href="Poco.NotificationQueue.html" title="class Poco::NotificationQueue">NotificationQueue</a>, <a href="Poco.NotificationStrategy.html" title="class Poco::NotificationStrategy">NotificationStrategy</a>, <a href="Poco.NullChannel.html" title="class Poco::NullChannel">NullChannel</a>, <a href="Poco.NullIOS.html" title="class Poco::NullIOS">NullIOS</a>, <a href="Poco.NullInputStream.html" title="class Poco::NullInputStream">NullInputStream</a>, <a href="Poco.NullOutputStream.html" title="class Poco::NullOutputStream">NullOutputStream</a>, <a href="Poco.NullPointerException.html" title="class Poco::NullPointerException">NullPointerException</a>, <a href="Poco.NullStreamBuf.html" title="class Poco::NullStreamBuf">NullStreamBuf</a>, <a href="Poco.NullTypeList.html" title="struct Poco::NullTypeList">NullTypeList</a>, <a href="Poco.NumberFormatter.html" title="class Poco::NumberFormatter">NumberFormatter</a>, <a href="Poco.NumberParser.html" title="class Poco::NumberParser">NumberParser</a>, <a href="Poco.Observer.html" title="class Poco::Observer">Observer</a>, <a href="Poco.OpcomChannel.html" title="class Poco::OpcomChannel">OpcomChannel</a>, <a href="Poco.OpenFileException.html" title="class Poco::OpenFileException">OpenFileException</a>, <a href="Poco.OutOfMemoryException.html" title="class Poco::OutOfMemoryException">OutOfMemoryException</a>, <a href="Poco.OutputLineEndingConverter.html" title="class Poco::OutputLineEndingConverter">OutputLineEndingConverter</a>, <a href="Poco.OutputStreamConverter.html" title="class Poco::OutputStreamConverter">OutputStreamConverter</a>, <a href="Poco.Path.html" title="class Poco::Path">Path</a>, <a href="Poco.PathNotFoundException.html" title="class Poco::PathNotFoundException">PathNotFoundException</a>, <a href="Poco.PathSyntaxException.html" title="class Poco::PathSyntaxException">PathSyntaxException</a>, <a href="Poco.PatternFormatter.html" title="class Poco::PatternFormatter">PatternFormatter</a>, <a href="Poco.Pipe.html" title="class Poco::Pipe">Pipe</a>, <a href="Poco.PipeIOS.html" title="class Poco::PipeIOS">PipeIOS</a>, <a href="Poco.PipeInputStream.html" title="class Poco::PipeInputStream">PipeInputStream</a>, <a href="Poco.PipeOutputStream.html" title="class Poco::PipeOutputStream">PipeOutputStream</a>, <a href="Poco.PipeStreamBuf.html" title="class Poco::PipeStreamBuf">PipeStreamBuf</a>, <a href="Poco.PoolOverflowException.html" title="class Poco::PoolOverflowException">PoolOverflowException</a>, <a href="Poco.PriorityDelegate.html" title="class Poco::PriorityDelegate">PriorityDelegate</a>, <a href="Poco.PriorityEvent.html" title="class Poco::PriorityEvent">PriorityEvent</a>, <a href="Poco.PriorityExpire.html" title="class Poco::PriorityExpire">PriorityExpire</a>, <a href="Poco.PriorityNotificationQueue.html" title="class Poco::PriorityNotificationQueue">PriorityNotificationQueue</a>, <a href="Poco.Process.html" title="class Poco::Process">Process</a>, <a href="Poco.ProcessHandle.html" title="class Poco::ProcessHandle">ProcessHandle</a>, <a href="Poco.PropertyNotSupportedException.html" title="class Poco::PropertyNotSupportedException">PropertyNotSupportedException</a>, <a href="Poco.ProtocolException.html" title="class Poco::ProtocolException">ProtocolException</a>, <a href="Poco.PurgeByAgeStrategy.html" title="class Poco::PurgeByAgeStrategy">PurgeByAgeStrategy</a>, <a href="Poco.PurgeByCountStrategy.html" title="class Poco::PurgeByCountStrategy">PurgeByCountStrategy</a>, <a href="Poco.PurgeStrategy.html" title="class Poco::PurgeStrategy">PurgeStrategy</a>, <a href="Poco.RWLock.html" title="class Poco::RWLock">RWLock</a>, <a href="Poco.Random.html" title="class Poco::Random">Random</a>, <a href="Poco.RandomBuf.html" title="class Poco::RandomBuf">RandomBuf</a>, <a href="Poco.RandomIOS.html" title="class Poco::RandomIOS">RandomIOS</a>, <a href="Poco.RandomInputStream.html" title="class Poco::RandomInputStream">RandomInputStream</a>, <a href="Poco.RangeException.html" title="class Poco::RangeException">RangeException</a>, <a href="Poco.ReadFileException.html" title="class Poco::ReadFileException">ReadFileException</a>, <a href="Poco.RefCountedObject.html" title="class Poco::RefCountedObject">RefCountedObject</a>, <a href="Poco.ReferenceCounter.html" title="class Poco::ReferenceCounter">ReferenceCounter</a>, <a href="Poco.RegularExpression.html" title="class Poco::RegularExpression">RegularExpression</a>, <a href="Poco.RegularExpressionException.html" title="class Poco::RegularExpressionException">RegularExpressionException</a>, <a href="Poco.ReleaseArrayPolicy.html" title="class Poco::ReleaseArrayPolicy">ReleaseArrayPolicy</a>, <a href="Poco.ReleasePolicy.html" title="class Poco::ReleasePolicy">ReleasePolicy</a>, <a href="Poco.RotateAtTimeStrategy.html" title="class Poco::RotateAtTimeStrategy">RotateAtTimeStrategy</a>, <a href="Poco.RotateByIntervalStrategy.html" title="class Poco::RotateByIntervalStrategy">RotateByIntervalStrategy</a>, <a href="Poco.RotateBySizeStrategy.html" title="class Poco::RotateBySizeStrategy">RotateBySizeStrategy</a>, <a href="Poco.RotateStrategy.html" title="class Poco::RotateStrategy">RotateStrategy</a>, <a href="Poco.Runnable.html" title="class Poco::Runnable">Runnable</a>, <a href="Poco.RunnableAdapter.html" title="class Poco::RunnableAdapter">RunnableAdapter</a>, <a href="Poco.RuntimeException.html" title="class Poco::RuntimeException">RuntimeException</a>, <a href="Poco.SHA1Engine.html" title="class Poco::SHA1Engine">SHA1Engine</a>, <a href="Poco.ScopedLock.html" title="class Poco::ScopedLock">ScopedLock</a>, <a href="Poco.ScopedLockWithUnlock.html" title="class Poco::ScopedLockWithUnlock">ScopedLockWithUnlock</a>, <a href="Poco.ScopedRWLock.html" title="class Poco::ScopedRWLock">ScopedRWLock</a>, <a href="Poco.ScopedReadRWLock.html" title="class Poco::ScopedReadRWLock">ScopedReadRWLock</a>, <a href="Poco.ScopedUnlock.html" title="class Poco::ScopedUnlock">ScopedUnlock</a>, <a href="Poco.ScopedWriteRWLock.html" title="class Poco::ScopedWriteRWLock">ScopedWriteRWLock</a>, <a href="Poco.Semaphore.html" title="class Poco::Semaphore">Semaphore</a>, <a href="Poco.SharedLibrary.html" title="class Poco::SharedLibrary">SharedLibrary</a>, <a href="Poco.SharedMemory.html" title="class Poco::SharedMemory">SharedMemory</a>, <a href="Poco.SharedPtr.html" title="class Poco::SharedPtr">SharedPtr</a>, <a href="Poco.SignalException.html" title="class Poco::SignalException">SignalException</a>, <a href="Poco.SignalHandler.html" title="class Poco::SignalHandler">SignalHandler</a>, <a href="Poco.SimpleFileChannel.html" title="class Poco::SimpleFileChannel">SimpleFileChannel</a>, <a href="Poco.SimpleHashTable.html" title="class Poco::SimpleHashTable">SimpleHashTable</a>, <a href="Poco.SingletonHolder.html" title="class Poco::SingletonHolder">SingletonHolder</a>, <a href="Poco.SplitterChannel.html" title="class Poco::SplitterChannel">SplitterChannel</a>, <a href="Poco.Stopwatch.html" title="class Poco::Stopwatch">Stopwatch</a>, <a href="Poco.StrategyCollection.html" title="class Poco::StrategyCollection">StrategyCollection</a>, <a href="Poco.StreamChannel.html" title="class Poco::StreamChannel">StreamChannel</a>, <a href="Poco.StreamConverterBuf.html" title="class Poco::StreamConverterBuf">StreamConverterBuf</a>, <a href="Poco.StreamConverterIOS.html" title="class Poco::StreamConverterIOS">StreamConverterIOS</a>, <a href="Poco.StreamCopier.html" title="class Poco::StreamCopier">StreamCopier</a>, <a href="Poco.StreamTokenizer.html" title="class Poco::StreamTokenizer">StreamTokenizer</a>, <a href="Poco.StringTokenizer.html" title="class Poco::StringTokenizer">StringTokenizer</a>, <a href="Poco.SynchronizedObject.html" title="class Poco::SynchronizedObject">SynchronizedObject</a>, <a href="Poco.SyntaxException.html" title="class Poco::SyntaxException">SyntaxException</a>, <a href="Poco.SyslogChannel.html" title="class Poco::SyslogChannel">SyslogChannel</a>, <a href="Poco.SystemException.html" title="class Poco::SystemException">SystemException</a>, <a href="Poco.TLSAbstractSlot.html" title="class Poco::TLSAbstractSlot">TLSAbstractSlot</a>, <a href="Poco.TLSSlot.html" title="class Poco::TLSSlot">TLSSlot</a>, <a href="Poco.Task.html" title="class Poco::Task">Task</a>, <a href="Poco.TaskCancelledNotification.html" title="class Poco::TaskCancelledNotification">TaskCancelledNotification</a>, <a href="Poco.TaskCustomNotification.html" title="class Poco::TaskCustomNotification">TaskCustomNotification</a>, <a href="Poco.TaskFailedNotification.html" title="class Poco::TaskFailedNotification">TaskFailedNotification</a>, <a href="Poco.TaskFinishedNotification.html" title="class Poco::TaskFinishedNotification">TaskFinishedNotification</a>, <a href="Poco.TaskManager.html" title="class Poco::TaskManager">TaskManager</a>, <a href="Poco.TaskNotification.html" title="class Poco::TaskNotification">TaskNotification</a>, <a href="Poco.TaskProgressNotification.html" title="class Poco::TaskProgressNotification">TaskProgressNotification</a>, <a href="Poco.TaskStartedNotification.html" title="class Poco::TaskStartedNotification">TaskStartedNotification</a>, <a href="Poco.TeeIOS.html" title="class Poco::TeeIOS">TeeIOS</a>, <a href="Poco.TeeInputStream.html" title="class Poco::TeeInputStream">TeeInputStream</a>, <a href="Poco.TeeOutputStream.html" title="class Poco::TeeOutputStream">TeeOutputStream</a>, <a href="Poco.TeeStreamBuf.html" title="class Poco::TeeStreamBuf">TeeStreamBuf</a>, <a href="Poco.TemporaryFile.html" title="class Poco::TemporaryFile">TemporaryFile</a>, <a href="Poco.TextConverter.html" title="class Poco::TextConverter">TextConverter</a>, <a href="Poco.TextEncoding.html" title="class Poco::TextEncoding">TextEncoding</a>, <a href="Poco.TextIterator.html" title="class Poco::TextIterator">TextIterator</a>, <a href="Poco.Thread.html" title="class Poco::Thread">Thread</a>, <a href="Poco.ThreadLocal.html" title="class Poco::ThreadLocal">ThreadLocal</a>, <a href="Poco.ThreadLocalStorage.html" title="class Poco::ThreadLocalStorage">ThreadLocalStorage</a>, <a href="Poco.ThreadPool.html" title="class Poco::ThreadPool">ThreadPool</a>, <a href="Poco.ThreadTarget.html" title="class Poco::ThreadTarget">ThreadTarget</a>, <a href="Poco.TimedNotificationQueue.html" title="class Poco::TimedNotificationQueue">TimedNotificationQueue</a>, <a href="Poco.TimeoutException.html" title="class Poco::TimeoutException">TimeoutException</a>, <a href="Poco.Timer.html" title="class Poco::Timer">Timer</a>, <a href="Poco.TimerCallback.html" title="class Poco::TimerCallback">TimerCallback</a>, <a href="Poco.Timespan.html" title="class Poco::Timespan">Timespan</a>, <a href="Poco.Timestamp.html" title="class Poco::Timestamp">Timestamp</a>, <a href="Poco.Timezone.html" title="class Poco::Timezone">Timezone</a>, <a href="Poco.Token.html" title="class Poco::Token">Token</a>, <a href="Poco.Tuple.html" title="struct Poco::Tuple">Tuple</a>, <a href="Poco.TypeList.html" title="struct Poco::TypeList">TypeList</a>, <a href="Poco.TypeListType.html" title="struct Poco::TypeListType">TypeListType</a>, <a href="Poco.TypeWrapper.html" title="struct Poco::TypeWrapper">TypeWrapper</a>, <a href="Poco.URI.html" title="class Poco::URI">URI</a>, <a href="Poco.URIRedirection.html" title="class Poco::URIRedirection">URIRedirection</a>, <a href="Poco.URIStreamFactory.html" title="class Poco::URIStreamFactory">URIStreamFactory</a>, <a href="Poco.URIStreamOpener.html" title="class Poco::URIStreamOpener">URIStreamOpener</a>, <a href="Poco.UTF16Encoding.html" title="class Poco::UTF16Encoding">UTF16Encoding</a>, <a href="Poco.UTF8.html" title="struct Poco::UTF8">UTF8</a>, <a href="Poco.UTF8Encoding.html" title="class Poco::UTF8Encoding">UTF8Encoding</a>, <a href="Poco.UUID.html" title="class Poco::UUID">UUID</a>, <a href="Poco.UUIDGenerator.html" title="class Poco::UUIDGenerator">UUIDGenerator</a>, <a href="Poco.UnhandledException.html" title="class Poco::UnhandledException">UnhandledException</a>, <a href="Poco.Unicode.html" title="class Poco::Unicode">Unicode</a>, <a href="Poco.UnicodeConverter.html" title="class Poco::UnicodeConverter">UnicodeConverter</a>, <a href="Poco.UniqueAccessExpireCache.html" title="class Poco::UniqueAccessExpireCache">UniqueAccessExpireCache</a>, <a href="Poco.UniqueAccessExpireLRUCache.html" title="class Poco::UniqueAccessExpireLRUCache">UniqueAccessExpireLRUCache</a>, <a href="Poco.UniqueAccessExpireStrategy.html" title="class Poco::UniqueAccessExpireStrategy">UniqueAccessExpireStrategy</a>, <a href="Poco.UniqueExpireCache.html" title="class Poco::UniqueExpireCache">UniqueExpireCache</a>, <a href="Poco.UniqueExpireLRUCache.html" title="class Poco::UniqueExpireLRUCache">UniqueExpireLRUCache</a>, <a href="Poco.UniqueExpireStrategy.html" title="class Poco::UniqueExpireStrategy">UniqueExpireStrategy</a>, <a href="Poco.UnknownURISchemeException.html" title="class Poco::UnknownURISchemeException">UnknownURISchemeException</a>, <a href="Poco.ValidArgs.html" title="class Poco::ValidArgs">ValidArgs</a>, <a href="Poco.Void.html" title="class Poco::Void">Void</a>, <a href="Poco.WhitespaceToken.html" title="class Poco::WhitespaceToken">WhitespaceToken</a>, <a href="Poco.Windows1252Encoding.html" title="class Poco::Windows1252Encoding">Windows1252Encoding</a>, <a href="Poco.WindowsConsoleChannel.html" title="class Poco::WindowsConsoleChannel">WindowsConsoleChannel</a>, <a href="Poco.WriteFileException.html" title="class Poco::WriteFileException">WriteFileException</a>, <a href="Poco.p_less.html" title="struct Poco::p_less">p_less</a></p>
<p><b>Types:</b>
<a href="Poco.html#3992" title="Poco::BufferedBidirectionalStreamBuf">BufferedBidirectionalStreamBuf</a>, <a href="Poco.html#4028" title="Poco::BufferedStreamBuf">BufferedStreamBuf</a>, <a href="Poco.html#6903" title="Poco::FPE">FPE</a>, <a href="Poco.html#11351" title="Poco::Int16">Int16</a>, <a href="Poco.html#11353" title="Poco::Int32">Int32</a>, <a href="Poco.html#11357" title="Poco::Int64">Int64</a>, <a href="Poco.html#11349" title="Poco::Int8">Int8</a>, <a href="Poco.html#11355" title="Poco::IntPtr">IntPtr</a>, <a href="Poco.html#8404" title="Poco::MemoryStreamBuf">MemoryStreamBuf</a>, <a href="Poco.html#8776" title="Poco::NDC">NDC</a>, <a href="Poco.html#11352" title="Poco::UInt16">UInt16</a>, <a href="Poco.html#11354" title="Poco::UInt32">UInt32</a>, <a href="Poco.html#11358" title="Poco::UInt64">UInt64</a>, <a href="Poco.html#11350" title="Poco::UInt8">UInt8</a>, <a href="Poco.html#11356" title="Poco::UIntPtr">UIntPtr</a>, <a href="Poco.html#11805" title="Poco::UnbufferedStreamBuf">UnbufferedStreamBuf</a></p>
<p><b>Functions:</b>
<a href="Poco.html#3547" title="Poco::AnyCast()">AnyCast</a>, <a href="Poco.html#3555" title="Poco::RefAnyCast()">RefAnyCast</a>, <a href="Poco.html#3559" title="Poco::UnsafeAnyCast()">UnsafeAnyCast</a>, <a href="Poco.html#10434" title="Poco::cat()">cat</a>, <a href="Poco.html#4689" title="Poco::delegate()">delegate</a>, <a href="Poco.html#7066" title="Poco::format()">format</a>, <a href="Poco.html#7290" title="Poco::hash()">hash</a>, <a href="Poco.html#10350" title="Poco::icompare()">icompare</a>, <a href="Poco.html#4974" title="Poco::operator !=()">operator !=</a>, <a href="Poco.html#4953" title="Poco::operator *()">operator *</a>, <a href="Poco.html#4965" title="Poco::operator *=()">operator *=</a>, <a href="Poco.html#4944" title="Poco::operator +()">operator +</a>, <a href="Poco.html#4959" title="Poco::operator +=()">operator +=</a>, <a href="Poco.html#4950" title="Poco::operator -()">operator -</a>, <a href="Poco.html#4962" title="Poco::operator -=()">operator -=</a>, <a href="Poco.html#4956" title="Poco::operator /()">operator /</a>, <a href="Poco.html#4968" title="Poco::operator /=()">operator /=</a>, <a href="Poco.html#4977" title="Poco::operator <()">operator <</a>, <a href="Poco.html#4980" title="Poco::operator <=()">operator <=</a>, <a href="Poco.html#4971" title="Poco::operator ==()">operator ==</a>, <a href="Poco.html#4983" title="Poco::operator >()">operator ></a>, <a href="Poco.html#4986" title="Poco::operator >=()">operator >=</a>, <a href="Poco.html#9418" title="Poco::priorityDelegate()">priorityDelegate</a>, <a href="Poco.html#10414" title="Poco::replace()">replace</a>, <a href="Poco.html#10424" title="Poco::replaceInPlace()">replaceInPlace</a>, <a href="Poco.html#3717" title="Poco::swap()">swap</a>, <a href="Poco.html#10346" title="Poco::toLower()">toLower</a>, <a href="Poco.html#10348" title="Poco::toLowerInPlace()">toLowerInPlace</a>, <a href="Poco.html#10342" title="Poco::toUpper()">toUpper</a>, <a href="Poco.html#10344" title="Poco::toUpperInPlace()">toUpperInPlace</a>, <a href="Poco.html#10398" title="Poco::translate()">translate</a>, <a href="Poco.html#10406" title="Poco::translateInPlace()">translateInPlace</a>, <a href="Poco.html#10338" title="Poco::trim()">trim</a>, <a href="Poco.html#10340" title="Poco::trimInPlace()">trimInPlace</a>, <a href="Poco.html#10330" title="Poco::trimLeft()">trimLeft</a>, <a href="Poco.html#10332" title="Poco::trimLeftInPlace()">trimLeftInPlace</a>, <a href="Poco.html#10334" title="Poco::trimRight()">trimRight</a>, <a href="Poco.html#10336" title="Poco::trimRightInPlace()">trimRightInPlace</a></p>
<h2>Namespaces</h2>
<h3><a href="Poco.Crypto.html" class="class">namespace Crypto</a></h3>
<h3><a href="Poco.Data.html" class="class">namespace Data</a></h3>
<h3><a href="Poco.Net.html" class="class">namespace Net</a></h3>
<h3><a href="Poco.Util.html" class="class">namespace Util</a></h3>
<h3><a href="Poco.XML.html" class="class">namespace XML</a></h3>
<h3><a href="Poco.Zip.html" class="class">namespace Zip</a></h3>
<h2>Classes</h2>
<h3><a href="Poco.ASCIIEncoding.html" class="class">class ASCIIEncoding</a></h3>
<p> 7-bit ASCII text encoding. <a href="Poco.ASCIIEncoding.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.AbstractCache.html" class="class">class AbstractCache</a></h3>
<p> An <a href="Poco.AbstractCache.html" title="class Poco::AbstractCache">AbstractCache</a> is the interface of all caches. <a href="Poco.AbstractCache.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.AbstractDelegate.html" class="class">class AbstractDelegate</a></h3>
<p> Interface for <a href="Poco.Delegate.html" title="class Poco::Delegate">Delegate</a> and <a href="Poco.Expire.html" title="class Poco::Expire">Expire</a>
Very similar to <a href="Poco.AbstractPriorityDelegate.html" title="class Poco::AbstractPriorityDelegate">AbstractPriorityDelegate</a> but having two separate files (no inheritance)
allows one to have compile-time checks when registering an observer
instead of run-time checks. <a href="Poco.AbstractDelegate.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.AbstractEvent.html" class="class">class AbstractEvent</a></h3>
<p> An <a href="Poco.AbstractEvent.html" title="class Poco::AbstractEvent">AbstractEvent</a> is the super-class of all events. <a href="Poco.AbstractEvent.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.AbstractInstantiator.html" class="class">class AbstractInstantiator</a></h3>
<p> The common base class for all <a href="Poco.Instantiator.html" title="class Poco::Instantiator">Instantiator</a> instantiations. <a href="Poco.AbstractInstantiator.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.AbstractMetaObject.html" class="class">class AbstractMetaObject</a></h3>
<p> A <a href="Poco.MetaObject.html" title="class Poco::MetaObject">MetaObject</a> stores some information
about a C++ class. <a href="Poco.AbstractMetaObject.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.AbstractObserver.html" class="class">class AbstractObserver</a></h3>
<p> The base class for all instantiations of
the <a href="Poco.Observer.html" title="class Poco::Observer">Observer</a> and <a href="Poco.NObserver.html" title="class Poco::NObserver">NObserver</a> template classes. <a href="Poco.AbstractObserver.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.AbstractPriorityDelegate.html" class="class">class AbstractPriorityDelegate</a></h3>
<p> Interface for <a href="Poco.PriorityDelegate.html" title="class Poco::PriorityDelegate">PriorityDelegate</a> and <a href="Poco.PriorityExpire.html" title="class Poco::PriorityExpire">PriorityExpire</a>. <a href="Poco.AbstractPriorityDelegate.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.AbstractStrategy.html" class="class">class AbstractStrategy</a></h3>
<p> An <a href="Poco.AbstractStrategy.html" title="class Poco::AbstractStrategy">AbstractStrategy</a> is the interface for all strategies. <a href="Poco.AbstractStrategy.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.AbstractTimerCallback.html" class="class">class AbstractTimerCallback</a></h3>
<p> This is the base class for all instantiations of
the <a href="Poco.TimerCallback.html" title="class Poco::TimerCallback">TimerCallback</a> template. <a href="Poco.AbstractTimerCallback.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.AccessExpirationDecorator.html" class="class">class AccessExpirationDecorator</a></h3>
<p> <a href="Poco.AccessExpirationDecorator.html" title="class Poco::AccessExpirationDecorator">AccessExpirationDecorator</a> adds an expiration method to values so that they can be used
with the <a href="Poco.UniqueAccessExpireCache.html" title="class Poco::UniqueAccessExpireCache">UniqueAccessExpireCache</a> <a href="Poco.AccessExpirationDecorator.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.AccessExpireCache.html" class="class">class AccessExpireCache</a></h3>
<p> An <a href="Poco.AccessExpireCache.html" title="class Poco::AccessExpireCache">AccessExpireCache</a> caches entries for a fixed time period (per default 10 minutes). <a href="Poco.AccessExpireCache.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.AccessExpireLRUCache.html" class="class">class AccessExpireLRUCache</a></h3>
<p> An <a href="Poco.AccessExpireLRUCache.html" title="class Poco::AccessExpireLRUCache">AccessExpireLRUCache</a> combines LRU caching and time based expire caching. <a href="Poco.AccessExpireLRUCache.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.AccessExpireStrategy.html" class="class">class AccessExpireStrategy</a></h3>
<p> An <a href="Poco.AccessExpireStrategy.html" title="class Poco::AccessExpireStrategy">AccessExpireStrategy</a> implements time and access based expiration of cache entries <a href="Poco.AccessExpireStrategy.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ActiveDispatcher.html" class="class">class ActiveDispatcher</a></h3>
<p> This class is used to implement an active object
with strictly serialized method execution. <a href="Poco.ActiveDispatcher.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ActiveMethod.html" class="class">class ActiveMethod</a></h3>
<p> An active method is a method that, when called, executes
in its own thread. <a href="Poco.ActiveMethod.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ActiveResult.html" class="class">class ActiveResult</a></h3>
<p> Creates an <a href="Poco.ActiveResultHolder.html" title="class Poco::ActiveResultHolder">ActiveResultHolder</a>. <a href="Poco.ActiveResult.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ActiveResultHolder.html" class="class">class ActiveResultHolder</a></h3>
<p> This class holds the result of an asynchronous method
invocation. <a href="Poco.ActiveResultHolder.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ActiveRunnable.html" class="class">class ActiveRunnable</a></h3>
<p> This class is used by <a href="Poco.ActiveMethod.html" title="class Poco::ActiveMethod">ActiveMethod</a>. <a href="Poco.ActiveRunnable.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ActiveRunnableBase.html" class="class">class ActiveRunnableBase</a></h3>
<p> The base class for all <a href="Poco.ActiveRunnable.html" title="class Poco::ActiveRunnable">ActiveRunnable</a> instantiations. <a href="Poco.ActiveRunnableBase.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ActiveStarter.html" class="class">class ActiveStarter</a></h3>
<p> The default implementation of the StarterType
policy for <a href="Poco.ActiveMethod.html" title="class Poco::ActiveMethod">ActiveMethod</a>. <a href="Poco.ActiveStarter.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Activity.html" class="class">class Activity</a></h3>
<p> This template class helps to implement active objects. <a href="Poco.Activity.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Any.html" class="class">class Any</a></h3>
<p> An <a href="Poco.Any.html" title="class Poco::Any">Any</a> class represents a general type and is capable of storing any type, supporting type-safe extraction
of the internally stored data. <a href="Poco.Any.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ApplicationException.html" class="class">class ApplicationException</a></h3>
<p> <a href="Poco.ApplicationException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ArchiveByNumberStrategy.html" class="class">class ArchiveByNumberStrategy</a></h3>
<p> A monotonic increasing number is appended to the
log file name. <a href="Poco.ArchiveByNumberStrategy.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ArchiveByTimestampStrategy.html" class="class">class ArchiveByTimestampStrategy</a></h3>
<p> A timestamp (YYYYMMDDhhmmssiii) is appended to archived
log files. <a href="Poco.ArchiveByTimestampStrategy.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ArchiveStrategy.html" class="class">class ArchiveStrategy</a></h3>
<p> The <a href="Poco.ArchiveStrategy.html" title="class Poco::ArchiveStrategy">ArchiveStrategy</a> is used by <a href="Poco.FileChannel.html" title="class Poco::FileChannel">FileChannel</a>
to rename a rotated log file for archiving. <a href="Poco.ArchiveStrategy.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.AssertionViolationException.html" class="class">class AssertionViolationException</a></h3>
<p> <a href="Poco.AssertionViolationException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.AsyncChannel.html" class="class">class AsyncChannel</a></h3>
<p> A channel uses a separate thread for logging. <a href="Poco.AsyncChannel.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.AtomicCounter.html" class="class">class AtomicCounter</a></h3>
<p> This class implements a simple counter, which
provides atomic operations that are safe to
use in a multithreaded environment. <a href="Poco.AtomicCounter.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.AutoPtr.html" class="class">class AutoPtr</a></h3>
<p> <a href="Poco.AutoPtr.html" title="class Poco::AutoPtr">AutoPtr</a> is a "smart" pointer for classes implementing
reference counting based garbage collection. <a href="Poco.AutoPtr.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.AutoReleasePool.html" class="class">class AutoReleasePool</a></h3>
<p> An <a href="Poco.AutoReleasePool.html" title="class Poco::AutoReleasePool">AutoReleasePool</a> implements simple garbage collection for
reference-counted objects. <a href="Poco.AutoReleasePool.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.BadCastException.html" class="class">class BadCastException</a></h3>
<p> <a href="Poco.BadCastException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Base64Decoder.html" class="class">class Base64Decoder</a></h3>
<p> This istream base64-decodes all data
read from the istream connected to it. <a href="Poco.Base64Decoder.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Base64DecoderBuf.html" class="class">class Base64DecoderBuf</a></h3>
<p> This streambuf base64-decodes all data read
from the istream connected to it. <a href="Poco.Base64DecoderBuf.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Base64DecoderIOS.html" class="class">class Base64DecoderIOS</a></h3>
<p> The base class for <a href="Poco.Base64Decoder.html" title="class Poco::Base64Decoder">Base64Decoder</a>. <a href="Poco.Base64DecoderIOS.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Base64Encoder.html" class="class">class Base64Encoder</a></h3>
<p> This ostream base64-encodes all data
written to it and forwards it to
a connected ostream. <a href="Poco.Base64Encoder.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Base64EncoderBuf.html" class="class">class Base64EncoderBuf</a></h3>
<p> This streambuf base64-encodes all data written
to it and forwards it to a connected
ostream. <a href="Poco.Base64EncoderBuf.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Base64EncoderIOS.html" class="class">class Base64EncoderIOS</a></h3>
<p> The base class for <a href="Poco.Base64Encoder.html" title="class Poco::Base64Encoder">Base64Encoder</a>. <a href="Poco.Base64EncoderIOS.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.BasicBufferedBidirectionalStreamBuf.html" class="class">class BasicBufferedBidirectionalStreamBuf</a></h3>
<p> This is an implementation of a buffered bidirectional
streambuf that greatly simplifies the implementation of
custom streambufs of various kinds. <a href="Poco.BasicBufferedBidirectionalStreamBuf.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.BasicBufferedStreamBuf.html" class="class">class BasicBufferedStreamBuf</a></h3>
<p> This is an implementation of a buffered streambuf
that greatly simplifies the implementation of
custom streambufs of various kinds. <a href="Poco.BasicBufferedStreamBuf.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.BasicEvent.html" class="class">class BasicEvent</a></h3>
<p> A <a href="Poco.BasicEvent.html" title="class Poco::BasicEvent">BasicEvent</a> uses internally a <a href="Poco.DefaultStrategy.html" title="class Poco::DefaultStrategy">DefaultStrategy</a> which
invokes delegates in an arbitrary manner. <a href="Poco.BasicEvent.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.BasicMemoryStreamBuf.html" class="class">class BasicMemoryStreamBuf</a></h3>
<p> <a href="Poco.BasicMemoryStreamBuf.html" title="class Poco::BasicMemoryStreamBuf">BasicMemoryStreamBuf</a> is a simple implementation of a
stream buffer for reading and writing from a memory area. <a href="Poco.BasicMemoryStreamBuf.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.BasicUnbufferedStreamBuf.html" class="class">class BasicUnbufferedStreamBuf</a></h3>
<p> This is an implementation of an unbuffered streambuf
that greatly simplifies the implementation of
custom streambufs of various kinds. <a href="Poco.BasicUnbufferedStreamBuf.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.BinaryReader.html" class="class">class BinaryReader</a></h3>
<p> This class reads basic types in binary form into an input stream. <a href="Poco.BinaryReader.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.BinaryWriter.html" class="class">class BinaryWriter</a></h3>
<p> This class writes basic types in binary form into an output stream. <a href="Poco.BinaryWriter.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Buffer.html" class="class">class Buffer</a></h3>
<p> A very simple buffer class that allocates a buffer of
a given type and size in the constructor and
deallocates the buffer in the destructor. <a href="Poco.Buffer.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.BufferAllocator.html" class="class">class BufferAllocator</a></h3>
<p> The <a href="Poco.BufferAllocator.html" title="class Poco::BufferAllocator">BufferAllocator</a> used if no specific
<a href="Poco.BufferAllocator.html" title="class Poco::BufferAllocator">BufferAllocator</a> has been specified. <a href="Poco.BufferAllocator.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Bugcheck.html" class="class">class Bugcheck</a></h3>
<p> This class provides some static methods that are
used by the
poco_assert_dbg(), poco_assert(), poco_check_ptr()
and poco_bugcheck() macros. <a href="Poco.Bugcheck.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.BugcheckException.html" class="class">class BugcheckException</a></h3>
<p> <a href="Poco.BugcheckException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ByteOrder.html" class="class">class ByteOrder</a></h3>
<p> This class contains a number of static methods
to convert between big-endian and little-endian
integers of various sizes. <a href="Poco.ByteOrder.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Channel.html" class="class">class Channel</a></h3>
<p> The base class for all <a href="Poco.Channel.html" title="class Poco::Channel">Channel</a> classes. <a href="Poco.Channel.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Checksum.html" class="class">class Checksum</a></h3>
<p> This class calculates CRC-32 or Adler-32 checksums
for arbitrary data. <a href="Poco.Checksum.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.CircularReferenceException.html" class="class">class CircularReferenceException</a></h3>
<p> <a href="Poco.CircularReferenceException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ClassLoader.html" class="class">class ClassLoader</a></h3>
<p> The <a href="Poco.ClassLoader.html" title="class Poco::ClassLoader">ClassLoader</a> loads C++ classes from shared libraries
at runtime. <a href="Poco.ClassLoader.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Condition.html" class="class">class Condition</a></h3>
<p> A <a href="Poco.Condition.html" title="class Poco::Condition">Condition</a> is a synchronization object used to block a thread
until a particular condition is met. <a href="Poco.Condition.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Configurable.html" class="class">class Configurable</a></h3>
<p> A simple interface that defines
getProperty() and setProperty() methods. <a href="Poco.Configurable.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ConsoleChannel.html" class="class">class ConsoleChannel</a></h3>
<p> A channel that writes to an ostream. <a href="Poco.ConsoleChannel.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.CountingIOS.html" class="class">class CountingIOS</a></h3>
<p> The base class for <a href="Poco.CountingInputStream.html" title="class Poco::CountingInputStream">CountingInputStream</a> and <a href="Poco.CountingOutputStream.html" title="class Poco::CountingOutputStream">CountingOutputStream</a>. <a href="Poco.CountingIOS.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.CountingInputStream.html" class="class">class CountingInputStream</a></h3>
<p> This stream counts all characters and lines
going through it. <a href="Poco.CountingInputStream.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.CountingOutputStream.html" class="class">class CountingOutputStream</a></h3>
<p> This stream counts all characters and lines
going through it. <a href="Poco.CountingOutputStream.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.CountingStreamBuf.html" class="class">class CountingStreamBuf</a></h3>
<p> This stream buffer counts all characters and lines
going through it. <a href="Poco.CountingStreamBuf.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.CreateFileException.html" class="class">class CreateFileException</a></h3>
<p> <a href="Poco.CreateFileException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.DataException.html" class="class">class DataException</a></h3>
<p> <a href="Poco.DataException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.DataFormatException.html" class="class">class DataFormatException</a></h3>
<p> <a href="Poco.DataFormatException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.DateTime.html" class="class">class DateTime</a></h3>
<p> This class represents an instant in time, expressed
in years, months, days, hours, minutes, seconds
and milliseconds based on the Gregorian calendar. <a href="Poco.DateTime.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.DateTimeFormat.html" class="class">class DateTimeFormat</a></h3>
<p> Definition of date/time formats and various
constants used by <a href="Poco.DateTimeFormatter.html" title="class Poco::DateTimeFormatter">DateTimeFormatter</a> and <a href="Poco.DateTimeParser.html" title="class Poco::DateTimeParser">DateTimeParser</a>. <a href="Poco.DateTimeFormat.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.DateTimeFormatter.html" class="class">class DateTimeFormatter</a></h3>
<p> This class converts dates and times into strings, supporting a
variety of standard and custom formats. <a href="Poco.DateTimeFormatter.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.DateTimeParser.html" class="class">class DateTimeParser</a></h3>
<p> This class provides a method for parsing dates and times
from strings. <a href="Poco.DateTimeParser.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Debugger.html" class="class">class Debugger</a></h3>
<p> The <a href="Poco.Debugger.html" title="class Poco::Debugger">Debugger</a> class provides an interface to the debugger. <a href="Poco.Debugger.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.DefaultStrategy.html" class="class">class DefaultStrategy</a></h3>
<p> Default notification strategy. <a href="Poco.DefaultStrategy.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.DeflatingIOS.html" class="class">class DeflatingIOS</a></h3>
<p> The base class for <a href="Poco.DeflatingOutputStream.html" title="class Poco::DeflatingOutputStream">DeflatingOutputStream</a> and <a href="Poco.DeflatingInputStream.html" title="class Poco::DeflatingInputStream">DeflatingInputStream</a>. <a href="Poco.DeflatingIOS.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.DeflatingInputStream.html" class="class">class DeflatingInputStream</a></h3>
<p> This stream compresses all data passing through it
using zlib's deflate algorithm. <a href="Poco.DeflatingInputStream.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.DeflatingOutputStream.html" class="class">class DeflatingOutputStream</a></h3>
<p> This stream compresses all data passing through it
using zlib's deflate algorithm. <a href="Poco.DeflatingOutputStream.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.DeflatingStreamBuf.html" class="class">class DeflatingStreamBuf</a></h3>
<p> This is the streambuf class used by <a href="Poco.DeflatingInputStream.html" title="class Poco::DeflatingInputStream">DeflatingInputStream</a> and <a href="Poco.DeflatingOutputStream.html" title="class Poco::DeflatingOutputStream">DeflatingOutputStream</a>. <a href="Poco.DeflatingStreamBuf.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Delegate.html" class="class">class Delegate</a></h3>
<p> <a href="Poco.Delegate.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.DigestBuf.html" class="class">class DigestBuf</a></h3>
<p> This streambuf computes a digest of all data going
through it. <a href="Poco.DigestBuf.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.DigestEngine.html" class="class">class DigestEngine</a></h3>
<p> This class is an abstract base class
for all classes implementing a message
digest algorithm, like <a href="Poco.MD5Engine.html" title="class Poco::MD5Engine">MD5Engine</a>
and <a href="Poco.SHA1Engine.html" title="class Poco::SHA1Engine">SHA1Engine</a>. <a href="Poco.DigestEngine.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.DigestIOS.html" class="class">class DigestIOS</a></h3>
<p> The base class for <a href="Poco.DigestInputStream.html" title="class Poco::DigestInputStream">DigestInputStream</a> and <a href="Poco.DigestOutputStream.html" title="class Poco::DigestOutputStream">DigestOutputStream</a>. <a href="Poco.DigestIOS.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.DigestInputStream.html" class="class">class DigestInputStream</a></h3>
<p> This istream computes a digest of
all the data passing through it,
using a <a href="Poco.DigestEngine.html" title="class Poco::DigestEngine">DigestEngine</a>. <a href="Poco.DigestInputStream.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.DigestOutputStream.html" class="class">class DigestOutputStream</a></h3>
<p> This ostream computes a digest of
all the data passing through it,
using a <a href="Poco.DigestEngine.html" title="class Poco::DigestEngine">DigestEngine</a>. <a href="Poco.DigestOutputStream.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.DirectoryIterator.html" class="class">class DirectoryIterator</a></h3>
<p> The <a href="Poco.DirectoryIterator.html" title="class Poco::DirectoryIterator">DirectoryIterator</a> class is used to enumerate
all files in a directory. <a href="Poco.DirectoryIterator.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.DynamicAny.html" class="class">class DynamicAny</a></h3>
<p> <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> allows to store data of different types and to convert between these types transparently. <a href="Poco.DynamicAny.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.DynamicAnyHolder.html" class="class">class DynamicAnyHolder</a></h3>
<p> Interface for a data holder used by the <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> class. <a href="Poco.DynamicAnyHolder.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.DynamicAnyHolderImpl.html" class="class">class DynamicAnyHolderImpl</a></h3>
<p> Template based implementation of a <a href="Poco.DynamicAnyHolder.html" title="class Poco::DynamicAnyHolder">DynamicAnyHolder</a>. <a href="Poco.DynamicAnyHolderImpl.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.DynamicFactory.html" class="class">class DynamicFactory</a></h3>
<p> A factory that creates objects by class name. <a href="Poco.DynamicFactory.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.EOFToken.html" class="class">class EOFToken</a></h3>
<p> This token class is used to signal the
end of the input stream. <a href="Poco.EOFToken.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Environment.html" class="class">class Environment</a></h3>
<p> This class provides access to environment variables
and some general system information. <a href="Poco.Environment.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ErrorHandler.html" class="class">class ErrorHandler</a></h3>
<p> This is the base class for thread error handlers. <a href="Poco.ErrorHandler.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Event.html" class="class">class Event</a></h3>
<p> An <a href="Poco.Event.html" title="class Poco::Event">Event</a> is a synchronization object that
allows one thread to signal one or more
other threads that a certain event
has happened. <a href="Poco.Event.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.EventArgs.html" class="class">class EventArgs</a></h3>
<p> The purpose of the <a href="Poco.EventArgs.html" title="class Poco::EventArgs">EventArgs</a> class is to be used as parameter
when one doesn't want to send any data. <a href="Poco.EventArgs.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.EventLogChannel.html" class="class">class EventLogChannel</a></h3>
<p> This Windows-only channel works with the Windows NT <a href="Poco.Event.html" title="class Poco::Event">Event</a> Log
service. <a href="Poco.EventLogChannel.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Exception.html" class="class">class Exception</a></h3>
<p> This is the base class for all exceptions defined
in the <a href="Poco.html" title="namespace Poco">Poco</a> class library. <a href="Poco.Exception.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ExistsException.html" class="class">class ExistsException</a></h3>
<p> <a href="Poco.ExistsException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ExpirationDecorator.html" class="class">class ExpirationDecorator</a></h3>
<p> <a href="Poco.ExpirationDecorator.html" title="class Poco::ExpirationDecorator">ExpirationDecorator</a> adds an expiration method to values so that they can be used
with the <a href="Poco.UniqueExpireCache.html" title="class Poco::UniqueExpireCache">UniqueExpireCache</a> <a href="Poco.ExpirationDecorator.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Expire.html" class="class">class Expire</a></h3>
<p> Decorator for <a href="Poco.AbstractDelegate.html" title="class Poco::AbstractDelegate">AbstractDelegate</a> adding automatic
expiring of registrations to AbstractDelegates. <a href="Poco.Expire.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ExpireCache.html" class="class">class ExpireCache</a></h3>
<p> An <a href="Poco.ExpireCache.html" title="class Poco::ExpireCache">ExpireCache</a> caches entries for a fixed time period (per default 10 minutes). <a href="Poco.ExpireCache.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ExpireLRUCache.html" class="class">class ExpireLRUCache</a></h3>
<p> An <a href="Poco.ExpireLRUCache.html" title="class Poco::ExpireLRUCache">ExpireLRUCache</a> combines LRU caching and time based expire caching. <a href="Poco.ExpireLRUCache.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ExpireStrategy.html" class="class">class ExpireStrategy</a></h3>
<p> An <a href="Poco.ExpireStrategy.html" title="class Poco::ExpireStrategy">ExpireStrategy</a> implements time based expiration of cache entries <a href="Poco.ExpireStrategy.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.FIFOEvent.html" class="class">class FIFOEvent</a></h3>
<p> A <a href="Poco.FIFOEvent.html" title="class Poco::FIFOEvent">FIFOEvent</a> uses internally a <a href="Poco.FIFOStrategy.html" title="class Poco::FIFOStrategy">FIFOStrategy</a> which guarantees
that delegates are invoked in the order they were added to
the event. <a href="Poco.FIFOEvent.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.FIFOStrategy.html" class="class">class FIFOStrategy</a></h3>
<p> <a href="Poco.FIFOStrategy.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.FPEnvironment.html" class="class">class FPEnvironment</a></h3>
<p> Instances of this class can be used to save
and later restore the current floating
point environment (consisting of rounding
mode and floating-point flags). <a href="Poco.FPEnvironment.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.FastMutex.html" class="class">class FastMutex</a></h3>
<p> A <a href="Poco.FastMutex.html" title="class Poco::FastMutex">FastMutex</a> (mutual exclusion) is similar to a <a href="Poco.Mutex.html" title="class Poco::Mutex">Mutex</a>. <a href="Poco.FastMutex.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.File.html" class="class">class File</a></h3>
<p> The <a href="Poco.File.html" title="class Poco::File">File</a> class provides methods for working with a file. <a href="Poco.File.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.FileAccessDeniedException.html" class="class">class FileAccessDeniedException</a></h3>
<p> <a href="Poco.FileAccessDeniedException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.FileChannel.html" class="class">class FileChannel</a></h3>
<p> A <a href="Poco.Channel.html" title="class Poco::Channel">Channel</a> that writes to a file. <a href="Poco.FileChannel.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.FileException.html" class="class">class FileException</a></h3>
<p> <a href="Poco.FileException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.FileExistsException.html" class="class">class FileExistsException</a></h3>
<p> <a href="Poco.FileExistsException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.FileIOS.html" class="class">class FileIOS</a></h3>
<p> The base class for <a href="Poco.FileInputStream.html" title="class Poco::FileInputStream">FileInputStream</a> and <a href="Poco.FileOutputStream.html" title="class Poco::FileOutputStream">FileOutputStream</a>. <a href="Poco.FileIOS.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.FileInputStream.html" class="class">class FileInputStream</a></h3>
<p> An input stream for reading from a file. <a href="Poco.FileInputStream.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.FileNotFoundException.html" class="class">class FileNotFoundException</a></h3>
<p> <a href="Poco.FileNotFoundException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.FileOutputStream.html" class="class">class FileOutputStream</a></h3>
<p> An output stream for writing to a file. <a href="Poco.FileOutputStream.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.FileReadOnlyException.html" class="class">class FileReadOnlyException</a></h3>
<p> <a href="Poco.FileReadOnlyException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.FileStream.html" class="class">class FileStream</a></h3>
<p> A stream for reading from and writing to a file. <a href="Poco.FileStream.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.FileStreamFactory.html" class="class">class FileStreamFactory</a></h3>
<p> An implementation of the <a href="Poco.URIStreamFactory.html" title="class Poco::URIStreamFactory">URIStreamFactory</a> interface
that handles file URIs. <a href="Poco.FileStreamFactory.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Formatter.html" class="class">class Formatter</a></h3>
<p> The base class for all <a href="Poco.Formatter.html" title="class Poco::Formatter">Formatter</a> classes. <a href="Poco.Formatter.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.FormattingChannel.html" class="class">class FormattingChannel</a></h3>
<p> The <a href="Poco.FormattingChannel.html" title="class Poco::FormattingChannel">FormattingChannel</a> is a filter channel that routes
a <a href="Poco.Message.html" title="class Poco::Message">Message</a> through a <a href="Poco.Formatter.html" title="class Poco::Formatter">Formatter</a> before passing it on
to the destination channel. <a href="Poco.FormattingChannel.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.FunctionDelegate.html" class="class">class FunctionDelegate</a></h3>
<p> Wraps a C style function (or a C++ static fucntion) to be used as
a delegate <a href="Poco.FunctionDelegate.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.FunctionPriorityDelegate.html" class="class">class FunctionPriorityDelegate</a></h3>
<p> Wraps a C style function (or a C++ static fucntion) to be used as
a priority delegate <a href="Poco.FunctionPriorityDelegate.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Getter.html" class="class">struct Getter</a></h3>
<p> <a href="Poco.Getter.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Glob.html" class="class">class Glob</a></h3>
<p> This class implements glob-style pattern matching
as known from Unix shells. <a href="Poco.Glob.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.HMACEngine.html" class="class">class HMACEngine</a></h3>
<p> This class implementes the HMAC message
authentication code algorithm, as specified
in <a href="http://www.ietf.org/rfc/rfc2104.txt" target="_blank">RFC 2104</a>. <a href="Poco.HMACEngine.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Hash.html" class="class">struct Hash</a></h3>
<p> A generic hash function. <a href="Poco.Hash.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.HashFunction.html" class="class">struct HashFunction</a></h3>
<p> A generic hash function. <a href="Poco.HashFunction.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.HashMap.html" class="class">class HashMap</a></h3>
<p> This class implements a map using a <a href="Poco.LinearHashTable.html" title="class Poco::LinearHashTable">LinearHashTable</a>. <a href="Poco.HashMap.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.HashMapEntry.html" class="class">struct HashMapEntry</a></h3>
<p> This class template is used internally by <a href="Poco.HashMap.html" title="class Poco::HashMap">HashMap</a>. <a href="Poco.HashMapEntry.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.HashMapEntryHash.html" class="class">struct HashMapEntryHash</a></h3>
<p> This class template is used internally by <a href="Poco.HashMap.html" title="class Poco::HashMap">HashMap</a>. <a href="Poco.HashMapEntryHash.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.HashSet.html" class="class">class HashSet</a></h3>
<p> This class implements a set using a <a href="Poco.LinearHashTable.html" title="class Poco::LinearHashTable">LinearHashTable</a>. <a href="Poco.HashSet.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.HashStatistic.html" class="class">class HashStatistic</a></h3>
<p> <a href="Poco.HashStatistic.html" title="class Poco::HashStatistic">HashStatistic</a> class bundles statistical information on the current state of a <a href="Poco.HashTable.html" title="class Poco::HashTable">HashTable</a> <a href="Poco.HashStatistic.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.HashTable.html" class="class">class HashTable</a></h3>
<p> A <a href="Poco.HashTable.html" title="class Poco::HashTable">HashTable</a> stores a key value pair that can be looked up via a hashed key. <a href="Poco.HashTable.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.HexBinaryDecoder.html" class="class">class HexBinaryDecoder</a></h3>
<p> This istream decodes all hexBinary-encoded data read
from the istream connected to it. <a href="Poco.HexBinaryDecoder.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.HexBinaryDecoderBuf.html" class="class">class HexBinaryDecoderBuf</a></h3>
<p> This streambuf decodes all hexBinary-encoded data read
from the istream connected to it. <a href="Poco.HexBinaryDecoderBuf.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.HexBinaryDecoderIOS.html" class="class">class HexBinaryDecoderIOS</a></h3>
<p> The base class for <a href="Poco.HexBinaryDecoder.html" title="class Poco::HexBinaryDecoder">HexBinaryDecoder</a>. <a href="Poco.HexBinaryDecoderIOS.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.HexBinaryEncoder.html" class="class">class HexBinaryEncoder</a></h3>
<p> This ostream encodes all data
written to it in BinHex encoding and forwards it to
a connected ostream. <a href="Poco.HexBinaryEncoder.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.HexBinaryEncoderBuf.html" class="class">class HexBinaryEncoderBuf</a></h3>
<p> This streambuf encodes all data written
to it in hexBinary encoding and forwards it to a connected
ostream. <a href="Poco.HexBinaryEncoderBuf.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.HexBinaryEncoderIOS.html" class="class">class HexBinaryEncoderIOS</a></h3>
<p> The base class for <a href="Poco.HexBinaryEncoder.html" title="class Poco::HexBinaryEncoder">HexBinaryEncoder</a>. <a href="Poco.HexBinaryEncoderIOS.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.IOException.html" class="class">class IOException</a></h3>
<p> <a href="Poco.IOException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.IllegalStateException.html" class="class">class IllegalStateException</a></h3>
<p> <a href="Poco.IllegalStateException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.InflatingIOS.html" class="class">class InflatingIOS</a></h3>
<p> The base class for <a href="Poco.InflatingOutputStream.html" title="class Poco::InflatingOutputStream">InflatingOutputStream</a> and <a href="Poco.InflatingInputStream.html" title="class Poco::InflatingInputStream">InflatingInputStream</a>. <a href="Poco.InflatingIOS.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.InflatingInputStream.html" class="class">class InflatingInputStream</a></h3>
<p> This stream decompresses all data passing through it
using zlib's inflate algorithm. <a href="Poco.InflatingInputStream.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.InflatingOutputStream.html" class="class">class InflatingOutputStream</a></h3>
<p> This stream decompresses all data passing through it
using zlib's inflate algorithm. <a href="Poco.InflatingOutputStream.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.InflatingStreamBuf.html" class="class">class InflatingStreamBuf</a></h3>
<p> This is the streambuf class used by <a href="Poco.InflatingInputStream.html" title="class Poco::InflatingInputStream">InflatingInputStream</a> and <a href="Poco.InflatingOutputStream.html" title="class Poco::InflatingOutputStream">InflatingOutputStream</a>. <a href="Poco.InflatingStreamBuf.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.InputLineEndingConverter.html" class="class">class InputLineEndingConverter</a></h3>
<p> <a href="Poco.InputLineEndingConverter.html" title="class Poco::InputLineEndingConverter">InputLineEndingConverter</a> performs line ending conversion
on text input streams. <a href="Poco.InputLineEndingConverter.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.InputStreamConverter.html" class="class">class InputStreamConverter</a></h3>
<p> This stream converts all characters read from the
underlying istream from one character encoding into another. <a href="Poco.InputStreamConverter.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Instantiator.html" class="class">class Instantiator</a></h3>
<p> A template class for the easy instantiation of
instantiators. <a href="Poco.Instantiator.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.InvalidAccessException.html" class="class">class InvalidAccessException</a></h3>
<p> <a href="Poco.InvalidAccessException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.InvalidArgumentException.html" class="class">class InvalidArgumentException</a></h3>
<p> <a href="Poco.InvalidArgumentException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.InvalidToken.html" class="class">class InvalidToken</a></h3>
<p> This token class is used for signalling that
an invalid character sequence has been encountered
in the input stream. <a href="Poco.InvalidToken.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.IsConst.html" class="class">struct IsConst</a></h3>
<p>Use this struct to determine if a template type is a const type <a href="Poco.IsConst.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.IsReference.html" class="class">struct IsReference</a></h3>
<p>Use this struct to determine if a template type is a reference <a href="Poco.IsReference.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.KeyValueArgs.html" class="class">class KeyValueArgs</a></h3>
<p> Simply event arguments class to transfer a key and a value via an event call. <a href="Poco.KeyValueArgs.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.LRUCache.html" class="class">class LRUCache</a></h3>
<p> An <a href="Poco.LRUCache.html" title="class Poco::LRUCache">LRUCache</a> implements Least Recently Used caching. <a href="Poco.LRUCache.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.LRUStrategy.html" class="class">class LRUStrategy</a></h3>
<p> An <a href="Poco.LRUStrategy.html" title="class Poco::LRUStrategy">LRUStrategy</a> implements least recently used cache replacement. <a href="Poco.LRUStrategy.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Latin1Encoding.html" class="class">class Latin1Encoding</a></h3>
<p> ISO Latin-1 (8859-1) text encoding. <a href="Poco.Latin1Encoding.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Latin9Encoding.html" class="class">class Latin9Encoding</a></h3>
<p> ISO Latin-9 (8859-15) text encoding. <a href="Poco.Latin9Encoding.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.LibraryAlreadyLoadedException.html" class="class">class LibraryAlreadyLoadedException</a></h3>
<p> <a href="Poco.LibraryAlreadyLoadedException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.LibraryLoadException.html" class="class">class LibraryLoadException</a></h3>
<p> <a href="Poco.LibraryLoadException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.LineEnding.html" class="class">class LineEnding</a></h3>
<p> This class defines valid line ending sequences
for <a href="Poco.InputLineEndingConverter.html" title="class Poco::InputLineEndingConverter">InputLineEndingConverter</a> and <a href="Poco.OutputLineEndingConverter.html" title="class Poco::OutputLineEndingConverter">OutputLineEndingConverter</a>. <a href="Poco.LineEnding.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.LineEndingConverterIOS.html" class="class">class LineEndingConverterIOS</a></h3>
<p> The base class for <a href="Poco.InputLineEndingConverter.html" title="class Poco::InputLineEndingConverter">InputLineEndingConverter</a> and <a href="Poco.OutputLineEndingConverter.html" title="class Poco::OutputLineEndingConverter">OutputLineEndingConverter</a>. <a href="Poco.LineEndingConverterIOS.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.LineEndingConverterStreamBuf.html" class="class">class LineEndingConverterStreamBuf</a></h3>
<p> This stream buffer performs line ending conversion
on text streams. <a href="Poco.LineEndingConverterStreamBuf.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.LinearHashTable.html" class="class">class LinearHashTable</a></h3>
<p> This class implements a linear hash table. <a href="Poco.LinearHashTable.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.LocalDateTime.html" class="class">class LocalDateTime</a></h3>
<p> This class represents an instant in local time
(as opposed to UTC), expressed in years, months, days,
hours, minutes, seconds and milliseconds based on the
Gregorian calendar. <a href="Poco.LocalDateTime.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.LogFile.html" class="class">class LogFile</a></h3>
<p> This class is used by <a href="Poco.FileChannel.html" title="class Poco::FileChannel">FileChannel</a> to work
with a log file. <a href="Poco.LogFile.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.LogIOS.html" class="class">class LogIOS</a></h3>
<p> The base class for <a href="Poco.LogStream.html" title="class Poco::LogStream">LogStream</a>. <a href="Poco.LogIOS.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.LogStream.html" class="class">class LogStream</a></h3>
<p> This class implements an ostream interface
to a <a href="Poco.Logger.html" title="class Poco::Logger">Logger</a>. <a href="Poco.LogStream.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.LogStreamBuf.html" class="class">class LogStreamBuf</a></h3>
<p> This class implements a streambuf interface
to a <a href="Poco.Logger.html" title="class Poco::Logger">Logger</a>. <a href="Poco.LogStreamBuf.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Logger.html" class="class">class Logger</a></h3>
<p> <a href="Poco.Logger.html" title="class Poco::Logger">Logger</a> is a special <a href="Poco.Channel.html" title="class Poco::Channel">Channel</a> that acts as the main
entry point into the logging framework. <a href="Poco.Logger.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.LoggingFactory.html" class="class">class LoggingFactory</a></h3>
<p> An extensible factory for channels and formatters. <a href="Poco.LoggingFactory.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.LoggingRegistry.html" class="class">class LoggingRegistry</a></h3>
<p> A registry for channels and formatters. <a href="Poco.LoggingRegistry.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.LogicException.html" class="class">class LogicException</a></h3>
<p> <a href="Poco.LogicException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.MD2Engine.html" class="class">class MD2Engine</a></h3>
<p> This class implementes the MD2 message digest algorithm,
described in <a href="http://www.ietf.org/rfc/rfc1319.txt" target="_blank">RFC 1319</a>. <a href="Poco.MD2Engine.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.MD4Engine.html" class="class">class MD4Engine</a></h3>
<p> This class implementes the MD4 message digest algorithm,
described in <a href="http://www.ietf.org/rfc/rfc1320.txt" target="_blank">RFC 1320</a>. <a href="Poco.MD4Engine.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.MD5Engine.html" class="class">class MD5Engine</a></h3>
<p> This class implementes the MD5 message digest algorithm,
described in <a href="http://www.ietf.org/rfc/rfc1321.txt" target="_blank">RFC 1321</a>. <a href="Poco.MD5Engine.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Manifest.html" class="class">class Manifest</a></h3>
<p> A <a href="Poco.Manifest.html" title="class Poco::Manifest">Manifest</a> maintains a list of all classes
contained in a dynamically loadable class
library. <a href="Poco.Manifest.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ManifestBase.html" class="class">class ManifestBase</a></h3>
<p> <a href="Poco.ManifestBase.html" title="class Poco::ManifestBase">ManifestBase</a> is a common base class for
all instantiations of <a href="Poco.Manifest.html" title="class Poco::Manifest">Manifest</a>. <a href="Poco.ManifestBase.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.MemoryIOS.html" class="class">class MemoryIOS</a></h3>
<p> The base class for <a href="Poco.MemoryInputStream.html" title="class Poco::MemoryInputStream">MemoryInputStream</a> and <a href="Poco.MemoryOutputStream.html" title="class Poco::MemoryOutputStream">MemoryOutputStream</a>. <a href="Poco.MemoryIOS.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.MemoryInputStream.html" class="class">class MemoryInputStream</a></h3>
<p> An input stream for reading from a memory area. <a href="Poco.MemoryInputStream.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.MemoryOutputStream.html" class="class">class MemoryOutputStream</a></h3>
<p> An input stream for reading from a memory area. <a href="Poco.MemoryOutputStream.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.MemoryPool.html" class="class">class MemoryPool</a></h3>
<p> A simple pool for fixed-size memory blocks. <a href="Poco.MemoryPool.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Message.html" class="class">class Message</a></h3>
<p> This class represents a log message that is sent through a
chain of log channels. <a href="Poco.Message.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.MetaObject.html" class="class">class MetaObject</a></h3>
<p> A <a href="Poco.MetaObject.html" title="class Poco::MetaObject">MetaObject</a> stores some information
about a C++ class. <a href="Poco.MetaObject.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.MetaSingleton.html" class="class">class MetaSingleton</a></h3>
<p> A SingletonMetaObject disables the create() method
and instead offers an instance() method to access
the single instance of its class. <a href="Poco.MetaSingleton.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Mutex.html" class="class">class Mutex</a></h3>
<p> A <a href="Poco.Mutex.html" title="class Poco::Mutex">Mutex</a> (mutual exclusion) is a synchronization
mechanism used to control access to a shared resource
in a concurrent (multithreaded) scenario. <a href="Poco.Mutex.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.NDCScope.html" class="class">class NDCScope</a></h3>
<p> This class can be used to automatically push a context onto
the <a href="Poco.html#8776" title="Poco::NDC">NDC</a> stack at the beginning of a scope, and to pop
the context at the end of the scope. <a href="Poco.NDCScope.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.NObserver.html" class="class">class NObserver</a></h3>
<p> This template class implements an adapter that sits between
a <a href="Poco.NotificationCenter.html" title="class Poco::NotificationCenter">NotificationCenter</a> and an object receiving notifications
from it. <a href="Poco.NObserver.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.NamedEvent.html" class="class">class NamedEvent</a></h3>
<p> An <a href="Poco.NamedEvent.html" title="class Poco::NamedEvent">NamedEvent</a> is a global synchronization object
that allows one process or thread to signal an
other process or thread that a certain event
has happened. <a href="Poco.NamedEvent.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.NamedMutex.html" class="class">class NamedMutex</a></h3>
<p> A <a href="Poco.NamedMutex.html" title="class Poco::NamedMutex">NamedMutex</a> (mutual exclusion) is a global synchronization
mechanism used to control access to a shared resource
in a concurrent (multi process) scenario. <a href="Poco.NamedMutex.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.NamedTuple.html" class="class">struct NamedTuple</a></h3>
<p> <a href="Poco.NamedTuple.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.NestedDiagnosticContext.html" class="class">class NestedDiagnosticContext</a></h3>
<p> This class implements a Nested Diagnostic Context (<a href="Poco.html#8776" title="Poco::NDC">NDC</a>),
as described in Neil Harrison's article "Patterns for Logging
Diagnostic Messages" in "Pattern Languages of Program Design 3"
(Addison-Wesley). <a href="Poco.NestedDiagnosticContext.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.NoPermissionException.html" class="class">class NoPermissionException</a></h3>
<p> <a href="Poco.NoPermissionException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.NoThreadAvailableException.html" class="class">class NoThreadAvailableException</a></h3>
<p> <a href="Poco.NoThreadAvailableException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.NotFoundException.html" class="class">class NotFoundException</a></h3>
<p> <a href="Poco.NotFoundException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.NotImplementedException.html" class="class">class NotImplementedException</a></h3>
<p> <a href="Poco.NotImplementedException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Notification.html" class="class">class Notification</a></h3>
<p> The base class for all notification classes used
with the <a href="Poco.NotificationCenter.html" title="class Poco::NotificationCenter">NotificationCenter</a> and the <a href="Poco.NotificationQueue.html" title="class Poco::NotificationQueue">NotificationQueue</a>
classes. <a href="Poco.Notification.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.NotificationCenter.html" class="class">class NotificationCenter</a></h3>
<p> A <a href="Poco.NotificationCenter.html" title="class Poco::NotificationCenter">NotificationCenter</a> is essentially a notification dispatcher. <a href="Poco.NotificationCenter.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.NotificationQueue.html" class="class">class NotificationQueue</a></h3>
<p> A <a href="Poco.NotificationQueue.html" title="class Poco::NotificationQueue">NotificationQueue</a> object provides a way to implement asynchronous
notifications. <a href="Poco.NotificationQueue.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.NotificationStrategy.html" class="class">class NotificationStrategy</a></h3>
<p> The interface that all notification strategies must implement. <a href="Poco.NotificationStrategy.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.NullChannel.html" class="class">class NullChannel</a></h3>
<p> The <a href="Poco.NullChannel.html" title="class Poco::NullChannel">NullChannel</a> is the /dev/null of Channels. <a href="Poco.NullChannel.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.NullIOS.html" class="class">class NullIOS</a></h3>
<p> The base class for <a href="Poco.NullInputStream.html" title="class Poco::NullInputStream">NullInputStream</a> and <a href="Poco.NullOutputStream.html" title="class Poco::NullOutputStream">NullOutputStream</a>. <a href="Poco.NullIOS.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.NullInputStream.html" class="class">class NullInputStream</a></h3>
<p> <a href="Poco.Any.html" title="class Poco::Any">Any</a> read operation from this stream immediately
yields EOF. <a href="Poco.NullInputStream.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.NullOutputStream.html" class="class">class NullOutputStream</a></h3>
<p> This stream discards all characters written to it. <a href="Poco.NullOutputStream.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.NullPointerException.html" class="class">class NullPointerException</a></h3>
<p> <a href="Poco.NullPointerException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.NullStreamBuf.html" class="class">class NullStreamBuf</a></h3>
<p> This stream buffer discards all characters written to it. <a href="Poco.NullStreamBuf.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.NullTypeList.html" class="class">struct NullTypeList</a></h3>
<p> <a href="Poco.NullTypeList.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.NumberFormatter.html" class="class">class NumberFormatter</a></h3>
<p> The <a href="Poco.NumberFormatter.html" title="class Poco::NumberFormatter">NumberFormatter</a> class provides static methods
for formatting numeric values into strings. <a href="Poco.NumberFormatter.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.NumberParser.html" class="class">class NumberParser</a></h3>
<p> The <a href="Poco.NumberParser.html" title="class Poco::NumberParser">NumberParser</a> class provides static methods
for parsing numbers out of strings. <a href="Poco.NumberParser.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Observer.html" class="class">class Observer</a></h3>
<p> This template class implements an adapter that sits between
a <a href="Poco.NotificationCenter.html" title="class Poco::NotificationCenter">NotificationCenter</a> and an object receiving notifications
from it. <a href="Poco.Observer.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.OpcomChannel.html" class="class">class OpcomChannel</a></h3>
<p> A OpenVMS-only channel that uses the OpenVMS OPCOM service. <a href="Poco.OpcomChannel.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.OpenFileException.html" class="class">class OpenFileException</a></h3>
<p> <a href="Poco.OpenFileException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.OutOfMemoryException.html" class="class">class OutOfMemoryException</a></h3>
<p> <a href="Poco.OutOfMemoryException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.OutputLineEndingConverter.html" class="class">class OutputLineEndingConverter</a></h3>
<p> <a href="Poco.OutputLineEndingConverter.html" title="class Poco::OutputLineEndingConverter">OutputLineEndingConverter</a> performs line ending conversion
on text output streams. <a href="Poco.OutputLineEndingConverter.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.OutputStreamConverter.html" class="class">class OutputStreamConverter</a></h3>
<p> This stream converts all characters written to the
underlying ostream from one character encoding into another. <a href="Poco.OutputStreamConverter.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Path.html" class="class">class Path</a></h3>
<p> This class represents filesystem paths in a
platform-independent manner. <a href="Poco.Path.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.PathNotFoundException.html" class="class">class PathNotFoundException</a></h3>
<p> <a href="Poco.PathNotFoundException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.PathSyntaxException.html" class="class">class PathSyntaxException</a></h3>
<p> <a href="Poco.PathSyntaxException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.PatternFormatter.html" class="class">class PatternFormatter</a></h3>
<p> This <a href="Poco.Formatter.html" title="class Poco::Formatter">Formatter</a> allows for custom formatting of
log messages based on format patterns. <a href="Poco.PatternFormatter.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Pipe.html" class="class">class Pipe</a></h3>
<p> This class implements an anonymous pipe. <a href="Poco.Pipe.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.PipeIOS.html" class="class">class PipeIOS</a></h3>
<p> The base class for <a href="Poco.PipeInputStream.html" title="class Poco::PipeInputStream">PipeInputStream</a> and
<a href="Poco.PipeOutputStream.html" title="class Poco::PipeOutputStream">PipeOutputStream</a>. <a href="Poco.PipeIOS.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.PipeInputStream.html" class="class">class PipeInputStream</a></h3>
<p> An input stream for reading from a <a href="Poco.Pipe.html" title="class Poco::Pipe">Pipe</a>. <a href="Poco.PipeInputStream.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.PipeOutputStream.html" class="class">class PipeOutputStream</a></h3>
<p> An output stream for writing to a <a href="Poco.Pipe.html" title="class Poco::Pipe">Pipe</a>. <a href="Poco.PipeOutputStream.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.PipeStreamBuf.html" class="class">class PipeStreamBuf</a></h3>
<p> This is the streambuf class used for reading from and writing to a <a href="Poco.Pipe.html" title="class Poco::Pipe">Pipe</a>. <a href="Poco.PipeStreamBuf.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.PoolOverflowException.html" class="class">class PoolOverflowException</a></h3>
<p> <a href="Poco.PoolOverflowException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.PriorityDelegate.html" class="class">class PriorityDelegate</a></h3>
<p> <a href="Poco.PriorityDelegate.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.PriorityEvent.html" class="class">class PriorityEvent</a></h3>
<p> A <a href="Poco.PriorityEvent.html" title="class Poco::PriorityEvent">PriorityEvent</a> uses internally a <a href="Poco.DefaultStrategy.html" title="class Poco::DefaultStrategy">DefaultStrategy</a> which
invokes delegates in a manner determined by the priority field
in the PriorityDelegates (lower priorities first). <a href="Poco.PriorityEvent.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.PriorityExpire.html" class="class">class PriorityExpire</a></h3>
<p> Decorator for <a href="Poco.AbstractPriorityDelegate.html" title="class Poco::AbstractPriorityDelegate">AbstractPriorityDelegate</a> adding automatic
expiring of registrations to <a href="Poco.AbstractPriorityDelegate.html" title="class Poco::AbstractPriorityDelegate">AbstractPriorityDelegate</a>. <a href="Poco.PriorityExpire.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.PriorityNotificationQueue.html" class="class">class PriorityNotificationQueue</a></h3>
<p> A <a href="Poco.PriorityNotificationQueue.html" title="class Poco::PriorityNotificationQueue">PriorityNotificationQueue</a> object provides a way to implement asynchronous
notifications. <a href="Poco.PriorityNotificationQueue.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Process.html" class="class">class Process</a></h3>
<p> This class provides methods for working with processes. <a href="Poco.Process.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ProcessHandle.html" class="class">class ProcessHandle</a></h3>
<p> A handle for a process created with <a href="Poco.Process.html#9531" title="Poco::Process::launch()">Process::launch</a>(). <a href="Poco.ProcessHandle.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.PropertyNotSupportedException.html" class="class">class PropertyNotSupportedException</a></h3>
<p> <a href="Poco.PropertyNotSupportedException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ProtocolException.html" class="class">class ProtocolException</a></h3>
<p> <a href="Poco.ProtocolException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.PurgeByAgeStrategy.html" class="class">class PurgeByAgeStrategy</a></h3>
<p> This purge strategy purges all files that have
exceeded a given age (given in seconds). <a href="Poco.PurgeByAgeStrategy.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.PurgeByCountStrategy.html" class="class">class PurgeByCountStrategy</a></h3>
<p> This purge strategy ensures that a maximum number
of archived files is not exceeded. <a href="Poco.PurgeByCountStrategy.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.PurgeStrategy.html" class="class">class PurgeStrategy</a></h3>
<p> The <a href="Poco.PurgeStrategy.html" title="class Poco::PurgeStrategy">PurgeStrategy</a> is used by <a href="Poco.FileChannel.html" title="class Poco::FileChannel">FileChannel</a>
to purge archived log files. <a href="Poco.PurgeStrategy.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.RWLock.html" class="class">class RWLock</a></h3>
<p> A reader writer lock allows multiple concurrent
readers or one exclusive writer. <a href="Poco.RWLock.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Random.html" class="class">class Random</a></h3>
<p> A better random number generator. <a href="Poco.Random.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.RandomBuf.html" class="class">class RandomBuf</a></h3>
<p> This streambuf generates random data. <a href="Poco.RandomBuf.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.RandomIOS.html" class="class">class RandomIOS</a></h3>
<p> The base class for <a href="Poco.RandomInputStream.html" title="class Poco::RandomInputStream">RandomInputStream</a>. <a href="Poco.RandomIOS.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.RandomInputStream.html" class="class">class RandomInputStream</a></h3>
<p> This istream generates random data
using the <a href="Poco.RandomBuf.html" title="class Poco::RandomBuf">RandomBuf</a>. <a href="Poco.RandomInputStream.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.RangeException.html" class="class">class RangeException</a></h3>
<p> <a href="Poco.RangeException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ReadFileException.html" class="class">class ReadFileException</a></h3>
<p> <a href="Poco.ReadFileException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.RefCountedObject.html" class="class">class RefCountedObject</a></h3>
<p> A base class for objects that employ
reference counting based garbage collection. <a href="Poco.RefCountedObject.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ReferenceCounter.html" class="class">class ReferenceCounter</a></h3>
<p> Simple <a href="Poco.ReferenceCounter.html" title="class Poco::ReferenceCounter">ReferenceCounter</a> object, does not delete itself when count reaches 0. <a href="Poco.ReferenceCounter.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.RegularExpression.html" class="class">class RegularExpression</a></h3>
<p> A class for working with regular expressions. <a href="Poco.RegularExpression.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.RegularExpressionException.html" class="class">class RegularExpressionException</a></h3>
<p> <a href="Poco.RegularExpressionException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ReleaseArrayPolicy.html" class="class">class ReleaseArrayPolicy</a></h3>
<p> The release policy for <a href="Poco.SharedPtr.html" title="class Poco::SharedPtr">SharedPtr</a> holding arrays. <a href="Poco.ReleaseArrayPolicy.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ReleasePolicy.html" class="class">class ReleasePolicy</a></h3>
<p> The default release policy for <a href="Poco.SharedPtr.html" title="class Poco::SharedPtr">SharedPtr</a>, which
simply uses the delete operator to delete an object. <a href="Poco.ReleasePolicy.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.RotateAtTimeStrategy.html" class="class">class RotateAtTimeStrategy</a></h3>
<p> The file is rotated at specified [day,][hour]:minute <a href="Poco.RotateAtTimeStrategy.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.RotateByIntervalStrategy.html" class="class">class RotateByIntervalStrategy</a></h3>
<p> The file is rotated when the log file
exceeds a given age. <a href="Poco.RotateByIntervalStrategy.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.RotateBySizeStrategy.html" class="class">class RotateBySizeStrategy</a></h3>
<p> The file is rotated when the log file
exceeds a given size. <a href="Poco.RotateBySizeStrategy.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.RotateStrategy.html" class="class">class RotateStrategy</a></h3>
<p> The <a href="Poco.RotateStrategy.html" title="class Poco::RotateStrategy">RotateStrategy</a> is used by <a href="Poco.LogFile.html" title="class Poco::LogFile">LogFile</a> to determine when
a file must be rotated. <a href="Poco.RotateStrategy.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Runnable.html" class="class">class Runnable</a></h3>
<p> The <a href="Poco.Runnable.html" title="class Poco::Runnable">Runnable</a> interface with the run() method
must be implemented by classes that provide
an entry point for a thread. <a href="Poco.Runnable.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.RunnableAdapter.html" class="class">class RunnableAdapter</a></h3>
<p> This adapter simplifies using ordinary methods as
targets for threads. <a href="Poco.RunnableAdapter.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.RuntimeException.html" class="class">class RuntimeException</a></h3>
<p> <a href="Poco.RuntimeException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.SHA1Engine.html" class="class">class SHA1Engine</a></h3>
<p> This class implementes the SHA-1 message digest algorithm. <a href="Poco.SHA1Engine.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ScopedLock.html" class="class">class ScopedLock</a></h3>
<p> A class that simplifies thread synchronization
with a mutex. <a href="Poco.ScopedLock.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ScopedLockWithUnlock.html" class="class">class ScopedLockWithUnlock</a></h3>
<p> A class that simplifies thread synchronization
with a mutex. <a href="Poco.ScopedLockWithUnlock.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ScopedRWLock.html" class="class">class ScopedRWLock</a></h3>
<p> A variant of <a href="Poco.ScopedLock.html" title="class Poco::ScopedLock">ScopedLock</a> for reader/writer locks. <a href="Poco.ScopedRWLock.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ScopedReadRWLock.html" class="class">class ScopedReadRWLock</a></h3>
<p> A variant of <a href="Poco.ScopedLock.html" title="class Poco::ScopedLock">ScopedLock</a> for reader locks. <a href="Poco.ScopedReadRWLock.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ScopedUnlock.html" class="class">class ScopedUnlock</a></h3>
<p> A class that simplifies thread synchronization
with a mutex. <a href="Poco.ScopedUnlock.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ScopedWriteRWLock.html" class="class">class ScopedWriteRWLock</a></h3>
<p> A variant of <a href="Poco.ScopedLock.html" title="class Poco::ScopedLock">ScopedLock</a> for writer locks. <a href="Poco.ScopedWriteRWLock.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Semaphore.html" class="class">class Semaphore</a></h3>
<p> A <a href="Poco.Semaphore.html" title="class Poco::Semaphore">Semaphore</a> is a synchronization object with the following
characteristics:
A semaphore has a value that is constrained to be a non-negative
integer and two atomic operations. <a href="Poco.Semaphore.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.SharedLibrary.html" class="class">class SharedLibrary</a></h3>
<p> The <a href="Poco.SharedLibrary.html" title="class Poco::SharedLibrary">SharedLibrary</a> class dynamically
loads shared libraries at run-time. <a href="Poco.SharedLibrary.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.SharedMemory.html" class="class">class SharedMemory</a></h3>
<p> Create and manage a shared memory object. <a href="Poco.SharedMemory.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.SharedPtr.html" class="class">class SharedPtr</a></h3>
<p> <a href="Poco.SharedPtr.html" title="class Poco::SharedPtr">SharedPtr</a> is a "smart" pointer for classes implementing
reference counting based garbage collection. <a href="Poco.SharedPtr.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.SignalException.html" class="class">class SignalException</a></h3>
<p> <a href="Poco.SignalException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.SignalHandler.html" class="class">class SignalHandler</a></h3>
<p> This helper class simplifies the handling of POSIX signals. <a href="Poco.SignalHandler.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.SimpleFileChannel.html" class="class">class SimpleFileChannel</a></h3>
<p> A <a href="Poco.Channel.html" title="class Poco::Channel">Channel</a> that writes to a file. <a href="Poco.SimpleFileChannel.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.SimpleHashTable.html" class="class">class SimpleHashTable</a></h3>
<p> A <a href="Poco.SimpleHashTable.html" title="class Poco::SimpleHashTable">SimpleHashTable</a> stores a key value pair that can be looked up via a hashed key. <a href="Poco.SimpleHashTable.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.SingletonHolder.html" class="class">class SingletonHolder</a></h3>
<p> This is a helper template class for managing
singleton objects allocated on the heap. <a href="Poco.SingletonHolder.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.SplitterChannel.html" class="class">class SplitterChannel</a></h3>
<p> This channel sends a message to multiple
channels simultaneously. <a href="Poco.SplitterChannel.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Stopwatch.html" class="class">class Stopwatch</a></h3>
<p> A simple facility to measure time intervals
with microsecond resolution. <a href="Poco.Stopwatch.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.StrategyCollection.html" class="class">class StrategyCollection</a></h3>
<p> An <a href="Poco.StrategyCollection.html" title="class Poco::StrategyCollection">StrategyCollection</a> is a decorator masking n collections as a single one <a href="Poco.StrategyCollection.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.StreamChannel.html" class="class">class StreamChannel</a></h3>
<p> A channel that writes to an ostream. <a href="Poco.StreamChannel.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.StreamConverterBuf.html" class="class">class StreamConverterBuf</a></h3>
<p> A StreamConverter converts streams from one encoding (inEncoding)
into another (outEncoding). <a href="Poco.StreamConverterBuf.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.StreamConverterIOS.html" class="class">class StreamConverterIOS</a></h3>
<p> The base class for <a href="Poco.InputStreamConverter.html" title="class Poco::InputStreamConverter">InputStreamConverter</a> and <a href="Poco.OutputStreamConverter.html" title="class Poco::OutputStreamConverter">OutputStreamConverter</a>. <a href="Poco.StreamConverterIOS.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.StreamCopier.html" class="class">class StreamCopier</a></h3>
<p> This class provides static methods to copy the contents from one stream
into another. <a href="Poco.StreamCopier.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.StreamTokenizer.html" class="class">class StreamTokenizer</a></h3>
<p> A stream tokenizer splits an input stream
into a sequence of tokens of different kinds. <a href="Poco.StreamTokenizer.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.StringTokenizer.html" class="class">class StringTokenizer</a></h3>
<p> A simple tokenizer that splits a string into
tokens, which are separated by separator characters. <a href="Poco.StringTokenizer.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.SynchronizedObject.html" class="class">class SynchronizedObject</a></h3>
<p> This class aggregates a <a href="Poco.Mutex.html" title="class Poco::Mutex">Mutex</a> and an <a href="Poco.Event.html" title="class Poco::Event">Event</a>
and can act as a base class for all objects
requiring synchronization in a multithreaded
scenario. <a href="Poco.SynchronizedObject.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.SyntaxException.html" class="class">class SyntaxException</a></h3>
<p> <a href="Poco.SyntaxException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.SyslogChannel.html" class="class">class SyslogChannel</a></h3>
<p> This Unix-only channel works with the Unix syslog service. <a href="Poco.SyslogChannel.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.SystemException.html" class="class">class SystemException</a></h3>
<p> <a href="Poco.SystemException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.TLSAbstractSlot.html" class="class">class TLSAbstractSlot</a></h3>
<p> This is the base class for all objects
that the <a href="Poco.ThreadLocalStorage.html" title="class Poco::ThreadLocalStorage">ThreadLocalStorage</a> class manages. <a href="Poco.TLSAbstractSlot.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.TLSSlot.html" class="class">class TLSSlot</a></h3>
<p> The Slot template wraps another class
so that it can be stored in a <a href="Poco.ThreadLocalStorage.html" title="class Poco::ThreadLocalStorage">ThreadLocalStorage</a>
object. <a href="Poco.TLSSlot.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Task.html" class="class">class Task</a></h3>
<p> A <a href="Poco.Task.html" title="class Poco::Task">Task</a> is a subclass of <a href="Poco.Runnable.html" title="class Poco::Runnable">Runnable</a> that has a name
and supports progress reporting and cancellation. <a href="Poco.Task.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.TaskCancelledNotification.html" class="class">class TaskCancelledNotification</a></h3>
<p> This notification is posted by the <a href="Poco.TaskManager.html" title="class Poco::TaskManager">TaskManager</a> for
every task that has been cancelled. <a href="Poco.TaskCancelledNotification.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.TaskCustomNotification.html" class="class">class TaskCustomNotification</a></h3>
<p> This is a template for "custom" notification. <a href="Poco.TaskCustomNotification.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.TaskFailedNotification.html" class="class">class TaskFailedNotification</a></h3>
<p> This notification is posted by the <a href="Poco.TaskManager.html" title="class Poco::TaskManager">TaskManager</a> for
every task that has failed with an exception. <a href="Poco.TaskFailedNotification.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.TaskFinishedNotification.html" class="class">class TaskFinishedNotification</a></h3>
<p> This notification is posted by the <a href="Poco.TaskManager.html" title="class Poco::TaskManager">TaskManager</a> for
every task that has finished. <a href="Poco.TaskFinishedNotification.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.TaskManager.html" class="class">class TaskManager</a></h3>
<p> The <a href="Poco.TaskManager.html" title="class Poco::TaskManager">TaskManager</a> manages a collection of tasks
and monitors their lifetime. <a href="Poco.TaskManager.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.TaskNotification.html" class="class">class TaskNotification</a></h3>
<p> Base class for <a href="Poco.TaskManager.html" title="class Poco::TaskManager">TaskManager</a> notifications. <a href="Poco.TaskNotification.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.TaskProgressNotification.html" class="class">class TaskProgressNotification</a></h3>
<p> This notification is posted by the <a href="Poco.TaskManager.html" title="class Poco::TaskManager">TaskManager</a> for
every task that has failed with an exception. <a href="Poco.TaskProgressNotification.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.TaskStartedNotification.html" class="class">class TaskStartedNotification</a></h3>
<p> This notification is posted by the <a href="Poco.TaskManager.html" title="class Poco::TaskManager">TaskManager</a> for
every task that has been started. <a href="Poco.TaskStartedNotification.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.TeeIOS.html" class="class">class TeeIOS</a></h3>
<p> The base class for <a href="Poco.TeeInputStream.html" title="class Poco::TeeInputStream">TeeInputStream</a> and <a href="Poco.TeeOutputStream.html" title="class Poco::TeeOutputStream">TeeOutputStream</a>. <a href="Poco.TeeIOS.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.TeeInputStream.html" class="class">class TeeInputStream</a></h3>
<p> This stream copies all characters read through it
to one or multiple output streams. <a href="Poco.TeeInputStream.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.TeeOutputStream.html" class="class">class TeeOutputStream</a></h3>
<p> This stream copies all characters written to it
to one or multiple output streams. <a href="Poco.TeeOutputStream.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.TeeStreamBuf.html" class="class">class TeeStreamBuf</a></h3>
<p> This stream buffer copies all data written to or
read from it to one or multiple output streams. <a href="Poco.TeeStreamBuf.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.TemporaryFile.html" class="class">class TemporaryFile</a></h3>
<p> The <a href="Poco.TemporaryFile.html" title="class Poco::TemporaryFile">TemporaryFile</a> class helps with the handling
of temporary files. <a href="Poco.TemporaryFile.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.TextConverter.html" class="class">class TextConverter</a></h3>
<p> A <a href="Poco.TextConverter.html" title="class Poco::TextConverter">TextConverter</a> converts strings from one encoding
into another. <a href="Poco.TextConverter.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.TextEncoding.html" class="class">class TextEncoding</a></h3>
<p> An abstract base class for implementing text encodings
like UTF-8 or ISO 8859-1. <a href="Poco.TextEncoding.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.TextIterator.html" class="class">class TextIterator</a></h3>
<p> An unidirectional iterator for iterating over characters in a string. <a href="Poco.TextIterator.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Thread.html" class="class">class Thread</a></h3>
<p> This class implements a platform-independent
wrapper to an operating system thread. <a href="Poco.Thread.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ThreadLocal.html" class="class">class ThreadLocal</a></h3>
<p> This template is used to declare type safe thread
local variables. <a href="Poco.ThreadLocal.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ThreadLocalStorage.html" class="class">class ThreadLocalStorage</a></h3>
<p> This class manages the local storage for each thread. <a href="Poco.ThreadLocalStorage.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ThreadPool.html" class="class">class ThreadPool</a></h3>
<p> A thread pool always keeps a number of threads running, ready
to accept work. <a href="Poco.ThreadPool.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ThreadTarget.html" class="class">class ThreadTarget</a></h3>
<p> This adapter simplifies using static member functions as well as
standalone functions as targets for threads. <a href="Poco.ThreadTarget.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.TimedNotificationQueue.html" class="class">class TimedNotificationQueue</a></h3>
<p> A <a href="Poco.TimedNotificationQueue.html" title="class Poco::TimedNotificationQueue">TimedNotificationQueue</a> object provides a way to implement timed, asynchronous
notifications. <a href="Poco.TimedNotificationQueue.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.TimeoutException.html" class="class">class TimeoutException</a></h3>
<p> <a href="Poco.TimeoutException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Timer.html" class="class">class Timer</a></h3>
<p> This class implements a thread-based timer. <a href="Poco.Timer.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.TimerCallback.html" class="class">class TimerCallback</a></h3>
<p> This template class implements an adapter that sits between
a <a href="Poco.Timer.html" title="class Poco::Timer">Timer</a> and an object's method invoked by the timer. <a href="Poco.TimerCallback.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Timespan.html" class="class">class Timespan</a></h3>
<p> A class that represents time spans up to microsecond resolution. <a href="Poco.Timespan.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Timestamp.html" class="class">class Timestamp</a></h3>
<p> A <a href="Poco.Timestamp.html" title="class Poco::Timestamp">Timestamp</a> stores a monotonic* time value
with (theoretical) microseconds resolution. <a href="Poco.Timestamp.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Timezone.html" class="class">class Timezone</a></h3>
<p> This class provides information about the current timezone. <a href="Poco.Timezone.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Token.html" class="class">class Token</a></h3>
<p> The base class for all token classes that can be
registered with the <a href="Poco.StreamTokenizer.html" title="class Poco::StreamTokenizer">StreamTokenizer</a>. <a href="Poco.Token.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Tuple.html" class="class">struct Tuple</a></h3>
<p> <a href="Poco.Tuple.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.TypeList.html" class="class">struct TypeList</a></h3>
<p> Compile Time List of Types <a href="Poco.TypeList.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.TypeListType.html" class="class">struct TypeListType</a></h3>
<p> <a href="Poco.TypeListType.html" title="struct Poco::TypeListType">TypeListType</a> takes 1 - 20 typename arguments. <a href="Poco.TypeListType.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.TypeWrapper.html" class="class">struct TypeWrapper</a></h3>
<p> Use the type wrapper if you want to dedecouple constness and references from template types <a href="Poco.TypeWrapper.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.URI.html" class="class">class URI</a></h3>
<p> A Uniform Resource Identifier, as specified in <a href="http://www.ietf.org/rfc/rfc3986.txt" target="_blank">RFC 3986</a>. <a href="Poco.URI.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.URIRedirection.html" class="class">class URIRedirection</a></h3>
<p> An instance of <a href="Poco.URIRedirection.html" title="class Poco::URIRedirection">URIRedirection</a> is thrown by a <a href="Poco.URIStreamFactory.html#11505" title="Poco::URIStreamFactory::open()">URIStreamFactory::open</a>()
if opening the original <a href="Poco.URI.html" title="class Poco::URI">URI</a> resulted in a redirection response
(such as a MOVED PERMANENTLY in HTTP). <a href="Poco.URIRedirection.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.URIStreamFactory.html" class="class">class URIStreamFactory</a></h3>
<p> This class defines the interface that all
<a href="Poco.URI.html" title="class Poco::URI">URI</a> stream factories must implement. <a href="Poco.URIStreamFactory.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.URIStreamOpener.html" class="class">class URIStreamOpener</a></h3>
<p> The <a href="Poco.URIStreamOpener.html" title="class Poco::URIStreamOpener">URIStreamOpener</a> class is used to create and open input streams
for resourced identified by Uniform Resource Identifiers. <a href="Poco.URIStreamOpener.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.UTF16Encoding.html" class="class">class UTF16Encoding</a></h3>
<p> UTF-16 text encoding, as defined in <a href="http://www.ietf.org/rfc/rfc2781.txt" target="_blank">RFC 2781</a>. <a href="Poco.UTF16Encoding.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.UTF8.html" class="class">struct UTF8</a></h3>
<p> This class provides static methods that are UTF-8 capable variants
of the same functions in <a href="Poco.html" title="namespace Poco">Poco</a>/String. <a href="Poco.UTF8.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.UTF8Encoding.html" class="class">class UTF8Encoding</a></h3>
<p> UTF-8 text encoding, as defined in <a href="http://www.ietf.org/rfc/rfc2279.txt" target="_blank">RFC 2279</a>. <a href="Poco.UTF8Encoding.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.UUID.html" class="class">class UUID</a></h3>
<p> A <a href="Poco.UUID.html" title="class Poco::UUID">UUID</a> is an identifier that is unique across both space and time,
with respect to the space of all UUIDs. <a href="Poco.UUID.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.UUIDGenerator.html" class="class">class UUIDGenerator</a></h3>
<p> This class implements a generator for Universal Unique Identifiers,
as specified in Appendix A of the DCE 1. <a href="Poco.UUIDGenerator.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.UnhandledException.html" class="class">class UnhandledException</a></h3>
<p> <a href="Poco.UnhandledException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Unicode.html" class="class">class Unicode</a></h3>
<p> This class contains enumerations and static
utility functions for dealing with <a href="Poco.Unicode.html" title="class Poco::Unicode">Unicode</a> characters
and their properties. <a href="Poco.Unicode.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.UnicodeConverter.html" class="class">class UnicodeConverter</a></h3>
<p> A convenience class that converts strings from
UTF-8 encoded std::strings to UTF-16 encoded std::wstrings
and vice-versa. <a href="Poco.UnicodeConverter.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.UniqueAccessExpireCache.html" class="class">class UniqueAccessExpireCache</a></h3>
<p> An <a href="Poco.UniqueAccessExpireCache.html" title="class Poco::UniqueAccessExpireCache">UniqueAccessExpireCache</a> caches entries for a given time span. <a href="Poco.UniqueAccessExpireCache.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.UniqueAccessExpireLRUCache.html" class="class">class UniqueAccessExpireLRUCache</a></h3>
<p> A <a href="Poco.UniqueAccessExpireLRUCache.html" title="class Poco::UniqueAccessExpireLRUCache">UniqueAccessExpireLRUCache</a> combines LRU caching and time based per entry expire caching. <a href="Poco.UniqueAccessExpireLRUCache.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.UniqueAccessExpireStrategy.html" class="class">class UniqueAccessExpireStrategy</a></h3>
<p> An <a href="Poco.UniqueExpireStrategy.html" title="class Poco::UniqueExpireStrategy">UniqueExpireStrategy</a> implements time based expiration of cache entries. <a href="Poco.UniqueAccessExpireStrategy.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.UniqueExpireCache.html" class="class">class UniqueExpireCache</a></h3>
<p> An <a href="Poco.UniqueExpireCache.html" title="class Poco::UniqueExpireCache">UniqueExpireCache</a> caches entries for a given time amount. <a href="Poco.UniqueExpireCache.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.UniqueExpireLRUCache.html" class="class">class UniqueExpireLRUCache</a></h3>
<p> A <a href="Poco.UniqueExpireLRUCache.html" title="class Poco::UniqueExpireLRUCache">UniqueExpireLRUCache</a> combines LRU caching and time based per entry expire caching. <a href="Poco.UniqueExpireLRUCache.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.UniqueExpireStrategy.html" class="class">class UniqueExpireStrategy</a></h3>
<p> An <a href="Poco.UniqueExpireStrategy.html" title="class Poco::UniqueExpireStrategy">UniqueExpireStrategy</a> implements time based expiration of cache entries. <a href="Poco.UniqueExpireStrategy.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.UnknownURISchemeException.html" class="class">class UnknownURISchemeException</a></h3>
<p> <a href="Poco.UnknownURISchemeException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.ValidArgs.html" class="class">class ValidArgs</a></h3>
<p> <a href="Poco.ValidArgs.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Void.html" class="class">class Void</a></h3>
<p> A dummy class with value-type semantics,
mostly useful as a template argument. <a href="Poco.Void.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.WhitespaceToken.html" class="class">class WhitespaceToken</a></h3>
<p> This pseudo token class is used to eat
up whitespace in between real tokens. <a href="Poco.WhitespaceToken.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.Windows1252Encoding.html" class="class">class Windows1252Encoding</a></h3>
<p> Windows Codepage 1252 text encoding. <a href="Poco.Windows1252Encoding.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.WindowsConsoleChannel.html" class="class">class WindowsConsoleChannel</a></h3>
<p> A channel that writes to the Windows console. <a href="Poco.WindowsConsoleChannel.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.WriteFileException.html" class="class">class WriteFileException</a></h3>
<p> <a href="Poco.WriteFileException.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h3><a href="Poco.p_less.html" class="class">struct p_less</a></h3>
<p> <a href="Poco.p_less.html"><img src="images/arrow.gif" alt="more..." style="vertical-align:baseline;" border="0" /> </a></p>
<h2>Types</h2>
<h3><a name="3992">BufferedBidirectionalStreamBuf</a></h3>
<p class="decl">typedef <a href="Poco.BasicBufferedBidirectionalStreamBuf.html" title="class Poco::BasicBufferedBidirectionalStreamBuf">BasicBufferedBidirectionalStreamBuf</a> < char, std::char_traits < char > > <a href="Poco.html#3992" title="Poco::BufferedBidirectionalStreamBuf">BufferedBidirectionalStreamBuf</a>;</p>
<div class="description">
<p></p>
</div>
<h3><a name="4028">BufferedStreamBuf</a></h3>
<p class="decl">typedef <a href="Poco.BasicBufferedStreamBuf.html" title="class Poco::BasicBufferedStreamBuf">BasicBufferedStreamBuf</a> < char, std::char_traits < char > > <a href="Poco.html#4028" title="Poco::BufferedStreamBuf">BufferedStreamBuf</a>;</p>
<div class="description">
<p></p>
</div>
<h3><a name="6903">FPE</a></h3>
<p class="decl">typedef <a href="Poco.FPEnvironment.html" title="class Poco::FPEnvironment">FPEnvironment</a> <a href="Poco.html#6903" title="Poco::FPE">FPE</a>;</p>
<div class="description">
<p></p>
</div>
<h3><a name="11351">Int16</a></h3>
<p class="decl">typedef signed short <a href="Poco.html#11351" title="Poco::Int16">Int16</a>;</p>
<div class="description">
<p></p>
</div>
<h3><a name="11353">Int32</a></h3>
<p class="decl">typedef signed int <a href="Poco.html#11353" title="Poco::Int32">Int32</a>;</p>
<div class="description">
<p></p>
</div>
<h3><a name="11357">Int64</a></h3>
<p class="decl">typedef signed long long <a href="Poco.html#11357" title="Poco::Int64">Int64</a>;</p>
<div class="description">
<p></p>
</div>
<h3><a name="11349">Int8</a></h3>
<p class="decl">typedef signed char <a href="Poco.html#11349" title="Poco::Int8">Int8</a>;</p>
<div class="description">
<p></p>
</div>
<h3><a name="11355">IntPtr</a></h3>
<p class="decl">typedef signed long <a href="Poco.html#11355" title="Poco::IntPtr">IntPtr</a>;</p>
<div class="description">
<p></p>
</div>
<h3><a name="8404">MemoryStreamBuf</a></h3>
<p class="decl">typedef <a href="Poco.BasicMemoryStreamBuf.html" title="class Poco::BasicMemoryStreamBuf">BasicMemoryStreamBuf</a> < char, std::char_traits < char > > <a href="Poco.html#8404" title="Poco::MemoryStreamBuf">MemoryStreamBuf</a>;</p>
<div class="description">
<p></p>
</div>
<h3><a name="8776">NDC</a></h3>
<p class="decl">typedef <a href="Poco.NestedDiagnosticContext.html" title="class Poco::NestedDiagnosticContext">NestedDiagnosticContext</a> <a href="Poco.html#8776" title="Poco::NDC">NDC</a>;</p>
<div class="description">
<p></p>
</div>
<h3><a name="11352">UInt16</a></h3>
<p class="decl">typedef unsigned short <a href="Poco.html#11352" title="Poco::UInt16">UInt16</a>;</p>
<div class="description">
<p></p>
</div>
<h3><a name="11354">UInt32</a></h3>
<p class="decl">typedef unsigned int <a href="Poco.html#11354" title="Poco::UInt32">UInt32</a>;</p>
<div class="description">
<p></p>
</div>
<h3><a name="11358">UInt64</a></h3>
<p class="decl">typedef unsigned long long <a href="Poco.html#11358" title="Poco::UInt64">UInt64</a>;</p>
<div class="description">
<p></p>
</div>
<h3><a name="11350">UInt8</a></h3>
<p class="decl">typedef unsigned char <a href="Poco.html#11350" title="Poco::UInt8">UInt8</a>;</p>
<div class="description">
<p></p>
</div>
<h3><a name="11356">UIntPtr</a></h3>
<p class="decl">typedef unsigned long <a href="Poco.html#11356" title="Poco::UIntPtr">UIntPtr</a>;</p>
<div class="description">
<p></p>
</div>
<h3><a name="11805">UnbufferedStreamBuf</a></h3>
<p class="decl">typedef <a href="Poco.BasicUnbufferedStreamBuf.html" title="class Poco::BasicUnbufferedStreamBuf">BasicUnbufferedStreamBuf</a> < char, std::char_traits < char > > <a href="Poco.html#11805" title="Poco::UnbufferedStreamBuf">UnbufferedStreamBuf</a>;</p>
<div class="description">
<p></p>
</div>
<h2>Functions</h2>
<h3><a name="3547">AnyCast</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < typename ValueType > ValueType * <a href="Poco.html#3547" title="Poco::AnyCast()">AnyCast</a>(<br /> <a href="Poco.Any.html" title="class Poco::Any">Any</a> * operand<br />);</p>
<div class="description">
<p><a href="Poco.html#3547" title="Poco::AnyCast()">AnyCast</a> operator used to extract the ValueType from an <a href="Poco.Any.html" title="class Poco::Any">Any</a>*. Will return a pointer to the stored value. </p>
<p>Example Usage: </p>
<pre>MyType* pTmp = AnyCast<MyType*>(pAny).
</pre>
<p>Will return NULL if the cast fails, i.e. types don't match. </p>
</div>
<h3><a name="3549">AnyCast</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < typename ValueType > const ValueType * <a href="Poco.html#3547" title="Poco::AnyCast()">AnyCast</a>(<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> * operand<br />);</p>
<div class="description">
<p><a href="Poco.html#3547" title="Poco::AnyCast()">AnyCast</a> operator used to extract a const ValueType pointer from an const <a href="Poco.Any.html" title="class Poco::Any">Any</a>*. Will return a const pointer to the stored value. </p>
<p>Example Usage: </p>
<pre>const MyType* pTmp = AnyCast<MyType*>(pAny).
</pre>
<p>Will return NULL if the cast fails, i.e. types don't match. </p>
</div>
<h3><a name="3551">AnyCast</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < typename ValueType > ValueType <a href="Poco.html#3547" title="Poco::AnyCast()">AnyCast</a>(<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & operand<br />);</p>
<div class="description">
<p><a href="Poco.html#3547" title="Poco::AnyCast()">AnyCast</a> operator used to extract a copy of the ValueType from an const <a href="Poco.Any.html" title="class Poco::Any">Any</a>&. </p>
<p>Example Usage: </p>
<pre>MyType tmp = AnyCast<MyType>(anAny).
</pre>
<p>Will throw a <a href="Poco.BadCastException.html" title="class Poco::BadCastException">BadCastException</a> if the cast fails. Dont use an <a href="Poco.html#3547" title="Poco::AnyCast()">AnyCast</a> in combination with references, i.e. MyType& tmp = ... or const MyType& = ... Some compilers will accept this code although a copy is returned. Use the <a href="Poco.html#3555" title="Poco::RefAnyCast()">RefAnyCast</a> in these cases. </p>
</div>
<h3><a name="3553">AnyCast</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < typename ValueType > ValueType <a href="Poco.html#3547" title="Poco::AnyCast()">AnyCast</a>(<br /> <a href="Poco.Any.html" title="class Poco::Any">Any</a> & operand<br />);</p>
<div class="description">
<p><a href="Poco.html#3547" title="Poco::AnyCast()">AnyCast</a> operator used to extract a copy of the ValueType from an <a href="Poco.Any.html" title="class Poco::Any">Any</a>&. </p>
<p>Example Usage: </p>
<pre>MyType tmp = AnyCast<MyType>(anAny).
</pre>
<p>Will throw a <a href="Poco.BadCastException.html" title="class Poco::BadCastException">BadCastException</a> if the cast fails. Dont use an <a href="Poco.html#3547" title="Poco::AnyCast()">AnyCast</a> in combination with references, i.e. MyType& tmp = ... or const MyType& tmp = ... Some compilers will accept this code although a copy is returned. Use the <a href="Poco.html#3555" title="Poco::RefAnyCast()">RefAnyCast</a> in these cases. </p>
</div>
<h3><a name="3555">RefAnyCast</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < typename ValueType > const ValueType & <a href="Poco.html#3555" title="Poco::RefAnyCast()">RefAnyCast</a>(<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & operand<br />);</p>
<div class="description">
<p><a href="Poco.html#3547" title="Poco::AnyCast()">AnyCast</a> operator used to return a const reference to the internal data. </p>
<p>Example Usage: </p>
<pre>const MyType& tmp = RefAnyCast<MyType>(anAny);
</pre>
</div>
<h3><a name="3557">RefAnyCast</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < typename ValueType > ValueType & <a href="Poco.html#3555" title="Poco::RefAnyCast()">RefAnyCast</a>(<br /> <a href="Poco.Any.html" title="class Poco::Any">Any</a> & operand<br />);</p>
<div class="description">
<p><a href="Poco.html#3547" title="Poco::AnyCast()">AnyCast</a> operator used to return a reference to the internal data. </p>
<p>Example Usage: </p>
<pre>MyType& tmp = RefAnyCast<MyType>(anAny);
</pre>
</div>
<h3><a name="3559">UnsafeAnyCast</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < typename ValueType > ValueType * <a href="Poco.html#3559" title="Poco::UnsafeAnyCast()">UnsafeAnyCast</a>(<br /> <a href="Poco.Any.html" title="class Poco::Any">Any</a> * operand<br />);</p>
<div class="description">
<p>The "unsafe" versions of <a href="Poco.html#3547" title="Poco::AnyCast()">AnyCast</a> are not part of the public interface and may be removed at any time. They are required where we know what type is stored in the any and can't use typeid() comparison, e.g., when our types may travel across different shared libraries. </p>
</div>
<h3><a name="3561">UnsafeAnyCast</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < typename ValueType > const ValueType * <a href="Poco.html#3559" title="Poco::UnsafeAnyCast()">UnsafeAnyCast</a>(<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> * operand<br />);</p>
<div class="description">
<p>The "unsafe" versions of <a href="Poco.html#3547" title="Poco::AnyCast()">AnyCast</a> are not part of the public interface and may be removed at any time. They are required where we know what type is stored in the any and can't use typeid() comparison, e.g., when our types may travel across different shared libraries. </p>
</div>
<h3><a name="10434">cat</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > S cat(<br /> const S & s1,<br /> const S & s2<br />);</p>
<div class="description">
<p>Concatenates two strings. </p>
</div>
<h3><a name="10437">cat</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > S cat(<br /> const S & s1,<br /> const S & s2,<br /> const S & s3<br />);</p>
<div class="description">
<p>Concatenates three strings. </p>
</div>
<h3><a name="10441">cat</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > S cat(<br /> const S & s1,<br /> const S & s2,<br /> const S & s3,<br /> const S & s4<br />);</p>
<div class="description">
<p>Concatenates four strings. </p>
</div>
<h3><a name="10446">cat</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > S cat(<br /> const S & s1,<br /> const S & s2,<br /> const S & s3,<br /> const S & s4,<br /> const S & s5<br />);</p>
<div class="description">
<p>Concatenates five strings. </p>
</div>
<h3><a name="10452">cat</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > S cat(<br /> const S & s1,<br /> const S & s2,<br /> const S & s3,<br /> const S & s4,<br /> const S & s5,<br /> const S & s6<br />);</p>
<div class="description">
<p>Concatenates six strings. </p>
</div>
<h3><a name="10459">cat</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S, class It > S cat(<br /> const S & delim,<br /> const It & begin,<br /> const It & end<br />);</p>
<div class="description">
<p>Concatenates a sequence of strings, delimited by the string given in delim. </p>
</div>
<h3><a name="4689">delegate</a> <img src="images/static.gif" alt="static" title="static" style="vertical-align:baseline;" border="0" /> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class TObj, class TArgs > static <a href="Poco.Delegate.html" title="class Poco::Delegate">Delegate</a> < TObj, TArgs, true > delegate(<br /> TObj * pObj,<br /> void (TObj::* NotifyMethod)(const void *, TArgs &) param73<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="4692">delegate</a> <img src="images/static.gif" alt="static" title="static" style="vertical-align:baseline;" border="0" /> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class TObj, class TArgs > static <a href="Poco.Delegate.html" title="class Poco::Delegate">Delegate</a> < TObj, TArgs, false > delegate(<br /> TObj * pObj,<br /> void (TObj::* NotifyMethod)(TArgs &) param74<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="4695">delegate</a> <img src="images/static.gif" alt="static" title="static" style="vertical-align:baseline;" border="0" /> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class TObj, class TArgs > static <a href="Poco.Expire.html" title="class Poco::Expire">Expire</a> < TArgs > delegate(<br /> TObj * pObj,<br /> void (TObj::* NotifyMethod)(const void *, TArgs &) param75,<br /> <a href="Poco.Timestamp.html#11151" title="Poco::Timestamp::TimeDiff">Timestamp::TimeDiff</a> expireMillisecs<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="4699">delegate</a> <img src="images/static.gif" alt="static" title="static" style="vertical-align:baseline;" border="0" /> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class TObj, class TArgs > static <a href="Poco.Expire.html" title="class Poco::Expire">Expire</a> < TArgs > delegate(<br /> TObj * pObj,<br /> void (TObj::* NotifyMethod)(TArgs &) param76,<br /> <a href="Poco.Timestamp.html#11151" title="Poco::Timestamp::TimeDiff">Timestamp::TimeDiff</a> expireMillisecs<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="4703">delegate</a> <img src="images/static.gif" alt="static" title="static" style="vertical-align:baseline;" border="0" /> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class TArgs > static <a href="Poco.Expire.html" title="class Poco::Expire">Expire</a> < TArgs > delegate(<br /> void (* NotifyMethod)(const void *, TArgs &) param77,<br /> <a href="Poco.Timestamp.html#11151" title="Poco::Timestamp::TimeDiff">Timestamp::TimeDiff</a> expireMillisecs<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="4706">delegate</a> <img src="images/static.gif" alt="static" title="static" style="vertical-align:baseline;" border="0" /> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class TArgs > static <a href="Poco.Expire.html" title="class Poco::Expire">Expire</a> < TArgs > delegate(<br /> void (* NotifyMethod)(void *, TArgs &) param78,<br /> <a href="Poco.Timestamp.html#11151" title="Poco::Timestamp::TimeDiff">Timestamp::TimeDiff</a> expireMillisecs<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="4709">delegate</a> <img src="images/static.gif" alt="static" title="static" style="vertical-align:baseline;" border="0" /> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class TArgs > static <a href="Poco.Expire.html" title="class Poco::Expire">Expire</a> < TArgs > delegate(<br /> void (* NotifyMethod)(TArgs &) param79,<br /> <a href="Poco.Timestamp.html#11151" title="Poco::Timestamp::TimeDiff">Timestamp::TimeDiff</a> expireMillisecs<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="4712">delegate</a> <img src="images/static.gif" alt="static" title="static" style="vertical-align:baseline;" border="0" /> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class TArgs > static <a href="Poco.FunctionDelegate.html" title="class Poco::FunctionDelegate">FunctionDelegate</a> < TArgs, true, true > delegate(<br /> void (* NotifyMethod)(const void *, TArgs &) param80<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="4714">delegate</a> <img src="images/static.gif" alt="static" title="static" style="vertical-align:baseline;" border="0" /> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class TArgs > static <a href="Poco.FunctionDelegate.html" title="class Poco::FunctionDelegate">FunctionDelegate</a> < TArgs, true, false > delegate(<br /> void (* NotifyMethod)(void *, TArgs &) param81<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="4716">delegate</a> <img src="images/static.gif" alt="static" title="static" style="vertical-align:baseline;" border="0" /> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class TArgs > static <a href="Poco.FunctionDelegate.html" title="class Poco::FunctionDelegate">FunctionDelegate</a> < TArgs, false > delegate(<br /> void (* NotifyMethod)(TArgs &) param82<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="7066">format</a></h3>
<p class="decl">std::string format(<br /> const std::string & fmt,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value<br />);</p>
<div class="description">
<p>This function implements sprintf-style formatting in a typesafe way. Various variants of the function are available, supporting a different number of arguments (up to six). </p>
<p>The formatting is controlled by the format string in fmt. Format strings are quite similar to those of the std::printf() function, but there are some minor differences. </p>
<p>The format string can consist of any sequence of characters; certain characters have a special meaning. Characters without a special meaning are copied verbatim to the result. A percent sign (%) marks the beginning of a format specification. Format specifications have the following syntax: </p>
<p></p>
<pre>%[<flags>][<width>][.<precision>][<modifier>]<type>
</pre>
<p>Flags, width, precision and prefix are optional. The only required part of the format specification, apart from the percent sign, is the type. </p>
<p>Following are valid type specifications and their meaning: </p>
<p></p>
<ul>
<li>b boolean (true = 1, false = 0) </li>
<li>c character </li>
<li>d signed decimal integer </li>
<li>i signed decimal integer </li>
<li>o unsigned octal integer </li>
<li>u unsigned decimal integer </li>
<li>x unsigned hexadecimal integer (lower case) </li>
<li>X unsigned hexadecimal integer (upper case) </li>
<li>e signed floating-point value in the form [-]d.dddde[<sign>]dd[d] </li>
<li>E signed floating-point value in the form [-]d.ddddE[<sign>]dd[d] </li>
<li>f signed floating-point value in the form [-]dddd.dddd </li>
<li>s std::string </li>
<li>z std::size_t </li>
</ul>
<p>The following flags are supported: </p>
<p></p>
<ul>
<li>- left align the result within the given field width </li>
<li>+ prefix the output value with a sign (+ or ) if the output value is of a signed type </li>
<li>0 if width is prefixed with 0, zeros are added until the minimum width is reached </li>
<li># For o, x, X, the # flag prefixes any nonzero output value with 0, 0x, or 0X, respectively; for e, E, f, the # flag forces the output value to contain a decimal point in all cases. </li>
</ul>
<p>The following modifiers are supported: </p>
<p></p>
<ul>
<li>(none) argument is char (c), int (d, i), unsigned (o, u, x, X) double (e, E, f, g, G) or string (s) </li>
<li>l argument is long (d, i), unsigned long (o, u, x, X) or long double (e, E, f, g, G) </li>
<li>L argument is long long (d, i), unsigned long long (o, u, x, X) </li>
<li>h argument is short (d, i), unsigned short (o, u, x, X) or float (e, E, f, g, G) </li>
<li>? argument is any signed or unsigned int, short, long, or 64-bit integer (d, i, o, x, X) </li>
</ul>
<p>The width argument is a nonnegative decimal integer controlling the minimum number of characters printed. If the number of characters in the output value is less than the specified width, blanks or leading zeros are added, according to the specified flags (-, +, 0). </p>
<p>Precision is a nonnegative decimal integer, preceded by a period (.), which specifies the number of characters to be printed, the number of decimal places, or the number of significant digits. </p>
<p>Throws a <a href="Poco.BadCastException.html" title="class Poco::BadCastException">BadCastException</a> if an argument does not correspond to the type of its format specification. </p>
<p>If there are more format specifiers than values, the format specifiers without a corresponding value are copied verbatim to output. </p>
<p>If there are more values than format specifiers, the superfluous values are ignored. </p>
<p>Usage Example: </p>
<pre>std::string s = format("The answer to life, the universe, and everything is %d", 42);
</pre>
</div>
<h3><a name="7069">format</a></h3>
<p class="decl">std::string format(<br /> const std::string & fmt,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value1,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value2<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="7073">format</a></h3>
<p class="decl">std::string format(<br /> const std::string & fmt,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value1,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value2,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value3<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="7078">format</a></h3>
<p class="decl">std::string format(<br /> const std::string & fmt,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value1,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value2,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value3,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value4<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="7084">format</a></h3>
<p class="decl">std::string format(<br /> const std::string & fmt,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value1,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value2,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value3,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value4,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value5<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="7091">format</a></h3>
<p class="decl">std::string format(<br /> const std::string & fmt,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value1,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value2,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value3,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value4,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value5,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value6<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="7099">format</a></h3>
<p class="decl">void format(<br /> std::string & result,<br /> const std::string & fmt,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value<br />);</p>
<div class="description">
<p>Appends the formatted string to result. </p>
</div>
<h3><a name="7103">format</a></h3>
<p class="decl">void format(<br /> std::string & result,<br /> const std::string & fmt,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value1,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value2<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="7108">format</a></h3>
<p class="decl">void format(<br /> std::string & result,<br /> const std::string & fmt,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value1,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value2,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value3<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="7114">format</a></h3>
<p class="decl">void format(<br /> std::string & result,<br /> const std::string & fmt,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value1,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value2,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value3,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value4<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="7121">format</a></h3>
<p class="decl">void format(<br /> std::string & result,<br /> const std::string & fmt,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value1,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value2,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value3,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value4,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value5<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="7129">format</a></h3>
<p class="decl">void format(<br /> std::string & result,<br /> const std::string & fmt,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value1,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value2,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value3,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value4,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value5,<br /> const <a href="Poco.Any.html" title="class Poco::Any">Any</a> & value6<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="7138">format</a></h3>
<p class="decl">void format(<br /> std::string & result,<br /> const std::string & fmt,<br /> const std::vector < <a href="Poco.Any.html" title="class Poco::Any">Any</a> > & values<br />);</p>
<div class="description">
<p>Supports a variable number of arguments and is used by all other variants of <a href="Poco.html#7066" title="Poco::format()">format</a>(). </p>
</div>
<h3><a name="7290">hash</a></h3>
<p class="decl">std::size_t hash(<br /> <a href="Poco.html#11349" title="Poco::Int8">Int8</a> n<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="7292">hash</a></h3>
<p class="decl">std::size_t hash(<br /> <a href="Poco.html#11350" title="Poco::UInt8">UInt8</a> n<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="7294">hash</a></h3>
<p class="decl">std::size_t hash(<br /> <a href="Poco.html#11351" title="Poco::Int16">Int16</a> n<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="7296">hash</a></h3>
<p class="decl">std::size_t hash(<br /> <a href="Poco.html#11352" title="Poco::UInt16">UInt16</a> n<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="7298">hash</a></h3>
<p class="decl">std::size_t hash(<br /> <a href="Poco.html#11353" title="Poco::Int32">Int32</a> n<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="7300">hash</a></h3>
<p class="decl">std::size_t hash(<br /> <a href="Poco.html#11354" title="Poco::UInt32">UInt32</a> n<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="7302">hash</a></h3>
<p class="decl">std::size_t hash(<br /> <a href="Poco.html#11357" title="Poco::Int64">Int64</a> n<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="7304">hash</a></h3>
<p class="decl">std::size_t hash(<br /> <a href="Poco.html#11358" title="Poco::UInt64">UInt64</a> n<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="7306">hash</a></h3>
<p class="decl">std::size_t hash(<br /> const std::string & str<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="7311">hash</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline std::size_t hash(<br /> <a href="Poco.html#11349" title="Poco::Int8">Int8</a> n<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="7313">hash</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline std::size_t hash(<br /> <a href="Poco.html#11350" title="Poco::UInt8">UInt8</a> n<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="7315">hash</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline std::size_t hash(<br /> <a href="Poco.html#11351" title="Poco::Int16">Int16</a> n<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="7317">hash</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline std::size_t hash(<br /> <a href="Poco.html#11352" title="Poco::UInt16">UInt16</a> n<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="7319">hash</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline std::size_t hash(<br /> <a href="Poco.html#11353" title="Poco::Int32">Int32</a> n<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="7321">hash</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline std::size_t hash(<br /> <a href="Poco.html#11354" title="Poco::UInt32">UInt32</a> n<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="7323">hash</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline std::size_t hash(<br /> <a href="Poco.html#11357" title="Poco::Int64">Int64</a> n<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="7325">hash</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline std::size_t hash(<br /> <a href="Poco.html#11358" title="Poco::UInt64">UInt64</a> n<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="10350">icompare</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S, class It > int icompare(<br /> const S & str,<br /> typename S::size_type pos,<br /> typename S::size_type n,<br /> It it2,<br /> It end2<br />);</p>
<div class="description">
<p>Case-insensitive string comparison </p>
</div>
<h3><a name="10356">icompare</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > int icompare(<br /> const S & str1,<br /> const S & str2<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="10359">icompare</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > int icompare(<br /> const S & str1,<br /> typename S::size_type n1,<br /> const S & str2,<br /> typename S::size_type n2<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="10364">icompare</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > int icompare(<br /> const S & str1,<br /> typename S::size_type n,<br /> const S & str2<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="10368">icompare</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > int icompare(<br /> const S & str1,<br /> typename S::size_type pos,<br /> typename S::size_type n,<br /> const S & str2<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="10373">icompare</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > int icompare(<br /> const S & str1,<br /> typename S::size_type pos1,<br /> typename S::size_type n1,<br /> const S & str2,<br /> typename S::size_type pos2,<br /> typename S::size_type n2<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="10380">icompare</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > int icompare(<br /> const S & str1,<br /> typename S::size_type pos1,<br /> typename S::size_type n,<br /> const S & str2,<br /> typename S::size_type pos2<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="10386">icompare</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > int icompare(<br /> const S & str,<br /> typename S::size_type pos,<br /> typename S::size_type n,<br /> const typename S::value_type * ptr<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="10391">icompare</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > int icompare(<br /> const S & str,<br /> typename S::size_type pos,<br /> const typename S::value_type * ptr<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="10395">icompare</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > int icompare(<br /> const S & str,<br /> const typename S::value_type * ptr<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="4974">operator !=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator != (<br /> const char & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Inequality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with char </p>
</div>
<h3><a name="5016">operator !=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator != (<br /> const <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Inequality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> </p>
</div>
<h3><a name="5058">operator !=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator != (<br /> const <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Inequality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> </p>
</div>
<h3><a name="5100">operator !=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator != (<br /> const <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Inequality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> </p>
</div>
<h3><a name="5142">operator !=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator != (<br /> const <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Inequality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> </p>
</div>
<h3><a name="5184">operator !=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator != (<br /> const <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Inequality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> </p>
</div>
<h3><a name="5226">operator !=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator != (<br /> const <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Inequality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> </p>
</div>
<h3><a name="5268">operator !=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator != (<br /> const <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Inequality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> </p>
</div>
<h3><a name="5310">operator !=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator != (<br /> const <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Inequality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> </p>
</div>
<h3><a name="5352">operator !=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator != (<br /> const float & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Inequality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with float </p>
</div>
<h3><a name="5394">operator !=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator != (<br /> const double & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Inequality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with double </p>
</div>
<h3><a name="5412">operator !=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator != (<br /> const bool & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Inequality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with bool </p>
</div>
<h3><a name="5418">operator !=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator != (<br /> const std::string & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Inequality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with std::string </p>
</div>
<h3><a name="5424">operator !=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator != (<br /> const char * other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Inequality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with const char* </p>
</div>
<h3><a name="5454">operator !=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator != (<br /> const long & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Inequality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with long </p>
</div>
<h3><a name="4953">operator *</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline char operator * (<br /> const char & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Multiplication operator for multiplying <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with char </p>
</div>
<h3><a name="4995">operator *</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> operator * (<br /> const <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Multiplication operator for multiplying <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> </p>
</div>
<h3><a name="5037">operator *</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> operator * (<br /> const <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Multiplication operator for multiplying <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> </p>
</div>
<h3><a name="5079">operator *</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> operator * (<br /> const <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Multiplication operator for multiplying <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> </p>
</div>
<h3><a name="5121">operator *</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> operator * (<br /> const <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Multiplication operator for multiplying <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> </p>
</div>
<h3><a name="5163">operator *</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> operator * (<br /> const <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Multiplication operator for multiplying <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> </p>
</div>
<h3><a name="5205">operator *</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> operator * (<br /> const <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Multiplication operator for multiplying <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> </p>
</div>
<h3><a name="5247">operator *</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> operator * (<br /> const <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Multiplication operator for multiplying <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> </p>
</div>
<h3><a name="5289">operator *</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> operator * (<br /> const <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Multiplication operator for multiplying <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> </p>
</div>
<h3><a name="5331">operator *</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline float operator * (<br /> const float & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Multiplication operator for multiplying <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with float </p>
</div>
<h3><a name="5373">operator *</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline double operator * (<br /> const double & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Multiplication operator for multiplying <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with double </p>
</div>
<h3><a name="5433">operator *</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline long operator * (<br /> const long & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Multiplication operator for multiplying <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with long </p>
</div>
<h3><a name="4965">operator *=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline char operator *= (<br /> char & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Multiplication assignment operator for multiplying <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with char </p>
</div>
<h3><a name="5007">operator *=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> operator *= (<br /> <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Multiplication assignment operator for multiplying <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> </p>
</div>
<h3><a name="5049">operator *=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> operator *= (<br /> <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Multiplication assignment operator for multiplying <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> </p>
</div>
<h3><a name="5091">operator *=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> operator *= (<br /> <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Multiplication assignment operator for multiplying <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> </p>
</div>
<h3><a name="5133">operator *=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> operator *= (<br /> <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Multiplication assignment operator for multiplying <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> </p>
</div>
<h3><a name="5175">operator *=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> operator *= (<br /> <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Multiplication assignment operator for multiplying <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> </p>
</div>
<h3><a name="5217">operator *=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> operator *= (<br /> <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Multiplication assignment operator for multiplying <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> </p>
</div>
<h3><a name="5259">operator *=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> operator *= (<br /> <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Multiplication assignment operator for multiplying <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> </p>
</div>
<h3><a name="5301">operator *=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> operator *= (<br /> <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Multiplication assignment operator for multiplying <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> </p>
</div>
<h3><a name="5343">operator *=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline float operator *= (<br /> float & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Multiplication assignment operator for multiplying <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with float </p>
</div>
<h3><a name="5385">operator *=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline double operator *= (<br /> double & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Multiplication assignment operator for multiplying <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with double </p>
</div>
<h3><a name="5445">operator *=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline long operator *= (<br /> long & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Multiplication assignment operator for multiplying <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with long </p>
</div>
<h3><a name="4944">operator +</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> operator + (<br /> const char * other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>inlines </p>
<p></p>
<p><a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> members </p>
<p></p>
<p><a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> non-member functions </p>
<p>Addition operator for adding <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> to const char* </p>
</div>
<h3><a name="4947">operator +</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline char operator + (<br /> const char & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Addition operator for adding <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> to char </p>
</div>
<h3><a name="4989">operator +</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> operator + (<br /> const <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Addition operator for adding <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> to <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> </p>
</div>
<h3><a name="5031">operator +</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> operator + (<br /> const <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Addition operator for adding <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> to <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> </p>
</div>
<h3><a name="5073">operator +</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> operator + (<br /> const <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Addition operator for adding <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> to <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> </p>
</div>
<h3><a name="5115">operator +</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> operator + (<br /> const <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Addition operator for adding <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> to <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> </p>
</div>
<h3><a name="5157">operator +</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> operator + (<br /> const <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Addition operator for adding <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> to <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> </p>
</div>
<h3><a name="5199">operator +</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> operator + (<br /> const <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Addition operator for adding <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> to <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> </p>
</div>
<h3><a name="5241">operator +</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> operator + (<br /> const <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Addition operator for adding <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> to <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> </p>
</div>
<h3><a name="5283">operator +</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> operator + (<br /> const <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Addition operator for adding <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> to <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> </p>
</div>
<h3><a name="5325">operator +</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline float operator + (<br /> const float & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Addition operator for adding <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> to float </p>
</div>
<h3><a name="5367">operator +</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline double operator + (<br /> const double & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Addition operator for adding <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> to double </p>
</div>
<h3><a name="5427">operator +</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline long operator + (<br /> const long & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Addition operator for adding <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> to long </p>
</div>
<h3><a name="4959">operator +=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline char operator += (<br /> char & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Addition assignment operator for adding <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> to char </p>
</div>
<h3><a name="5001">operator +=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> operator += (<br /> <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Addition assignment operator for adding <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> to <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> </p>
</div>
<h3><a name="5043">operator +=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> operator += (<br /> <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Addition assignment operator for adding <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> to <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> </p>
</div>
<h3><a name="5085">operator +=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> operator += (<br /> <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Addition assignment operator for adding <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> to <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> </p>
</div>
<h3><a name="5127">operator +=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> operator += (<br /> <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Addition assignment operator for adding <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> to <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> </p>
</div>
<h3><a name="5169">operator +=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> operator += (<br /> <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Addition assignment operator for adding <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> to <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> </p>
</div>
<h3><a name="5211">operator +=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> operator += (<br /> <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Addition assignment operator for adding <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> to <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> </p>
</div>
<h3><a name="5253">operator +=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> operator += (<br /> <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Addition assignment operator for adding <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> to <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> </p>
</div>
<h3><a name="5295">operator +=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> operator += (<br /> <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Addition assignment operator for adding <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> to <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> </p>
</div>
<h3><a name="5337">operator +=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline float operator += (<br /> float & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Addition assignment operator for adding <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> to float </p>
</div>
<h3><a name="5379">operator +=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline double operator += (<br /> double & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Addition assignment operator for adding <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> to double </p>
</div>
<h3><a name="5439">operator +=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline long operator += (<br /> long & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Addition assignment operator for adding <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> to long </p>
</div>
<h3><a name="4950">operator -</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline char operator - (<br /> const char & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Subtraction operator for subtracting <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> from char </p>
</div>
<h3><a name="4992">operator -</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> operator - (<br /> const <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Subtraction operator for subtracting <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> from <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> </p>
</div>
<h3><a name="5034">operator -</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> operator - (<br /> const <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Subtraction operator for subtracting <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> from <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> </p>
</div>
<h3><a name="5076">operator -</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> operator - (<br /> const <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Subtraction operator for subtracting <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> from <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> </p>
</div>
<h3><a name="5118">operator -</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> operator - (<br /> const <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Subtraction operator for subtracting <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> from <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> </p>
</div>
<h3><a name="5160">operator -</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> operator - (<br /> const <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Subtraction operator for subtracting <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> from <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> </p>
</div>
<h3><a name="5202">operator -</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> operator - (<br /> const <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Subtraction operator for subtracting <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> from <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> </p>
</div>
<h3><a name="5244">operator -</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> operator - (<br /> const <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Subtraction operator for subtracting <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> from <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> </p>
</div>
<h3><a name="5286">operator -</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> operator - (<br /> const <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Subtraction operator for subtracting <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> from <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> </p>
</div>
<h3><a name="5328">operator -</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline float operator - (<br /> const float & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Subtraction operator for subtracting <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> from float </p>
</div>
<h3><a name="5370">operator -</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline double operator - (<br /> const double & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Subtraction operator for subtracting <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> from double </p>
</div>
<h3><a name="5430">operator -</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline long operator - (<br /> const long & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Subtraction operator for subtracting <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> from long </p>
</div>
<h3><a name="4962">operator -=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline char operator -= (<br /> char & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Subtraction assignment operator for subtracting <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> from char </p>
</div>
<h3><a name="5004">operator -=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> operator -= (<br /> <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Subtraction assignment operator for subtracting <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> from <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> </p>
</div>
<h3><a name="5046">operator -=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> operator -= (<br /> <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Subtraction assignment operator for subtracting <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> from <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> </p>
</div>
<h3><a name="5088">operator -=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> operator -= (<br /> <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Subtraction assignment operator for subtracting <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> from <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> </p>
</div>
<h3><a name="5130">operator -=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> operator -= (<br /> <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Subtraction assignment operator for subtracting <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> from <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> </p>
</div>
<h3><a name="5172">operator -=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> operator -= (<br /> <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Subtraction assignment operator for subtracting <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> from <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> </p>
</div>
<h3><a name="5214">operator -=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> operator -= (<br /> <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Subtraction assignment operator for subtracting <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> from <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> </p>
</div>
<h3><a name="5256">operator -=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> operator -= (<br /> <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Subtraction assignment operator for subtracting <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> from <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> </p>
</div>
<h3><a name="5298">operator -=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> operator -= (<br /> <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Subtraction assignment operator for subtracting <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> from <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> </p>
</div>
<h3><a name="5340">operator -=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline float operator -= (<br /> float & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Subtraction assignment operator for subtracting <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> from float </p>
</div>
<h3><a name="5382">operator -=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline double operator -= (<br /> double & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Subtraction assignment operator for subtracting <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> from double </p>
</div>
<h3><a name="5442">operator -=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline long operator -= (<br /> long & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Subtraction assignment operator for subtracting <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> from long </p>
</div>
<h3><a name="4956">operator /</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline char operator / (<br /> const char & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Division operator for dividing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with char </p>
</div>
<h3><a name="4998">operator /</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> operator / (<br /> const <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Division operator for dividing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> </p>
</div>
<h3><a name="5040">operator /</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> operator / (<br /> const <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Division operator for dividing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> </p>
</div>
<h3><a name="5082">operator /</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> operator / (<br /> const <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Division operator for dividing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> </p>
</div>
<h3><a name="5124">operator /</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> operator / (<br /> const <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Division operator for dividing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> </p>
</div>
<h3><a name="5166">operator /</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> operator / (<br /> const <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Division operator for dividing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> </p>
</div>
<h3><a name="5208">operator /</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> operator / (<br /> const <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Division operator for dividing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> </p>
</div>
<h3><a name="5250">operator /</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> operator / (<br /> const <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Division operator for dividing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> </p>
</div>
<h3><a name="5292">operator /</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> operator / (<br /> const <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Division operator for dividing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> </p>
</div>
<h3><a name="5334">operator /</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline float operator / (<br /> const float & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Division operator for dividing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with float </p>
</div>
<h3><a name="5376">operator /</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline double operator / (<br /> const double & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Division operator for dividing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with double </p>
</div>
<h3><a name="5436">operator /</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline long operator / (<br /> const long & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Division operator for dividing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with long </p>
</div>
<h3><a name="4968">operator /=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline char operator /= (<br /> char & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Division assignment operator for dividing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with char </p>
</div>
<h3><a name="5010">operator /=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> operator /= (<br /> <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Division assignment operator for dividing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> </p>
</div>
<h3><a name="5052">operator /=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> operator /= (<br /> <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Division assignment operator for dividing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> </p>
</div>
<h3><a name="5094">operator /=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> operator /= (<br /> <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Division assignment operator for dividing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> </p>
</div>
<h3><a name="5136">operator /=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> operator /= (<br /> <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Division assignment operator for dividing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> </p>
</div>
<h3><a name="5178">operator /=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> operator /= (<br /> <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Division assignment operator for dividing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> </p>
</div>
<h3><a name="5220">operator /=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> operator /= (<br /> <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Division assignment operator for dividing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> </p>
</div>
<h3><a name="5262">operator /=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> operator /= (<br /> <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Division assignment operator for dividing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> </p>
</div>
<h3><a name="5304">operator /=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> operator /= (<br /> <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Division assignment operator for dividing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> </p>
</div>
<h3><a name="5346">operator /=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline float operator /= (<br /> float & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Division assignment operator for dividing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with float </p>
</div>
<h3><a name="5388">operator /=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline double operator /= (<br /> double & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Division assignment operator for dividing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with double </p>
</div>
<h3><a name="5448">operator /=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline long operator /= (<br /> long & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Division assignment operator for dividing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with long </p>
</div>
<h3><a name="4977">operator <</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator < (<br /> const char & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Less than operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with char </p>
</div>
<h3><a name="5019">operator <</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator < (<br /> const <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Less than operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> </p>
</div>
<h3><a name="5061">operator <</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator < (<br /> const <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Less than operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> </p>
</div>
<h3><a name="5103">operator <</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator < (<br /> const <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Less than operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> </p>
</div>
<h3><a name="5145">operator <</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator < (<br /> const <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Less than operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> </p>
</div>
<h3><a name="5187">operator <</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator < (<br /> const <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Less than operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> </p>
</div>
<h3><a name="5229">operator <</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator < (<br /> const <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Less than operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> </p>
</div>
<h3><a name="5271">operator <</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator < (<br /> const <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Less than operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> </p>
</div>
<h3><a name="5313">operator <</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator < (<br /> const <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Less than operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> </p>
</div>
<h3><a name="5355">operator <</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator < (<br /> const float & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Less than operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with float </p>
</div>
<h3><a name="5397">operator <</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator < (<br /> const double & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Less than operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with double </p>
</div>
<h3><a name="5457">operator <</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator < (<br /> const long & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Less than operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with long </p>
</div>
<h3><a name="4980">operator <=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator <= (<br /> const char & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Less than or equal operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with char </p>
</div>
<h3><a name="5022">operator <=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator <= (<br /> const <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Less than or equal operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> </p>
</div>
<h3><a name="5064">operator <=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator <= (<br /> const <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Less than or equal operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> </p>
</div>
<h3><a name="5106">operator <=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator <= (<br /> const <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Less than or equal operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> </p>
</div>
<h3><a name="5148">operator <=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator <= (<br /> const <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Less than or equal operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> </p>
</div>
<h3><a name="5190">operator <=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator <= (<br /> const <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Less than or equal operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> </p>
</div>
<h3><a name="5232">operator <=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator <= (<br /> const <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Less than or equal operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> </p>
</div>
<h3><a name="5274">operator <=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator <= (<br /> const <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Less than or equal operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> </p>
</div>
<h3><a name="5316">operator <=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator <= (<br /> const <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Less than or equal operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> </p>
</div>
<h3><a name="5358">operator <=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator <= (<br /> const float & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Less than or equal operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with float </p>
</div>
<h3><a name="5400">operator <=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator <= (<br /> const double & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Less than or equal operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with double </p>
</div>
<h3><a name="5460">operator <=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator <= (<br /> const long & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Less than or equal operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with long </p>
</div>
<h3><a name="4971">operator ==</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator == (<br /> const char & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Equality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with char </p>
</div>
<h3><a name="5013">operator ==</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator == (<br /> const <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Equality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> </p>
</div>
<h3><a name="5055">operator ==</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator == (<br /> const <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Equality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> </p>
</div>
<h3><a name="5097">operator ==</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator == (<br /> const <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Equality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> </p>
</div>
<h3><a name="5139">operator ==</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator == (<br /> const <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Equality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> </p>
</div>
<h3><a name="5181">operator ==</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator == (<br /> const <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Equality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> </p>
</div>
<h3><a name="5223">operator ==</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator == (<br /> const <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Equality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> </p>
</div>
<h3><a name="5265">operator ==</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator == (<br /> const <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Equality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> </p>
</div>
<h3><a name="5307">operator ==</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator == (<br /> const <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Equality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> </p>
</div>
<h3><a name="5349">operator ==</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator == (<br /> const float & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Equality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with float </p>
</div>
<h3><a name="5391">operator ==</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator == (<br /> const double & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Equality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with double </p>
</div>
<h3><a name="5409">operator ==</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator == (<br /> const bool & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Equality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with bool </p>
</div>
<h3><a name="5415">operator ==</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator == (<br /> const std::string & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Equality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with std::string </p>
</div>
<h3><a name="5421">operator ==</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator == (<br /> const char * other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Equality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with const char* </p>
</div>
<h3><a name="5451">operator ==</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator == (<br /> const long & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Equality operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with long </p>
</div>
<h3><a name="4983">operator ></a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator > (<br /> const char & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Greater than operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with char </p>
</div>
<h3><a name="5025">operator ></a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator > (<br /> const <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Greater than operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> </p>
</div>
<h3><a name="5067">operator ></a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator > (<br /> const <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Greater than operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> </p>
</div>
<h3><a name="5109">operator ></a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator > (<br /> const <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Greater than operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> </p>
</div>
<h3><a name="5151">operator ></a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator > (<br /> const <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Greater than operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> </p>
</div>
<h3><a name="5193">operator ></a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator > (<br /> const <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Greater than operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> </p>
</div>
<h3><a name="5235">operator ></a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator > (<br /> const <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Greater than operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> </p>
</div>
<h3><a name="5277">operator ></a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator > (<br /> const <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Greater than operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> </p>
</div>
<h3><a name="5319">operator ></a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator > (<br /> const <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Greater than operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> </p>
</div>
<h3><a name="5361">operator ></a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator > (<br /> const float & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Greater than operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with float </p>
</div>
<h3><a name="5403">operator ></a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator > (<br /> const double & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Greater than operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with double </p>
</div>
<h3><a name="5463">operator ></a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator > (<br /> const long & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Greater than operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with long </p>
</div>
<h3><a name="4986">operator >=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator >= (<br /> const char & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Greater than or equal operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with char </p>
</div>
<h3><a name="5028">operator >=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator >= (<br /> const <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Greater than or equal operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11349" title="Poco::Int8">Poco::Int8</a> </p>
</div>
<h3><a name="5070">operator >=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator >= (<br /> const <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Greater than or equal operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11350" title="Poco::UInt8">Poco::UInt8</a> </p>
</div>
<h3><a name="5112">operator >=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator >= (<br /> const <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Greater than or equal operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11351" title="Poco::Int16">Poco::Int16</a> </p>
</div>
<h3><a name="5154">operator >=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator >= (<br /> const <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Greater than or equal operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11352" title="Poco::UInt16">Poco::UInt16</a> </p>
</div>
<h3><a name="5196">operator >=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator >= (<br /> const <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Greater than or equal operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11353" title="Poco::Int32">Poco::Int32</a> </p>
</div>
<h3><a name="5238">operator >=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator >= (<br /> const <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Greater than or equal operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11354" title="Poco::UInt32">Poco::UInt32</a> </p>
</div>
<h3><a name="5280">operator >=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator >= (<br /> const <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Greater than or equal operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11357" title="Poco::Int64">Poco::Int64</a> </p>
</div>
<h3><a name="5322">operator >=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator >= (<br /> const <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Greater than or equal operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with <a href="Poco.html#11358" title="Poco::UInt64">Poco::UInt64</a> </p>
</div>
<h3><a name="5364">operator >=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator >= (<br /> const float & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Greater than or equal operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with float </p>
</div>
<h3><a name="5406">operator >=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator >= (<br /> const double & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Greater than or equal operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with double </p>
</div>
<h3><a name="5466">operator >=</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline bool operator >= (<br /> const long & other,<br /> const <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> & da<br />);</p>
<div class="description">
<p>Greater than or equal operator for comparing <a href="Poco.DynamicAny.html" title="class Poco::DynamicAny">DynamicAny</a> with long </p>
</div>
<h3><a name="9418">priorityDelegate</a> <img src="images/static.gif" alt="static" title="static" style="vertical-align:baseline;" border="0" /> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class TObj, class TArgs > static <a href="Poco.PriorityDelegate.html" title="class Poco::PriorityDelegate">PriorityDelegate</a> < TObj, TArgs, true > priorityDelegate(<br /> TObj * pObj,<br /> void (TObj::* NotifyMethod)(const void *, TArgs &) param148,<br /> int prio<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="9422">priorityDelegate</a> <img src="images/static.gif" alt="static" title="static" style="vertical-align:baseline;" border="0" /> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class TObj, class TArgs > static <a href="Poco.PriorityDelegate.html" title="class Poco::PriorityDelegate">PriorityDelegate</a> < TObj, TArgs, false > priorityDelegate(<br /> TObj * pObj,<br /> void (TObj::* NotifyMethod)(TArgs &) param149,<br /> int prio<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="9426">priorityDelegate</a> <img src="images/static.gif" alt="static" title="static" style="vertical-align:baseline;" border="0" /> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class TObj, class TArgs > static <a href="Poco.PriorityExpire.html" title="class Poco::PriorityExpire">PriorityExpire</a> < TArgs > priorityDelegate(<br /> TObj * pObj,<br /> void (TObj::* NotifyMethod)(const void *, TArgs &) param150,<br /> int prio,<br /> <a href="Poco.Timestamp.html#11151" title="Poco::Timestamp::TimeDiff">Timestamp::TimeDiff</a> expireMilliSec<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="9431">priorityDelegate</a> <img src="images/static.gif" alt="static" title="static" style="vertical-align:baseline;" border="0" /> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class TObj, class TArgs > static <a href="Poco.PriorityExpire.html" title="class Poco::PriorityExpire">PriorityExpire</a> < TArgs > priorityDelegate(<br /> TObj * pObj,<br /> void (TObj::* NotifyMethod)(TArgs &) param151,<br /> int prio,<br /> <a href="Poco.Timestamp.html#11151" title="Poco::Timestamp::TimeDiff">Timestamp::TimeDiff</a> expireMilliSec<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="9436">priorityDelegate</a> <img src="images/static.gif" alt="static" title="static" style="vertical-align:baseline;" border="0" /> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class TArgs > static <a href="Poco.PriorityExpire.html" title="class Poco::PriorityExpire">PriorityExpire</a> < TArgs > priorityDelegate(<br /> void (* NotifyMethod)(const void *, TArgs &) param152,<br /> int prio,<br /> <a href="Poco.Timestamp.html#11151" title="Poco::Timestamp::TimeDiff">Timestamp::TimeDiff</a> expireMilliSec<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="9440">priorityDelegate</a> <img src="images/static.gif" alt="static" title="static" style="vertical-align:baseline;" border="0" /> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class TArgs > static <a href="Poco.PriorityExpire.html" title="class Poco::PriorityExpire">PriorityExpire</a> < TArgs > priorityDelegate(<br /> void (* NotifyMethod)(void *, TArgs &) param153,<br /> int prio,<br /> <a href="Poco.Timestamp.html#11151" title="Poco::Timestamp::TimeDiff">Timestamp::TimeDiff</a> expireMilliSec<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="9444">priorityDelegate</a> <img src="images/static.gif" alt="static" title="static" style="vertical-align:baseline;" border="0" /> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class TArgs > static <a href="Poco.PriorityExpire.html" title="class Poco::PriorityExpire">PriorityExpire</a> < TArgs > priorityDelegate(<br /> void (* NotifyMethod)(TArgs &) param154,<br /> int prio,<br /> <a href="Poco.Timestamp.html#11151" title="Poco::Timestamp::TimeDiff">Timestamp::TimeDiff</a> expireMilliSec<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="9448">priorityDelegate</a> <img src="images/static.gif" alt="static" title="static" style="vertical-align:baseline;" border="0" /> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class TArgs > static <a href="Poco.FunctionPriorityDelegate.html" title="class Poco::FunctionPriorityDelegate">FunctionPriorityDelegate</a> < TArgs, true, true > priorityDelegate(<br /> void (* NotifyMethod)(const void *, TArgs &) param155,<br /> int prio<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="9451">priorityDelegate</a> <img src="images/static.gif" alt="static" title="static" style="vertical-align:baseline;" border="0" /> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class TArgs > static <a href="Poco.FunctionPriorityDelegate.html" title="class Poco::FunctionPriorityDelegate">FunctionPriorityDelegate</a> < TArgs, true, false > priorityDelegate(<br /> void (* NotifyMethod)(void *, TArgs &) param156,<br /> int prio<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="9454">priorityDelegate</a> <img src="images/static.gif" alt="static" title="static" style="vertical-align:baseline;" border="0" /> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class TArgs > static <a href="Poco.FunctionPriorityDelegate.html" title="class Poco::FunctionPriorityDelegate">FunctionPriorityDelegate</a> < TArgs, false > priorityDelegate(<br /> void (* NotifyMethod)(TArgs &) param157,<br /> int prio<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="10414">replace</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > S replace(<br /> const S & str,<br /> const S & from,<br /> const S & to,<br /> typename S::size_type start = 0<br />);</p>
<div class="description">
<p>Replace all occurences of from (which must not be the empty string) in str with to, starting at position start. </p>
</div>
<h3><a name="10419">replace</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > S replace(<br /> const S & str,<br /> const typename S::value_type * from,<br /> const typename S::value_type * to,<br /> typename S::size_type start = 0<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="10424">replaceInPlace</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > S & replaceInPlace(<br /> S & str,<br /> const S & from,<br /> const S & to,<br /> typename S::size_type start = 0<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="10429">replaceInPlace</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > S & replaceInPlace(<br /> S & str,<br /> const typename S::value_type * from,<br /> const typename S::value_type * to,<br /> typename S::size_type start = 0<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="3717">swap</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class C > inline void swap(<br /> <a href="Poco.AutoPtr.html" title="class Poco::AutoPtr">AutoPtr</a> < C > & p1,<br /> <a href="Poco.AutoPtr.html" title="class Poco::AutoPtr">AutoPtr</a> < C > & p2<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="4483">swap</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline void swap(<br /> <a href="Poco.DateTime.html" title="class Poco::DateTime">DateTime</a> & d1,<br /> <a href="Poco.DateTime.html" title="class Poco::DateTime">DateTime</a> & d2<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="6980">swap</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline void swap(<br /> <a href="Poco.File.html" title="class Poco::File">File</a> & f1,<br /> <a href="Poco.File.html" title="class Poco::File">File</a> & f2<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="7986">swap</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline void swap(<br /> <a href="Poco.LocalDateTime.html" title="class Poco::LocalDateTime">LocalDateTime</a> & d1,<br /> <a href="Poco.LocalDateTime.html" title="class Poco::LocalDateTime">LocalDateTime</a> & d2<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="8483">swap</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline void swap(<br /> <a href="Poco.Message.html" title="class Poco::Message">Message</a> & m1,<br /> <a href="Poco.Message.html" title="class Poco::Message">Message</a> & m2<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="9312">swap</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline void swap(<br /> <a href="Poco.Path.html" title="class Poco::Path">Path</a> & p1,<br /> <a href="Poco.Path.html" title="class Poco::Path">Path</a> & p2<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="10044">swap</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class C, class RC, class RP > inline void swap(<br /> <a href="Poco.SharedPtr.html" title="class Poco::SharedPtr">SharedPtr</a> < C,<br /> RC,<br /> RP > & p1,<br /> <a href="Poco.SharedPtr.html" title="class Poco::SharedPtr">SharedPtr</a> < C,<br /> RC,<br /> RP > & p2<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="10809">swap</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline void swap(<br /> <a href="Poco.TextIterator.html" title="class Poco::TextIterator">TextIterator</a> & it1,<br /> <a href="Poco.TextIterator.html" title="class Poco::TextIterator">TextIterator</a> & it2<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="11145">swap</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline void swap(<br /> <a href="Poco.Timespan.html" title="class Poco::Timespan">Timespan</a> & s1,<br /> <a href="Poco.Timespan.html" title="class Poco::Timespan">Timespan</a> & s2<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="11199">swap</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline void swap(<br /> <a href="Poco.Timestamp.html" title="class Poco::Timestamp">Timestamp</a> & s1,<br /> <a href="Poco.Timestamp.html" title="class Poco::Timestamp">Timestamp</a> & s2<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="11500">swap</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline void swap(<br /> <a href="Poco.URI.html" title="class Poco::URI">URI</a> & u1,<br /> <a href="Poco.URI.html" title="class Poco::URI">URI</a> & u2<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="11745">swap</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">inline void swap(<br /> <a href="Poco.UUID.html" title="class Poco::UUID">UUID</a> & u1,<br /> <a href="Poco.UUID.html" title="class Poco::UUID">UUID</a> & u2<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="10346">toLower</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > S toLower(<br /> const S & str<br />);</p>
<div class="description">
<p>Returns a copy of str containing all lower-case characters. </p>
</div>
<h3><a name="10348">toLowerInPlace</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > S & toLowerInPlace(<br /> S & str<br />);</p>
<div class="description">
<p>Replaces all characters in str with their lower-case counterparts. </p>
</div>
<h3><a name="10342">toUpper</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > S toUpper(<br /> const S & str<br />);</p>
<div class="description">
<p>Returns a copy of str containing all upper-case characters. </p>
</div>
<h3><a name="10344">toUpperInPlace</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > S & toUpperInPlace(<br /> S & str<br />);</p>
<div class="description">
<p>Replaces all characters in str with their upper-case counterparts. </p>
</div>
<h3><a name="10398">translate</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > S translate(<br /> const S & str,<br /> const S & from,<br /> const S & to<br />);</p>
<div class="description">
<p>Returns a copy of str with all characters in from replaced by the corresponding (by position) characters in to. If there is no corresponding character in to, the character is removed from the copy. </p>
</div>
<h3><a name="10402">translate</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > S translate(<br /> const S & str,<br /> const typename S::value_type * from,<br /> const typename S::value_type * to<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="10406">translateInPlace</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > S & translateInPlace(<br /> S & str,<br /> const S & from,<br /> const S & to<br />);</p>
<div class="description">
<p>Replaces in str all occurences of characters in from with the corresponding (by position) characters in to. If there is no corresponding character, the character is removed. </p>
</div>
<h3><a name="10410">translateInPlace</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > S translateInPlace(<br /> S & str,<br /> const typename S::value_type * from,<br /> const typename S::value_type * to<br />);</p>
<div class="description">
<p></p>
</div>
<h3><a name="10338">trim</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > S trim(<br /> const S & str<br />);</p>
<div class="description">
<p>Returns a copy of str with all leading and trailing whitespace removed. </p>
</div>
<h3><a name="10340">trimInPlace</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > S & trimInPlace(<br /> S & str<br />);</p>
<div class="description">
<p>Removes all leading and trailing whitespace in str. </p>
</div>
<h3><a name="10330">trimLeft</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > S trimLeft(<br /> const S & str<br />);</p>
<div class="description">
<p>Returns a copy of str with all leading whitespace removed. </p>
</div>
<h3><a name="10332">trimLeftInPlace</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > S & trimLeftInPlace(<br /> S & str<br />);</p>
<div class="description">
<p>Removes all leading whitespace in str. </p>
</div>
<h3><a name="10334">trimRight</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > S trimRight(<br /> const S & str<br />);</p>
<div class="description">
<p>Returns a copy of str with all trailing whitespace removed. </p>
</div>
<h3><a name="10336">trimRightInPlace</a> <img src="images/inline.gif" alt="inline" title="inline" style="vertical-align:baseline;" border="0" /> </h3>
<p class="decl">template < class S > S & trimRightInPlace(<br /> S & str<br />);</p>
<div class="description">
<p>Removes all trailing whitespace in str. </p>
</div>
<p class="footer">POCO C++ Libraries 1.3.6-all<br />
Copyright © 2009, <a href="http://pocoproject.org/" target="_blank">Applied Informatics Software Engineering GmbH and Contributors</a></p>
</div>
</body>
</html>
|