File size: 172,417 Bytes
053b80b |
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 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 |
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: DeviceConfig.proto
#ifndef PROTOBUF_DeviceConfig_2eproto__INCLUDED
#define PROTOBUF_DeviceConfig_2eproto__INCLUDED
#include <string>
#include <google/protobuf/stubs/common.h>
#if GOOGLE_PROTOBUF_VERSION < 3005000
#error This file was generated by a newer version of protoc which is
#error incompatible with your Protocol Buffer headers. Please update
#error your headers.
#endif
#if 3005001 < GOOGLE_PROTOBUF_MIN_PROTOC_VERSION
#error This file was generated by an older version of protoc which is
#error incompatible with your Protocol Buffer headers. Please
#error regenerate this file with a newer version of protoc.
#endif
#include <google/protobuf/io/coded_stream.h>
#include <google/protobuf/arena.h>
#include <google/protobuf/arenastring.h>
#include <google/protobuf/generated_message_table_driven.h>
#include <google/protobuf/generated_message_util.h>
#include <google/protobuf/metadata.h>
#include <google/protobuf/message.h>
#include <google/protobuf/repeated_field.h> // IWYU pragma: export
#include <google/protobuf/extension_set.h> // IWYU pragma: export
#include <google/protobuf/generated_enum_reflection.h>
#include <google/protobuf/unknown_field_set.h>
#include "Common.pb.h" // IWYU pragma: export
// @@protoc_insertion_point(includes)
namespace protobuf_DeviceConfig_2eproto {
// Internal implementation detail -- do not use these members.
struct TableStruct {
static const ::google::protobuf::internal::ParseTableField entries[];
static const ::google::protobuf::internal::AuxillaryParseTableField aux[];
static const ::google::protobuf::internal::ParseTable schema[25];
static const ::google::protobuf::internal::FieldMetadata field_metadata[];
static const ::google::protobuf::internal::SerializationTable serialization_table[];
static const ::google::protobuf::uint32 offsets[];
};
void AddDescriptors();
void InitDefaultsDeviceTypeImpl();
void InitDefaultsDeviceType();
void InitDefaultsRunModeImpl();
void InitDefaultsRunMode();
void InitDefaultsFirmwareVersionImpl();
void InitDefaultsFirmwareVersion();
void InitDefaultsBootloaderVersionImpl();
void InitDefaultsBootloaderVersion();
void InitDefaultsModelNumberImpl();
void InitDefaultsModelNumber();
void InitDefaultsPartNumberImpl();
void InitDefaultsPartNumber();
void InitDefaultsSerialNumberImpl();
void InitDefaultsSerialNumber();
void InitDefaultsMACAddressImpl();
void InitDefaultsMACAddress();
void InitDefaultsIPv4SettingsImpl();
void InitDefaultsIPv4Settings();
void InitDefaultsPartNumberRevisionImpl();
void InitDefaultsPartNumberRevision();
void InitDefaultsPowerOnSelfTestResultImpl();
void InitDefaultsPowerOnSelfTestResult();
void InitDefaultsRebootRqstImpl();
void InitDefaultsRebootRqst();
void InitDefaultsSafetyInformationImpl();
void InitDefaultsSafetyInformation();
void InitDefaultsSafetyInformationListImpl();
void InitDefaultsSafetyInformationList();
void InitDefaultsSafetyEnableImpl();
void InitDefaultsSafetyEnable();
void InitDefaultsSafetyThresholdImpl();
void InitDefaultsSafetyThreshold();
void InitDefaultsSafetyConfigurationImpl();
void InitDefaultsSafetyConfiguration();
void InitDefaultsSafetyConfigurationListImpl();
void InitDefaultsSafetyConfigurationList();
void InitDefaultsSafetyStatusImpl();
void InitDefaultsSafetyStatus();
void InitDefaultsCalibrationParameterImpl();
void InitDefaultsCalibrationParameter();
void InitDefaultsCalibrationImpl();
void InitDefaultsCalibration();
void InitDefaultsCalibrationElementImpl();
void InitDefaultsCalibrationElement();
void InitDefaultsCalibrationResultImpl();
void InitDefaultsCalibrationResult();
void InitDefaultsCapSenseConfigImpl();
void InitDefaultsCapSenseConfig();
void InitDefaultsCapSenseRegisterImpl();
void InitDefaultsCapSenseRegister();
inline void InitDefaults() {
InitDefaultsDeviceType();
InitDefaultsRunMode();
InitDefaultsFirmwareVersion();
InitDefaultsBootloaderVersion();
InitDefaultsModelNumber();
InitDefaultsPartNumber();
InitDefaultsSerialNumber();
InitDefaultsMACAddress();
InitDefaultsIPv4Settings();
InitDefaultsPartNumberRevision();
InitDefaultsPowerOnSelfTestResult();
InitDefaultsRebootRqst();
InitDefaultsSafetyInformation();
InitDefaultsSafetyInformationList();
InitDefaultsSafetyEnable();
InitDefaultsSafetyThreshold();
InitDefaultsSafetyConfiguration();
InitDefaultsSafetyConfigurationList();
InitDefaultsSafetyStatus();
InitDefaultsCalibrationParameter();
InitDefaultsCalibration();
InitDefaultsCalibrationElement();
InitDefaultsCalibrationResult();
InitDefaultsCapSenseConfig();
InitDefaultsCapSenseRegister();
}
} // namespace protobuf_DeviceConfig_2eproto
namespace Kinova {
namespace Api {
namespace DeviceConfig {
class BootloaderVersion;
class BootloaderVersionDefaultTypeInternal;
extern BootloaderVersionDefaultTypeInternal _BootloaderVersion_default_instance_;
class Calibration;
class CalibrationDefaultTypeInternal;
extern CalibrationDefaultTypeInternal _Calibration_default_instance_;
class CalibrationElement;
class CalibrationElementDefaultTypeInternal;
extern CalibrationElementDefaultTypeInternal _CalibrationElement_default_instance_;
class CalibrationParameter;
class CalibrationParameterDefaultTypeInternal;
extern CalibrationParameterDefaultTypeInternal _CalibrationParameter_default_instance_;
class CalibrationResult;
class CalibrationResultDefaultTypeInternal;
extern CalibrationResultDefaultTypeInternal _CalibrationResult_default_instance_;
class CapSenseConfig;
class CapSenseConfigDefaultTypeInternal;
extern CapSenseConfigDefaultTypeInternal _CapSenseConfig_default_instance_;
class CapSenseRegister;
class CapSenseRegisterDefaultTypeInternal;
extern CapSenseRegisterDefaultTypeInternal _CapSenseRegister_default_instance_;
class DeviceType;
class DeviceTypeDefaultTypeInternal;
extern DeviceTypeDefaultTypeInternal _DeviceType_default_instance_;
class FirmwareVersion;
class FirmwareVersionDefaultTypeInternal;
extern FirmwareVersionDefaultTypeInternal _FirmwareVersion_default_instance_;
class IPv4Settings;
class IPv4SettingsDefaultTypeInternal;
extern IPv4SettingsDefaultTypeInternal _IPv4Settings_default_instance_;
class MACAddress;
class MACAddressDefaultTypeInternal;
extern MACAddressDefaultTypeInternal _MACAddress_default_instance_;
class ModelNumber;
class ModelNumberDefaultTypeInternal;
extern ModelNumberDefaultTypeInternal _ModelNumber_default_instance_;
class PartNumber;
class PartNumberDefaultTypeInternal;
extern PartNumberDefaultTypeInternal _PartNumber_default_instance_;
class PartNumberRevision;
class PartNumberRevisionDefaultTypeInternal;
extern PartNumberRevisionDefaultTypeInternal _PartNumberRevision_default_instance_;
class PowerOnSelfTestResult;
class PowerOnSelfTestResultDefaultTypeInternal;
extern PowerOnSelfTestResultDefaultTypeInternal _PowerOnSelfTestResult_default_instance_;
class RebootRqst;
class RebootRqstDefaultTypeInternal;
extern RebootRqstDefaultTypeInternal _RebootRqst_default_instance_;
class RunMode;
class RunModeDefaultTypeInternal;
extern RunModeDefaultTypeInternal _RunMode_default_instance_;
class SafetyConfiguration;
class SafetyConfigurationDefaultTypeInternal;
extern SafetyConfigurationDefaultTypeInternal _SafetyConfiguration_default_instance_;
class SafetyConfigurationList;
class SafetyConfigurationListDefaultTypeInternal;
extern SafetyConfigurationListDefaultTypeInternal _SafetyConfigurationList_default_instance_;
class SafetyEnable;
class SafetyEnableDefaultTypeInternal;
extern SafetyEnableDefaultTypeInternal _SafetyEnable_default_instance_;
class SafetyInformation;
class SafetyInformationDefaultTypeInternal;
extern SafetyInformationDefaultTypeInternal _SafetyInformation_default_instance_;
class SafetyInformationList;
class SafetyInformationListDefaultTypeInternal;
extern SafetyInformationListDefaultTypeInternal _SafetyInformationList_default_instance_;
class SafetyStatus;
class SafetyStatusDefaultTypeInternal;
extern SafetyStatusDefaultTypeInternal _SafetyStatus_default_instance_;
class SafetyThreshold;
class SafetyThresholdDefaultTypeInternal;
extern SafetyThresholdDefaultTypeInternal _SafetyThreshold_default_instance_;
class SerialNumber;
class SerialNumberDefaultTypeInternal;
extern SerialNumberDefaultTypeInternal _SerialNumber_default_instance_;
} // namespace DeviceConfig
} // namespace Api
} // namespace Kinova
namespace Kinova {
namespace Api {
namespace DeviceConfig {
enum ServiceVersion {
RESERVED_0 = 0,
CURRENT_VERSION = 1,
ServiceVersion_INT_MIN_SENTINEL_DO_NOT_USE_ = ::google::protobuf::kint32min,
ServiceVersion_INT_MAX_SENTINEL_DO_NOT_USE_ = ::google::protobuf::kint32max
};
bool ServiceVersion_IsValid(int value);
const ServiceVersion ServiceVersion_MIN = RESERVED_0;
const ServiceVersion ServiceVersion_MAX = CURRENT_VERSION;
const int ServiceVersion_ARRAYSIZE = ServiceVersion_MAX + 1;
const ::google::protobuf::EnumDescriptor* ServiceVersion_descriptor();
inline const ::std::string& ServiceVersion_Name(ServiceVersion value) {
return ::google::protobuf::internal::NameOfEnum(
ServiceVersion_descriptor(), value);
}
inline bool ServiceVersion_Parse(
const ::std::string& name, ServiceVersion* value) {
return ::google::protobuf::internal::ParseNamedEnum<ServiceVersion>(
ServiceVersion_descriptor(), name, value);
}
enum RunModes {
RUN_MODE = 0,
CALIBRATION_MODE = 1,
CONFIGURATION_MODE = 2,
DEBUG_MODE = 3,
TUNING_MODE = 4,
RunModes_INT_MIN_SENTINEL_DO_NOT_USE_ = ::google::protobuf::kint32min,
RunModes_INT_MAX_SENTINEL_DO_NOT_USE_ = ::google::protobuf::kint32max
};
bool RunModes_IsValid(int value);
const RunModes RunModes_MIN = RUN_MODE;
const RunModes RunModes_MAX = TUNING_MODE;
const int RunModes_ARRAYSIZE = RunModes_MAX + 1;
const ::google::protobuf::EnumDescriptor* RunModes_descriptor();
inline const ::std::string& RunModes_Name(RunModes value) {
return ::google::protobuf::internal::NameOfEnum(
RunModes_descriptor(), value);
}
inline bool RunModes_Parse(
const ::std::string& name, RunModes* value) {
return ::google::protobuf::internal::ParseNamedEnum<RunModes>(
RunModes_descriptor(), name, value);
}
enum CalibrationItem {
UNSPECIFIED_CALIBRATION_ITEM = 0,
COGGING = 1,
MAGNETIC = 2,
MOTOR = 3,
POSITION_RANGE = 4,
CalibrationItem_INT_MIN_SENTINEL_DO_NOT_USE_ = ::google::protobuf::kint32min,
CalibrationItem_INT_MAX_SENTINEL_DO_NOT_USE_ = ::google::protobuf::kint32max
};
bool CalibrationItem_IsValid(int value);
const CalibrationItem CalibrationItem_MIN = UNSPECIFIED_CALIBRATION_ITEM;
const CalibrationItem CalibrationItem_MAX = POSITION_RANGE;
const int CalibrationItem_ARRAYSIZE = CalibrationItem_MAX + 1;
const ::google::protobuf::EnumDescriptor* CalibrationItem_descriptor();
inline const ::std::string& CalibrationItem_Name(CalibrationItem value) {
return ::google::protobuf::internal::NameOfEnum(
CalibrationItem_descriptor(), value);
}
inline bool CalibrationItem_Parse(
const ::std::string& name, CalibrationItem* value) {
return ::google::protobuf::internal::ParseNamedEnum<CalibrationItem>(
CalibrationItem_descriptor(), name, value);
}
enum CalibrationStatus {
UNSPECIFIED_CALIBRATION_STATUS = 0,
NOT_CALIBRATED = 1,
IN_PROGRESS = 2,
CALIBRATED = 3,
IN_FAULT = 4,
CalibrationStatus_INT_MIN_SENTINEL_DO_NOT_USE_ = ::google::protobuf::kint32min,
CalibrationStatus_INT_MAX_SENTINEL_DO_NOT_USE_ = ::google::protobuf::kint32max
};
bool CalibrationStatus_IsValid(int value);
const CalibrationStatus CalibrationStatus_MIN = UNSPECIFIED_CALIBRATION_STATUS;
const CalibrationStatus CalibrationStatus_MAX = IN_FAULT;
const int CalibrationStatus_ARRAYSIZE = CalibrationStatus_MAX + 1;
const ::google::protobuf::EnumDescriptor* CalibrationStatus_descriptor();
inline const ::std::string& CalibrationStatus_Name(CalibrationStatus value) {
return ::google::protobuf::internal::NameOfEnum(
CalibrationStatus_descriptor(), value);
}
inline bool CalibrationStatus_Parse(
const ::std::string& name, CalibrationStatus* value) {
return ::google::protobuf::internal::ParseNamedEnum<CalibrationStatus>(
CalibrationStatus_descriptor(), name, value);
}
enum SafetyLimitType {
UNSPECIFIED_SAFETY_LIMIT_TYPE = 0,
MINIMAL_LIMIT = 1,
MAXIMAL_LIMIT = 2,
EVENT_LIMIT = 3,
SafetyLimitType_INT_MIN_SENTINEL_DO_NOT_USE_ = ::google::protobuf::kint32min,
SafetyLimitType_INT_MAX_SENTINEL_DO_NOT_USE_ = ::google::protobuf::kint32max
};
bool SafetyLimitType_IsValid(int value);
const SafetyLimitType SafetyLimitType_MIN = UNSPECIFIED_SAFETY_LIMIT_TYPE;
const SafetyLimitType SafetyLimitType_MAX = EVENT_LIMIT;
const int SafetyLimitType_ARRAYSIZE = SafetyLimitType_MAX + 1;
const ::google::protobuf::EnumDescriptor* SafetyLimitType_descriptor();
inline const ::std::string& SafetyLimitType_Name(SafetyLimitType value) {
return ::google::protobuf::internal::NameOfEnum(
SafetyLimitType_descriptor(), value);
}
inline bool SafetyLimitType_Parse(
const ::std::string& name, SafetyLimitType* value) {
return ::google::protobuf::internal::ParseNamedEnum<SafetyLimitType>(
SafetyLimitType_descriptor(), name, value);
}
enum CapSenseMode {
RESERVED = 0,
INACTIVE = 1,
ACTIVE_AUTO_THRESHOLD = 2,
ACTIVE_NOISE_ATT = 4,
ACTIVE_NORMAL = 5,
CONFIGURATION = 6,
CapSenseMode_INT_MIN_SENTINEL_DO_NOT_USE_ = ::google::protobuf::kint32min,
CapSenseMode_INT_MAX_SENTINEL_DO_NOT_USE_ = ::google::protobuf::kint32max
};
bool CapSenseMode_IsValid(int value);
const CapSenseMode CapSenseMode_MIN = RESERVED;
const CapSenseMode CapSenseMode_MAX = CONFIGURATION;
const int CapSenseMode_ARRAYSIZE = CapSenseMode_MAX + 1;
const ::google::protobuf::EnumDescriptor* CapSenseMode_descriptor();
inline const ::std::string& CapSenseMode_Name(CapSenseMode value) {
return ::google::protobuf::internal::NameOfEnum(
CapSenseMode_descriptor(), value);
}
inline bool CapSenseMode_Parse(
const ::std::string& name, CapSenseMode* value) {
return ::google::protobuf::internal::ParseNamedEnum<CapSenseMode>(
CapSenseMode_descriptor(), name, value);
}
// ===================================================================
class DeviceType : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.DeviceConfig.DeviceType) */ {
public:
DeviceType();
virtual ~DeviceType();
DeviceType(const DeviceType& from);
inline DeviceType& operator=(const DeviceType& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
DeviceType(DeviceType&& from) noexcept
: DeviceType() {
*this = ::std::move(from);
}
inline DeviceType& operator=(DeviceType&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
static const ::google::protobuf::Descriptor* descriptor();
static const DeviceType& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const DeviceType* internal_default_instance() {
return reinterpret_cast<const DeviceType*>(
&_DeviceType_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
0;
void Swap(DeviceType* other);
friend void swap(DeviceType& a, DeviceType& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline DeviceType* New() const PROTOBUF_FINAL { return New(NULL); }
DeviceType* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const DeviceType& from);
void MergeFrom(const DeviceType& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(DeviceType* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// .Kinova.Api.Common.DeviceTypes device_type = 1;
void clear_device_type();
static const int kDeviceTypeFieldNumber = 1;
::Kinova::Api::Common::DeviceTypes device_type() const;
void set_device_type(::Kinova::Api::Common::DeviceTypes value);
// @@protoc_insertion_point(class_scope:Kinova.Api.DeviceConfig.DeviceType)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
int device_type_;
mutable int _cached_size_;
friend struct ::protobuf_DeviceConfig_2eproto::TableStruct;
friend void ::protobuf_DeviceConfig_2eproto::InitDefaultsDeviceTypeImpl();
};
// -------------------------------------------------------------------
class RunMode : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.DeviceConfig.RunMode) */ {
public:
RunMode();
virtual ~RunMode();
RunMode(const RunMode& from);
inline RunMode& operator=(const RunMode& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
RunMode(RunMode&& from) noexcept
: RunMode() {
*this = ::std::move(from);
}
inline RunMode& operator=(RunMode&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
static const ::google::protobuf::Descriptor* descriptor();
static const RunMode& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const RunMode* internal_default_instance() {
return reinterpret_cast<const RunMode*>(
&_RunMode_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
1;
void Swap(RunMode* other);
friend void swap(RunMode& a, RunMode& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline RunMode* New() const PROTOBUF_FINAL { return New(NULL); }
RunMode* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const RunMode& from);
void MergeFrom(const RunMode& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(RunMode* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// .Kinova.Api.DeviceConfig.RunModes run_mode = 1;
void clear_run_mode();
static const int kRunModeFieldNumber = 1;
::Kinova::Api::DeviceConfig::RunModes run_mode() const;
void set_run_mode(::Kinova::Api::DeviceConfig::RunModes value);
// @@protoc_insertion_point(class_scope:Kinova.Api.DeviceConfig.RunMode)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
int run_mode_;
mutable int _cached_size_;
friend struct ::protobuf_DeviceConfig_2eproto::TableStruct;
friend void ::protobuf_DeviceConfig_2eproto::InitDefaultsRunModeImpl();
};
// -------------------------------------------------------------------
class FirmwareVersion : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.DeviceConfig.FirmwareVersion) */ {
public:
FirmwareVersion();
virtual ~FirmwareVersion();
FirmwareVersion(const FirmwareVersion& from);
inline FirmwareVersion& operator=(const FirmwareVersion& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
FirmwareVersion(FirmwareVersion&& from) noexcept
: FirmwareVersion() {
*this = ::std::move(from);
}
inline FirmwareVersion& operator=(FirmwareVersion&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
static const ::google::protobuf::Descriptor* descriptor();
static const FirmwareVersion& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const FirmwareVersion* internal_default_instance() {
return reinterpret_cast<const FirmwareVersion*>(
&_FirmwareVersion_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
2;
void Swap(FirmwareVersion* other);
friend void swap(FirmwareVersion& a, FirmwareVersion& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline FirmwareVersion* New() const PROTOBUF_FINAL { return New(NULL); }
FirmwareVersion* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const FirmwareVersion& from);
void MergeFrom(const FirmwareVersion& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(FirmwareVersion* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// uint32 firmware_version = 1;
void clear_firmware_version();
static const int kFirmwareVersionFieldNumber = 1;
::google::protobuf::uint32 firmware_version() const;
void set_firmware_version(::google::protobuf::uint32 value);
// @@protoc_insertion_point(class_scope:Kinova.Api.DeviceConfig.FirmwareVersion)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::uint32 firmware_version_;
mutable int _cached_size_;
friend struct ::protobuf_DeviceConfig_2eproto::TableStruct;
friend void ::protobuf_DeviceConfig_2eproto::InitDefaultsFirmwareVersionImpl();
};
// -------------------------------------------------------------------
class BootloaderVersion : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.DeviceConfig.BootloaderVersion) */ {
public:
BootloaderVersion();
virtual ~BootloaderVersion();
BootloaderVersion(const BootloaderVersion& from);
inline BootloaderVersion& operator=(const BootloaderVersion& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
BootloaderVersion(BootloaderVersion&& from) noexcept
: BootloaderVersion() {
*this = ::std::move(from);
}
inline BootloaderVersion& operator=(BootloaderVersion&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
static const ::google::protobuf::Descriptor* descriptor();
static const BootloaderVersion& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const BootloaderVersion* internal_default_instance() {
return reinterpret_cast<const BootloaderVersion*>(
&_BootloaderVersion_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
3;
void Swap(BootloaderVersion* other);
friend void swap(BootloaderVersion& a, BootloaderVersion& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline BootloaderVersion* New() const PROTOBUF_FINAL { return New(NULL); }
BootloaderVersion* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const BootloaderVersion& from);
void MergeFrom(const BootloaderVersion& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(BootloaderVersion* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// uint32 bootloader_version = 1;
void clear_bootloader_version();
static const int kBootloaderVersionFieldNumber = 1;
::google::protobuf::uint32 bootloader_version() const;
void set_bootloader_version(::google::protobuf::uint32 value);
// @@protoc_insertion_point(class_scope:Kinova.Api.DeviceConfig.BootloaderVersion)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::uint32 bootloader_version_;
mutable int _cached_size_;
friend struct ::protobuf_DeviceConfig_2eproto::TableStruct;
friend void ::protobuf_DeviceConfig_2eproto::InitDefaultsBootloaderVersionImpl();
};
// -------------------------------------------------------------------
class ModelNumber : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.DeviceConfig.ModelNumber) */ {
public:
ModelNumber();
virtual ~ModelNumber();
ModelNumber(const ModelNumber& from);
inline ModelNumber& operator=(const ModelNumber& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
ModelNumber(ModelNumber&& from) noexcept
: ModelNumber() {
*this = ::std::move(from);
}
inline ModelNumber& operator=(ModelNumber&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
static const ::google::protobuf::Descriptor* descriptor();
static const ModelNumber& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const ModelNumber* internal_default_instance() {
return reinterpret_cast<const ModelNumber*>(
&_ModelNumber_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
4;
void Swap(ModelNumber* other);
friend void swap(ModelNumber& a, ModelNumber& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline ModelNumber* New() const PROTOBUF_FINAL { return New(NULL); }
ModelNumber* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const ModelNumber& from);
void MergeFrom(const ModelNumber& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(ModelNumber* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// string model_number = 1;
void clear_model_number();
static const int kModelNumberFieldNumber = 1;
const ::std::string& model_number() const;
void set_model_number(const ::std::string& value);
#if LANG_CXX11
void set_model_number(::std::string&& value);
#endif
void set_model_number(const char* value);
void set_model_number(const char* value, size_t size);
::std::string* mutable_model_number();
::std::string* release_model_number();
void set_allocated_model_number(::std::string* model_number);
// @@protoc_insertion_point(class_scope:Kinova.Api.DeviceConfig.ModelNumber)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::internal::ArenaStringPtr model_number_;
mutable int _cached_size_;
friend struct ::protobuf_DeviceConfig_2eproto::TableStruct;
friend void ::protobuf_DeviceConfig_2eproto::InitDefaultsModelNumberImpl();
};
// -------------------------------------------------------------------
class PartNumber : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.DeviceConfig.PartNumber) */ {
public:
PartNumber();
virtual ~PartNumber();
PartNumber(const PartNumber& from);
inline PartNumber& operator=(const PartNumber& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
PartNumber(PartNumber&& from) noexcept
: PartNumber() {
*this = ::std::move(from);
}
inline PartNumber& operator=(PartNumber&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
static const ::google::protobuf::Descriptor* descriptor();
static const PartNumber& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const PartNumber* internal_default_instance() {
return reinterpret_cast<const PartNumber*>(
&_PartNumber_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
5;
void Swap(PartNumber* other);
friend void swap(PartNumber& a, PartNumber& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline PartNumber* New() const PROTOBUF_FINAL { return New(NULL); }
PartNumber* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const PartNumber& from);
void MergeFrom(const PartNumber& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(PartNumber* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// string part_number = 1;
void clear_part_number();
static const int kPartNumberFieldNumber = 1;
const ::std::string& part_number() const;
void set_part_number(const ::std::string& value);
#if LANG_CXX11
void set_part_number(::std::string&& value);
#endif
void set_part_number(const char* value);
void set_part_number(const char* value, size_t size);
::std::string* mutable_part_number();
::std::string* release_part_number();
void set_allocated_part_number(::std::string* part_number);
// @@protoc_insertion_point(class_scope:Kinova.Api.DeviceConfig.PartNumber)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::internal::ArenaStringPtr part_number_;
mutable int _cached_size_;
friend struct ::protobuf_DeviceConfig_2eproto::TableStruct;
friend void ::protobuf_DeviceConfig_2eproto::InitDefaultsPartNumberImpl();
};
// -------------------------------------------------------------------
class SerialNumber : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.DeviceConfig.SerialNumber) */ {
public:
SerialNumber();
virtual ~SerialNumber();
SerialNumber(const SerialNumber& from);
inline SerialNumber& operator=(const SerialNumber& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
SerialNumber(SerialNumber&& from) noexcept
: SerialNumber() {
*this = ::std::move(from);
}
inline SerialNumber& operator=(SerialNumber&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
static const ::google::protobuf::Descriptor* descriptor();
static const SerialNumber& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const SerialNumber* internal_default_instance() {
return reinterpret_cast<const SerialNumber*>(
&_SerialNumber_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
6;
void Swap(SerialNumber* other);
friend void swap(SerialNumber& a, SerialNumber& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline SerialNumber* New() const PROTOBUF_FINAL { return New(NULL); }
SerialNumber* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const SerialNumber& from);
void MergeFrom(const SerialNumber& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(SerialNumber* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// string serial_number = 1;
void clear_serial_number();
static const int kSerialNumberFieldNumber = 1;
const ::std::string& serial_number() const;
void set_serial_number(const ::std::string& value);
#if LANG_CXX11
void set_serial_number(::std::string&& value);
#endif
void set_serial_number(const char* value);
void set_serial_number(const char* value, size_t size);
::std::string* mutable_serial_number();
::std::string* release_serial_number();
void set_allocated_serial_number(::std::string* serial_number);
// @@protoc_insertion_point(class_scope:Kinova.Api.DeviceConfig.SerialNumber)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::internal::ArenaStringPtr serial_number_;
mutable int _cached_size_;
friend struct ::protobuf_DeviceConfig_2eproto::TableStruct;
friend void ::protobuf_DeviceConfig_2eproto::InitDefaultsSerialNumberImpl();
};
// -------------------------------------------------------------------
class MACAddress : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.DeviceConfig.MACAddress) */ {
public:
MACAddress();
virtual ~MACAddress();
MACAddress(const MACAddress& from);
inline MACAddress& operator=(const MACAddress& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
MACAddress(MACAddress&& from) noexcept
: MACAddress() {
*this = ::std::move(from);
}
inline MACAddress& operator=(MACAddress&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
static const ::google::protobuf::Descriptor* descriptor();
static const MACAddress& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const MACAddress* internal_default_instance() {
return reinterpret_cast<const MACAddress*>(
&_MACAddress_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
7;
void Swap(MACAddress* other);
friend void swap(MACAddress& a, MACAddress& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline MACAddress* New() const PROTOBUF_FINAL { return New(NULL); }
MACAddress* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const MACAddress& from);
void MergeFrom(const MACAddress& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(MACAddress* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// bytes mac_address = 1;
void clear_mac_address();
static const int kMacAddressFieldNumber = 1;
const ::std::string& mac_address() const;
void set_mac_address(const ::std::string& value);
#if LANG_CXX11
void set_mac_address(::std::string&& value);
#endif
void set_mac_address(const char* value);
void set_mac_address(const void* value, size_t size);
::std::string* mutable_mac_address();
::std::string* release_mac_address();
void set_allocated_mac_address(::std::string* mac_address);
// @@protoc_insertion_point(class_scope:Kinova.Api.DeviceConfig.MACAddress)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::internal::ArenaStringPtr mac_address_;
mutable int _cached_size_;
friend struct ::protobuf_DeviceConfig_2eproto::TableStruct;
friend void ::protobuf_DeviceConfig_2eproto::InitDefaultsMACAddressImpl();
};
// -------------------------------------------------------------------
class IPv4Settings : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.DeviceConfig.IPv4Settings) */ {
public:
IPv4Settings();
virtual ~IPv4Settings();
IPv4Settings(const IPv4Settings& from);
inline IPv4Settings& operator=(const IPv4Settings& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
IPv4Settings(IPv4Settings&& from) noexcept
: IPv4Settings() {
*this = ::std::move(from);
}
inline IPv4Settings& operator=(IPv4Settings&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
static const ::google::protobuf::Descriptor* descriptor();
static const IPv4Settings& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const IPv4Settings* internal_default_instance() {
return reinterpret_cast<const IPv4Settings*>(
&_IPv4Settings_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
8;
void Swap(IPv4Settings* other);
friend void swap(IPv4Settings& a, IPv4Settings& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline IPv4Settings* New() const PROTOBUF_FINAL { return New(NULL); }
IPv4Settings* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const IPv4Settings& from);
void MergeFrom(const IPv4Settings& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(IPv4Settings* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// uint32 ipv4_address = 1;
void clear_ipv4_address();
static const int kIpv4AddressFieldNumber = 1;
::google::protobuf::uint32 ipv4_address() const;
void set_ipv4_address(::google::protobuf::uint32 value);
// uint32 ipv4_subnet_mask = 2;
void clear_ipv4_subnet_mask();
static const int kIpv4SubnetMaskFieldNumber = 2;
::google::protobuf::uint32 ipv4_subnet_mask() const;
void set_ipv4_subnet_mask(::google::protobuf::uint32 value);
// uint32 ipv4_default_gateway = 3;
void clear_ipv4_default_gateway();
static const int kIpv4DefaultGatewayFieldNumber = 3;
::google::protobuf::uint32 ipv4_default_gateway() const;
void set_ipv4_default_gateway(::google::protobuf::uint32 value);
// @@protoc_insertion_point(class_scope:Kinova.Api.DeviceConfig.IPv4Settings)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::uint32 ipv4_address_;
::google::protobuf::uint32 ipv4_subnet_mask_;
::google::protobuf::uint32 ipv4_default_gateway_;
mutable int _cached_size_;
friend struct ::protobuf_DeviceConfig_2eproto::TableStruct;
friend void ::protobuf_DeviceConfig_2eproto::InitDefaultsIPv4SettingsImpl();
};
// -------------------------------------------------------------------
class PartNumberRevision : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.DeviceConfig.PartNumberRevision) */ {
public:
PartNumberRevision();
virtual ~PartNumberRevision();
PartNumberRevision(const PartNumberRevision& from);
inline PartNumberRevision& operator=(const PartNumberRevision& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
PartNumberRevision(PartNumberRevision&& from) noexcept
: PartNumberRevision() {
*this = ::std::move(from);
}
inline PartNumberRevision& operator=(PartNumberRevision&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
static const ::google::protobuf::Descriptor* descriptor();
static const PartNumberRevision& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const PartNumberRevision* internal_default_instance() {
return reinterpret_cast<const PartNumberRevision*>(
&_PartNumberRevision_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
9;
void Swap(PartNumberRevision* other);
friend void swap(PartNumberRevision& a, PartNumberRevision& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline PartNumberRevision* New() const PROTOBUF_FINAL { return New(NULL); }
PartNumberRevision* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const PartNumberRevision& from);
void MergeFrom(const PartNumberRevision& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(PartNumberRevision* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// string part_number_revision = 1;
void clear_part_number_revision();
static const int kPartNumberRevisionFieldNumber = 1;
const ::std::string& part_number_revision() const;
void set_part_number_revision(const ::std::string& value);
#if LANG_CXX11
void set_part_number_revision(::std::string&& value);
#endif
void set_part_number_revision(const char* value);
void set_part_number_revision(const char* value, size_t size);
::std::string* mutable_part_number_revision();
::std::string* release_part_number_revision();
void set_allocated_part_number_revision(::std::string* part_number_revision);
// @@protoc_insertion_point(class_scope:Kinova.Api.DeviceConfig.PartNumberRevision)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::internal::ArenaStringPtr part_number_revision_;
mutable int _cached_size_;
friend struct ::protobuf_DeviceConfig_2eproto::TableStruct;
friend void ::protobuf_DeviceConfig_2eproto::InitDefaultsPartNumberRevisionImpl();
};
// -------------------------------------------------------------------
class PowerOnSelfTestResult : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.DeviceConfig.PowerOnSelfTestResult) */ {
public:
PowerOnSelfTestResult();
virtual ~PowerOnSelfTestResult();
PowerOnSelfTestResult(const PowerOnSelfTestResult& from);
inline PowerOnSelfTestResult& operator=(const PowerOnSelfTestResult& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
PowerOnSelfTestResult(PowerOnSelfTestResult&& from) noexcept
: PowerOnSelfTestResult() {
*this = ::std::move(from);
}
inline PowerOnSelfTestResult& operator=(PowerOnSelfTestResult&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
static const ::google::protobuf::Descriptor* descriptor();
static const PowerOnSelfTestResult& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const PowerOnSelfTestResult* internal_default_instance() {
return reinterpret_cast<const PowerOnSelfTestResult*>(
&_PowerOnSelfTestResult_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
10;
void Swap(PowerOnSelfTestResult* other);
friend void swap(PowerOnSelfTestResult& a, PowerOnSelfTestResult& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline PowerOnSelfTestResult* New() const PROTOBUF_FINAL { return New(NULL); }
PowerOnSelfTestResult* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const PowerOnSelfTestResult& from);
void MergeFrom(const PowerOnSelfTestResult& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(PowerOnSelfTestResult* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// uint32 power_on_self_test_result = 1;
void clear_power_on_self_test_result();
static const int kPowerOnSelfTestResultFieldNumber = 1;
::google::protobuf::uint32 power_on_self_test_result() const;
void set_power_on_self_test_result(::google::protobuf::uint32 value);
// @@protoc_insertion_point(class_scope:Kinova.Api.DeviceConfig.PowerOnSelfTestResult)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::uint32 power_on_self_test_result_;
mutable int _cached_size_;
friend struct ::protobuf_DeviceConfig_2eproto::TableStruct;
friend void ::protobuf_DeviceConfig_2eproto::InitDefaultsPowerOnSelfTestResultImpl();
};
// -------------------------------------------------------------------
class RebootRqst : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.DeviceConfig.RebootRqst) */ {
public:
RebootRqst();
virtual ~RebootRqst();
RebootRqst(const RebootRqst& from);
inline RebootRqst& operator=(const RebootRqst& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
RebootRqst(RebootRqst&& from) noexcept
: RebootRqst() {
*this = ::std::move(from);
}
inline RebootRqst& operator=(RebootRqst&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
static const ::google::protobuf::Descriptor* descriptor();
static const RebootRqst& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const RebootRqst* internal_default_instance() {
return reinterpret_cast<const RebootRqst*>(
&_RebootRqst_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
11;
void Swap(RebootRqst* other);
friend void swap(RebootRqst& a, RebootRqst& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline RebootRqst* New() const PROTOBUF_FINAL { return New(NULL); }
RebootRqst* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const RebootRqst& from);
void MergeFrom(const RebootRqst& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(RebootRqst* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// uint32 delay = 1;
void clear_delay();
static const int kDelayFieldNumber = 1;
::google::protobuf::uint32 delay() const;
void set_delay(::google::protobuf::uint32 value);
// @@protoc_insertion_point(class_scope:Kinova.Api.DeviceConfig.RebootRqst)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::uint32 delay_;
mutable int _cached_size_;
friend struct ::protobuf_DeviceConfig_2eproto::TableStruct;
friend void ::protobuf_DeviceConfig_2eproto::InitDefaultsRebootRqstImpl();
};
// -------------------------------------------------------------------
class SafetyInformation : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.DeviceConfig.SafetyInformation) */ {
public:
SafetyInformation();
virtual ~SafetyInformation();
SafetyInformation(const SafetyInformation& from);
inline SafetyInformation& operator=(const SafetyInformation& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
SafetyInformation(SafetyInformation&& from) noexcept
: SafetyInformation() {
*this = ::std::move(from);
}
inline SafetyInformation& operator=(SafetyInformation&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
static const ::google::protobuf::Descriptor* descriptor();
static const SafetyInformation& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const SafetyInformation* internal_default_instance() {
return reinterpret_cast<const SafetyInformation*>(
&_SafetyInformation_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
12;
void Swap(SafetyInformation* other);
friend void swap(SafetyInformation& a, SafetyInformation& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline SafetyInformation* New() const PROTOBUF_FINAL { return New(NULL); }
SafetyInformation* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const SafetyInformation& from);
void MergeFrom(const SafetyInformation& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(SafetyInformation* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// .Kinova.Api.Common.SafetyHandle handle = 1;
bool has_handle() const;
void clear_handle();
static const int kHandleFieldNumber = 1;
const ::Kinova::Api::Common::SafetyHandle& handle() const;
::Kinova::Api::Common::SafetyHandle* release_handle();
::Kinova::Api::Common::SafetyHandle* mutable_handle();
void set_allocated_handle(::Kinova::Api::Common::SafetyHandle* handle);
// bool can_change_safety_state = 2;
void clear_can_change_safety_state();
static const int kCanChangeSafetyStateFieldNumber = 2;
bool can_change_safety_state() const;
void set_can_change_safety_state(bool value);
// bool has_warning_threshold = 3;
void clear_has_warning_threshold();
static const int kHasWarningThresholdFieldNumber = 3;
bool has_warning_threshold() const;
void set_has_warning_threshold(bool value);
// bool has_error_threshold = 4;
void clear_has_error_threshold();
static const int kHasErrorThresholdFieldNumber = 4;
bool has_error_threshold() const;
void set_has_error_threshold(bool value);
// .Kinova.Api.DeviceConfig.SafetyLimitType limit_type = 5;
void clear_limit_type();
static const int kLimitTypeFieldNumber = 5;
::Kinova::Api::DeviceConfig::SafetyLimitType limit_type() const;
void set_limit_type(::Kinova::Api::DeviceConfig::SafetyLimitType value);
// float default_warning_threshold = 6;
void clear_default_warning_threshold();
static const int kDefaultWarningThresholdFieldNumber = 6;
float default_warning_threshold() const;
void set_default_warning_threshold(float value);
// float default_error_threshold = 7;
void clear_default_error_threshold();
static const int kDefaultErrorThresholdFieldNumber = 7;
float default_error_threshold() const;
void set_default_error_threshold(float value);
// float upper_hard_limit = 8;
void clear_upper_hard_limit();
static const int kUpperHardLimitFieldNumber = 8;
float upper_hard_limit() const;
void set_upper_hard_limit(float value);
// float lower_hard_limit = 9;
void clear_lower_hard_limit();
static const int kLowerHardLimitFieldNumber = 9;
float lower_hard_limit() const;
void set_lower_hard_limit(float value);
// .Kinova.Api.Common.SafetyStatusValue status = 11;
void clear_status();
static const int kStatusFieldNumber = 11;
::Kinova::Api::Common::SafetyStatusValue status() const;
void set_status(::Kinova::Api::Common::SafetyStatusValue value);
// .Kinova.Api.Common.Unit unit = 12;
void clear_unit();
static const int kUnitFieldNumber = 12;
::Kinova::Api::Common::Unit unit() const;
void set_unit(::Kinova::Api::Common::Unit value);
// @@protoc_insertion_point(class_scope:Kinova.Api.DeviceConfig.SafetyInformation)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::Kinova::Api::Common::SafetyHandle* handle_;
bool can_change_safety_state_;
bool has_warning_threshold_;
bool has_error_threshold_;
int limit_type_;
float default_warning_threshold_;
float default_error_threshold_;
float upper_hard_limit_;
float lower_hard_limit_;
int status_;
int unit_;
mutable int _cached_size_;
friend struct ::protobuf_DeviceConfig_2eproto::TableStruct;
friend void ::protobuf_DeviceConfig_2eproto::InitDefaultsSafetyInformationImpl();
};
// -------------------------------------------------------------------
class SafetyInformationList : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.DeviceConfig.SafetyInformationList) */ {
public:
SafetyInformationList();
virtual ~SafetyInformationList();
SafetyInformationList(const SafetyInformationList& from);
inline SafetyInformationList& operator=(const SafetyInformationList& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
SafetyInformationList(SafetyInformationList&& from) noexcept
: SafetyInformationList() {
*this = ::std::move(from);
}
inline SafetyInformationList& operator=(SafetyInformationList&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
static const ::google::protobuf::Descriptor* descriptor();
static const SafetyInformationList& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const SafetyInformationList* internal_default_instance() {
return reinterpret_cast<const SafetyInformationList*>(
&_SafetyInformationList_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
13;
void Swap(SafetyInformationList* other);
friend void swap(SafetyInformationList& a, SafetyInformationList& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline SafetyInformationList* New() const PROTOBUF_FINAL { return New(NULL); }
SafetyInformationList* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const SafetyInformationList& from);
void MergeFrom(const SafetyInformationList& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(SafetyInformationList* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// repeated .Kinova.Api.DeviceConfig.SafetyInformation information = 1;
int information_size() const;
void clear_information();
static const int kInformationFieldNumber = 1;
const ::Kinova::Api::DeviceConfig::SafetyInformation& information(int index) const;
::Kinova::Api::DeviceConfig::SafetyInformation* mutable_information(int index);
::Kinova::Api::DeviceConfig::SafetyInformation* add_information();
::google::protobuf::RepeatedPtrField< ::Kinova::Api::DeviceConfig::SafetyInformation >*
mutable_information();
const ::google::protobuf::RepeatedPtrField< ::Kinova::Api::DeviceConfig::SafetyInformation >&
information() const;
// @@protoc_insertion_point(class_scope:Kinova.Api.DeviceConfig.SafetyInformationList)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::RepeatedPtrField< ::Kinova::Api::DeviceConfig::SafetyInformation > information_;
mutable int _cached_size_;
friend struct ::protobuf_DeviceConfig_2eproto::TableStruct;
friend void ::protobuf_DeviceConfig_2eproto::InitDefaultsSafetyInformationListImpl();
};
// -------------------------------------------------------------------
class SafetyEnable : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.DeviceConfig.SafetyEnable) */ {
public:
SafetyEnable();
virtual ~SafetyEnable();
SafetyEnable(const SafetyEnable& from);
inline SafetyEnable& operator=(const SafetyEnable& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
SafetyEnable(SafetyEnable&& from) noexcept
: SafetyEnable() {
*this = ::std::move(from);
}
inline SafetyEnable& operator=(SafetyEnable&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
static const ::google::protobuf::Descriptor* descriptor();
static const SafetyEnable& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const SafetyEnable* internal_default_instance() {
return reinterpret_cast<const SafetyEnable*>(
&_SafetyEnable_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
14;
void Swap(SafetyEnable* other);
friend void swap(SafetyEnable& a, SafetyEnable& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline SafetyEnable* New() const PROTOBUF_FINAL { return New(NULL); }
SafetyEnable* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const SafetyEnable& from);
void MergeFrom(const SafetyEnable& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(SafetyEnable* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// .Kinova.Api.Common.SafetyHandle handle = 1;
bool has_handle() const;
void clear_handle();
static const int kHandleFieldNumber = 1;
const ::Kinova::Api::Common::SafetyHandle& handle() const;
::Kinova::Api::Common::SafetyHandle* release_handle();
::Kinova::Api::Common::SafetyHandle* mutable_handle();
void set_allocated_handle(::Kinova::Api::Common::SafetyHandle* handle);
// bool enable = 2;
void clear_enable();
static const int kEnableFieldNumber = 2;
bool enable() const;
void set_enable(bool value);
// @@protoc_insertion_point(class_scope:Kinova.Api.DeviceConfig.SafetyEnable)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::Kinova::Api::Common::SafetyHandle* handle_;
bool enable_;
mutable int _cached_size_;
friend struct ::protobuf_DeviceConfig_2eproto::TableStruct;
friend void ::protobuf_DeviceConfig_2eproto::InitDefaultsSafetyEnableImpl();
};
// -------------------------------------------------------------------
class SafetyThreshold : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.DeviceConfig.SafetyThreshold) */ {
public:
SafetyThreshold();
virtual ~SafetyThreshold();
SafetyThreshold(const SafetyThreshold& from);
inline SafetyThreshold& operator=(const SafetyThreshold& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
SafetyThreshold(SafetyThreshold&& from) noexcept
: SafetyThreshold() {
*this = ::std::move(from);
}
inline SafetyThreshold& operator=(SafetyThreshold&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
static const ::google::protobuf::Descriptor* descriptor();
static const SafetyThreshold& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const SafetyThreshold* internal_default_instance() {
return reinterpret_cast<const SafetyThreshold*>(
&_SafetyThreshold_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
15;
void Swap(SafetyThreshold* other);
friend void swap(SafetyThreshold& a, SafetyThreshold& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline SafetyThreshold* New() const PROTOBUF_FINAL { return New(NULL); }
SafetyThreshold* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const SafetyThreshold& from);
void MergeFrom(const SafetyThreshold& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(SafetyThreshold* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// .Kinova.Api.Common.SafetyHandle handle = 1;
bool has_handle() const;
void clear_handle();
static const int kHandleFieldNumber = 1;
const ::Kinova::Api::Common::SafetyHandle& handle() const;
::Kinova::Api::Common::SafetyHandle* release_handle();
::Kinova::Api::Common::SafetyHandle* mutable_handle();
void set_allocated_handle(::Kinova::Api::Common::SafetyHandle* handle);
// float value = 2;
void clear_value();
static const int kValueFieldNumber = 2;
float value() const;
void set_value(float value);
// @@protoc_insertion_point(class_scope:Kinova.Api.DeviceConfig.SafetyThreshold)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::Kinova::Api::Common::SafetyHandle* handle_;
float value_;
mutable int _cached_size_;
friend struct ::protobuf_DeviceConfig_2eproto::TableStruct;
friend void ::protobuf_DeviceConfig_2eproto::InitDefaultsSafetyThresholdImpl();
};
// -------------------------------------------------------------------
class SafetyConfiguration : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.DeviceConfig.SafetyConfiguration) */ {
public:
SafetyConfiguration();
virtual ~SafetyConfiguration();
SafetyConfiguration(const SafetyConfiguration& from);
inline SafetyConfiguration& operator=(const SafetyConfiguration& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
SafetyConfiguration(SafetyConfiguration&& from) noexcept
: SafetyConfiguration() {
*this = ::std::move(from);
}
inline SafetyConfiguration& operator=(SafetyConfiguration&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
static const ::google::protobuf::Descriptor* descriptor();
static const SafetyConfiguration& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const SafetyConfiguration* internal_default_instance() {
return reinterpret_cast<const SafetyConfiguration*>(
&_SafetyConfiguration_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
16;
void Swap(SafetyConfiguration* other);
friend void swap(SafetyConfiguration& a, SafetyConfiguration& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline SafetyConfiguration* New() const PROTOBUF_FINAL { return New(NULL); }
SafetyConfiguration* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const SafetyConfiguration& from);
void MergeFrom(const SafetyConfiguration& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(SafetyConfiguration* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// .Kinova.Api.Common.SafetyHandle handle = 1;
bool has_handle() const;
void clear_handle();
static const int kHandleFieldNumber = 1;
const ::Kinova::Api::Common::SafetyHandle& handle() const;
::Kinova::Api::Common::SafetyHandle* release_handle();
::Kinova::Api::Common::SafetyHandle* mutable_handle();
void set_allocated_handle(::Kinova::Api::Common::SafetyHandle* handle);
// .Kinova.Api.DeviceConfig.SafetyEnable enable = 4;
bool has_enable() const;
void clear_enable();
static const int kEnableFieldNumber = 4;
const ::Kinova::Api::DeviceConfig::SafetyEnable& enable() const;
::Kinova::Api::DeviceConfig::SafetyEnable* release_enable();
::Kinova::Api::DeviceConfig::SafetyEnable* mutable_enable();
void set_allocated_enable(::Kinova::Api::DeviceConfig::SafetyEnable* enable);
// float error_threshold = 2;
void clear_error_threshold();
static const int kErrorThresholdFieldNumber = 2;
float error_threshold() const;
void set_error_threshold(float value);
// float warning_threshold = 3;
void clear_warning_threshold();
static const int kWarningThresholdFieldNumber = 3;
float warning_threshold() const;
void set_warning_threshold(float value);
// @@protoc_insertion_point(class_scope:Kinova.Api.DeviceConfig.SafetyConfiguration)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::Kinova::Api::Common::SafetyHandle* handle_;
::Kinova::Api::DeviceConfig::SafetyEnable* enable_;
float error_threshold_;
float warning_threshold_;
mutable int _cached_size_;
friend struct ::protobuf_DeviceConfig_2eproto::TableStruct;
friend void ::protobuf_DeviceConfig_2eproto::InitDefaultsSafetyConfigurationImpl();
};
// -------------------------------------------------------------------
class SafetyConfigurationList : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.DeviceConfig.SafetyConfigurationList) */ {
public:
SafetyConfigurationList();
virtual ~SafetyConfigurationList();
SafetyConfigurationList(const SafetyConfigurationList& from);
inline SafetyConfigurationList& operator=(const SafetyConfigurationList& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
SafetyConfigurationList(SafetyConfigurationList&& from) noexcept
: SafetyConfigurationList() {
*this = ::std::move(from);
}
inline SafetyConfigurationList& operator=(SafetyConfigurationList&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
static const ::google::protobuf::Descriptor* descriptor();
static const SafetyConfigurationList& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const SafetyConfigurationList* internal_default_instance() {
return reinterpret_cast<const SafetyConfigurationList*>(
&_SafetyConfigurationList_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
17;
void Swap(SafetyConfigurationList* other);
friend void swap(SafetyConfigurationList& a, SafetyConfigurationList& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline SafetyConfigurationList* New() const PROTOBUF_FINAL { return New(NULL); }
SafetyConfigurationList* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const SafetyConfigurationList& from);
void MergeFrom(const SafetyConfigurationList& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(SafetyConfigurationList* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// repeated .Kinova.Api.DeviceConfig.SafetyConfiguration configuration = 1;
int configuration_size() const;
void clear_configuration();
static const int kConfigurationFieldNumber = 1;
const ::Kinova::Api::DeviceConfig::SafetyConfiguration& configuration(int index) const;
::Kinova::Api::DeviceConfig::SafetyConfiguration* mutable_configuration(int index);
::Kinova::Api::DeviceConfig::SafetyConfiguration* add_configuration();
::google::protobuf::RepeatedPtrField< ::Kinova::Api::DeviceConfig::SafetyConfiguration >*
mutable_configuration();
const ::google::protobuf::RepeatedPtrField< ::Kinova::Api::DeviceConfig::SafetyConfiguration >&
configuration() const;
// @@protoc_insertion_point(class_scope:Kinova.Api.DeviceConfig.SafetyConfigurationList)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::RepeatedPtrField< ::Kinova::Api::DeviceConfig::SafetyConfiguration > configuration_;
mutable int _cached_size_;
friend struct ::protobuf_DeviceConfig_2eproto::TableStruct;
friend void ::protobuf_DeviceConfig_2eproto::InitDefaultsSafetyConfigurationListImpl();
};
// -------------------------------------------------------------------
class SafetyStatus : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.DeviceConfig.SafetyStatus) */ {
public:
SafetyStatus();
virtual ~SafetyStatus();
SafetyStatus(const SafetyStatus& from);
inline SafetyStatus& operator=(const SafetyStatus& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
SafetyStatus(SafetyStatus&& from) noexcept
: SafetyStatus() {
*this = ::std::move(from);
}
inline SafetyStatus& operator=(SafetyStatus&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
static const ::google::protobuf::Descriptor* descriptor();
static const SafetyStatus& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const SafetyStatus* internal_default_instance() {
return reinterpret_cast<const SafetyStatus*>(
&_SafetyStatus_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
18;
void Swap(SafetyStatus* other);
friend void swap(SafetyStatus& a, SafetyStatus& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline SafetyStatus* New() const PROTOBUF_FINAL { return New(NULL); }
SafetyStatus* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const SafetyStatus& from);
void MergeFrom(const SafetyStatus& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(SafetyStatus* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// .Kinova.Api.Common.SafetyStatusValue value = 1;
void clear_value();
static const int kValueFieldNumber = 1;
::Kinova::Api::Common::SafetyStatusValue value() const;
void set_value(::Kinova::Api::Common::SafetyStatusValue value);
// @@protoc_insertion_point(class_scope:Kinova.Api.DeviceConfig.SafetyStatus)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
int value_;
mutable int _cached_size_;
friend struct ::protobuf_DeviceConfig_2eproto::TableStruct;
friend void ::protobuf_DeviceConfig_2eproto::InitDefaultsSafetyStatusImpl();
};
// -------------------------------------------------------------------
class CalibrationParameter : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.DeviceConfig.CalibrationParameter) */ {
public:
CalibrationParameter();
virtual ~CalibrationParameter();
CalibrationParameter(const CalibrationParameter& from);
inline CalibrationParameter& operator=(const CalibrationParameter& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
CalibrationParameter(CalibrationParameter&& from) noexcept
: CalibrationParameter() {
*this = ::std::move(from);
}
inline CalibrationParameter& operator=(CalibrationParameter&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
static const ::google::protobuf::Descriptor* descriptor();
static const CalibrationParameter& default_instance();
enum ValueCase {
kSignedIntValue = 2,
kUnsignedIntValue = 3,
kFloatValue = 4,
VALUE_NOT_SET = 0,
};
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const CalibrationParameter* internal_default_instance() {
return reinterpret_cast<const CalibrationParameter*>(
&_CalibrationParameter_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
19;
void Swap(CalibrationParameter* other);
friend void swap(CalibrationParameter& a, CalibrationParameter& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline CalibrationParameter* New() const PROTOBUF_FINAL { return New(NULL); }
CalibrationParameter* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const CalibrationParameter& from);
void MergeFrom(const CalibrationParameter& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(CalibrationParameter* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// uint32 calibration_parameter_identifier = 1;
void clear_calibration_parameter_identifier();
static const int kCalibrationParameterIdentifierFieldNumber = 1;
::google::protobuf::uint32 calibration_parameter_identifier() const;
void set_calibration_parameter_identifier(::google::protobuf::uint32 value);
// int32 signedIntValue = 2;
private:
bool has_signedintvalue() const;
public:
void clear_signedintvalue();
static const int kSignedIntValueFieldNumber = 2;
::google::protobuf::int32 signedintvalue() const;
void set_signedintvalue(::google::protobuf::int32 value);
// uint32 unsignedIntValue = 3;
private:
bool has_unsignedintvalue() const;
public:
void clear_unsignedintvalue();
static const int kUnsignedIntValueFieldNumber = 3;
::google::protobuf::uint32 unsignedintvalue() const;
void set_unsignedintvalue(::google::protobuf::uint32 value);
// float floatValue = 4;
private:
bool has_floatvalue() const;
public:
void clear_floatvalue();
static const int kFloatValueFieldNumber = 4;
float floatvalue() const;
void set_floatvalue(float value);
ValueCase value_case() const;
// @@protoc_insertion_point(class_scope:Kinova.Api.DeviceConfig.CalibrationParameter)
private:
void set_has_signedintvalue();
void set_has_unsignedintvalue();
void set_has_floatvalue();
inline bool has_value() const;
void clear_value();
inline void clear_has_value();
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::uint32 calibration_parameter_identifier_;
union ValueUnion {
ValueUnion() {}
::google::protobuf::int32 signedintvalue_;
::google::protobuf::uint32 unsignedintvalue_;
float floatvalue_;
} value_;
mutable int _cached_size_;
::google::protobuf::uint32 _oneof_case_[1];
friend struct ::protobuf_DeviceConfig_2eproto::TableStruct;
friend void ::protobuf_DeviceConfig_2eproto::InitDefaultsCalibrationParameterImpl();
};
// -------------------------------------------------------------------
class Calibration : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.DeviceConfig.Calibration) */ {
public:
Calibration();
virtual ~Calibration();
Calibration(const Calibration& from);
inline Calibration& operator=(const Calibration& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
Calibration(Calibration&& from) noexcept
: Calibration() {
*this = ::std::move(from);
}
inline Calibration& operator=(Calibration&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
static const ::google::protobuf::Descriptor* descriptor();
static const Calibration& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const Calibration* internal_default_instance() {
return reinterpret_cast<const Calibration*>(
&_Calibration_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
20;
void Swap(Calibration* other);
friend void swap(Calibration& a, Calibration& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline Calibration* New() const PROTOBUF_FINAL { return New(NULL); }
Calibration* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const Calibration& from);
void MergeFrom(const Calibration& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(Calibration* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// repeated .Kinova.Api.DeviceConfig.CalibrationParameter calibration_parameter = 2;
int calibration_parameter_size() const;
void clear_calibration_parameter();
static const int kCalibrationParameterFieldNumber = 2;
const ::Kinova::Api::DeviceConfig::CalibrationParameter& calibration_parameter(int index) const;
::Kinova::Api::DeviceConfig::CalibrationParameter* mutable_calibration_parameter(int index);
::Kinova::Api::DeviceConfig::CalibrationParameter* add_calibration_parameter();
::google::protobuf::RepeatedPtrField< ::Kinova::Api::DeviceConfig::CalibrationParameter >*
mutable_calibration_parameter();
const ::google::protobuf::RepeatedPtrField< ::Kinova::Api::DeviceConfig::CalibrationParameter >&
calibration_parameter() const;
// .Kinova.Api.DeviceConfig.CalibrationItem calibration_item = 1;
void clear_calibration_item();
static const int kCalibrationItemFieldNumber = 1;
::Kinova::Api::DeviceConfig::CalibrationItem calibration_item() const;
void set_calibration_item(::Kinova::Api::DeviceConfig::CalibrationItem value);
// @@protoc_insertion_point(class_scope:Kinova.Api.DeviceConfig.Calibration)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::RepeatedPtrField< ::Kinova::Api::DeviceConfig::CalibrationParameter > calibration_parameter_;
int calibration_item_;
mutable int _cached_size_;
friend struct ::protobuf_DeviceConfig_2eproto::TableStruct;
friend void ::protobuf_DeviceConfig_2eproto::InitDefaultsCalibrationImpl();
};
// -------------------------------------------------------------------
class CalibrationElement : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.DeviceConfig.CalibrationElement) */ {
public:
CalibrationElement();
virtual ~CalibrationElement();
CalibrationElement(const CalibrationElement& from);
inline CalibrationElement& operator=(const CalibrationElement& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
CalibrationElement(CalibrationElement&& from) noexcept
: CalibrationElement() {
*this = ::std::move(from);
}
inline CalibrationElement& operator=(CalibrationElement&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
static const ::google::protobuf::Descriptor* descriptor();
static const CalibrationElement& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const CalibrationElement* internal_default_instance() {
return reinterpret_cast<const CalibrationElement*>(
&_CalibrationElement_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
21;
void Swap(CalibrationElement* other);
friend void swap(CalibrationElement& a, CalibrationElement& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline CalibrationElement* New() const PROTOBUF_FINAL { return New(NULL); }
CalibrationElement* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const CalibrationElement& from);
void MergeFrom(const CalibrationElement& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(CalibrationElement* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// .Kinova.Api.DeviceConfig.CalibrationItem calibration_item = 1;
void clear_calibration_item();
static const int kCalibrationItemFieldNumber = 1;
::Kinova::Api::DeviceConfig::CalibrationItem calibration_item() const;
void set_calibration_item(::Kinova::Api::DeviceConfig::CalibrationItem value);
// @@protoc_insertion_point(class_scope:Kinova.Api.DeviceConfig.CalibrationElement)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
int calibration_item_;
mutable int _cached_size_;
friend struct ::protobuf_DeviceConfig_2eproto::TableStruct;
friend void ::protobuf_DeviceConfig_2eproto::InitDefaultsCalibrationElementImpl();
};
// -------------------------------------------------------------------
class CalibrationResult : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.DeviceConfig.CalibrationResult) */ {
public:
CalibrationResult();
virtual ~CalibrationResult();
CalibrationResult(const CalibrationResult& from);
inline CalibrationResult& operator=(const CalibrationResult& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
CalibrationResult(CalibrationResult&& from) noexcept
: CalibrationResult() {
*this = ::std::move(from);
}
inline CalibrationResult& operator=(CalibrationResult&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
static const ::google::protobuf::Descriptor* descriptor();
static const CalibrationResult& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const CalibrationResult* internal_default_instance() {
return reinterpret_cast<const CalibrationResult*>(
&_CalibrationResult_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
22;
void Swap(CalibrationResult* other);
friend void swap(CalibrationResult& a, CalibrationResult& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline CalibrationResult* New() const PROTOBUF_FINAL { return New(NULL); }
CalibrationResult* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const CalibrationResult& from);
void MergeFrom(const CalibrationResult& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(CalibrationResult* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// .Kinova.Api.DeviceConfig.CalibrationStatus calibration_status = 1;
void clear_calibration_status();
static const int kCalibrationStatusFieldNumber = 1;
::Kinova::Api::DeviceConfig::CalibrationStatus calibration_status() const;
void set_calibration_status(::Kinova::Api::DeviceConfig::CalibrationStatus value);
// uint32 calibration_details = 2;
void clear_calibration_details();
static const int kCalibrationDetailsFieldNumber = 2;
::google::protobuf::uint32 calibration_details() const;
void set_calibration_details(::google::protobuf::uint32 value);
// @@protoc_insertion_point(class_scope:Kinova.Api.DeviceConfig.CalibrationResult)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
int calibration_status_;
::google::protobuf::uint32 calibration_details_;
mutable int _cached_size_;
friend struct ::protobuf_DeviceConfig_2eproto::TableStruct;
friend void ::protobuf_DeviceConfig_2eproto::InitDefaultsCalibrationResultImpl();
};
// -------------------------------------------------------------------
class CapSenseConfig : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.DeviceConfig.CapSenseConfig) */ {
public:
CapSenseConfig();
virtual ~CapSenseConfig();
CapSenseConfig(const CapSenseConfig& from);
inline CapSenseConfig& operator=(const CapSenseConfig& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
CapSenseConfig(CapSenseConfig&& from) noexcept
: CapSenseConfig() {
*this = ::std::move(from);
}
inline CapSenseConfig& operator=(CapSenseConfig&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
static const ::google::protobuf::Descriptor* descriptor();
static const CapSenseConfig& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const CapSenseConfig* internal_default_instance() {
return reinterpret_cast<const CapSenseConfig*>(
&_CapSenseConfig_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
23;
void Swap(CapSenseConfig* other);
friend void swap(CapSenseConfig& a, CapSenseConfig& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline CapSenseConfig* New() const PROTOBUF_FINAL { return New(NULL); }
CapSenseConfig* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const CapSenseConfig& from);
void MergeFrom(const CapSenseConfig& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(CapSenseConfig* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// .Kinova.Api.DeviceConfig.CapSenseMode mode = 1;
void clear_mode();
static const int kModeFieldNumber = 1;
::Kinova::Api::DeviceConfig::CapSenseMode mode() const;
void set_mode(::Kinova::Api::DeviceConfig::CapSenseMode value);
// float threshold_a = 2;
void clear_threshold_a();
static const int kThresholdAFieldNumber = 2;
float threshold_a() const;
void set_threshold_a(float value);
// float threshold_b = 3;
void clear_threshold_b();
static const int kThresholdBFieldNumber = 3;
float threshold_b() const;
void set_threshold_b(float value);
// @@protoc_insertion_point(class_scope:Kinova.Api.DeviceConfig.CapSenseConfig)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
int mode_;
float threshold_a_;
float threshold_b_;
mutable int _cached_size_;
friend struct ::protobuf_DeviceConfig_2eproto::TableStruct;
friend void ::protobuf_DeviceConfig_2eproto::InitDefaultsCapSenseConfigImpl();
};
// -------------------------------------------------------------------
class CapSenseRegister : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.DeviceConfig.CapSenseRegister) */ {
public:
CapSenseRegister();
virtual ~CapSenseRegister();
CapSenseRegister(const CapSenseRegister& from);
inline CapSenseRegister& operator=(const CapSenseRegister& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
CapSenseRegister(CapSenseRegister&& from) noexcept
: CapSenseRegister() {
*this = ::std::move(from);
}
inline CapSenseRegister& operator=(CapSenseRegister&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
static const ::google::protobuf::Descriptor* descriptor();
static const CapSenseRegister& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const CapSenseRegister* internal_default_instance() {
return reinterpret_cast<const CapSenseRegister*>(
&_CapSenseRegister_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
24;
void Swap(CapSenseRegister* other);
friend void swap(CapSenseRegister& a, CapSenseRegister& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline CapSenseRegister* New() const PROTOBUF_FINAL { return New(NULL); }
CapSenseRegister* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
void CopyFrom(const CapSenseRegister& from);
void MergeFrom(const CapSenseRegister& from);
void Clear() PROTOBUF_FINAL;
bool IsInitialized() const PROTOBUF_FINAL;
size_t ByteSizeLong() const PROTOBUF_FINAL;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const PROTOBUF_FINAL;
void InternalSwap(CapSenseRegister* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return NULL;
}
inline void* MaybeArenaPtr() const {
return NULL;
}
public:
::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// uint32 address = 1;
void clear_address();
static const int kAddressFieldNumber = 1;
::google::protobuf::uint32 address() const;
void set_address(::google::protobuf::uint32 value);
// uint32 value = 2;
void clear_value();
static const int kValueFieldNumber = 2;
::google::protobuf::uint32 value() const;
void set_value(::google::protobuf::uint32 value);
// @@protoc_insertion_point(class_scope:Kinova.Api.DeviceConfig.CapSenseRegister)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::uint32 address_;
::google::protobuf::uint32 value_;
mutable int _cached_size_;
friend struct ::protobuf_DeviceConfig_2eproto::TableStruct;
friend void ::protobuf_DeviceConfig_2eproto::InitDefaultsCapSenseRegisterImpl();
};
// ===================================================================
// ===================================================================
#ifdef __GNUC__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wstrict-aliasing"
#endif // __GNUC__
// DeviceType
// .Kinova.Api.Common.DeviceTypes device_type = 1;
inline void DeviceType::clear_device_type() {
device_type_ = 0;
}
inline ::Kinova::Api::Common::DeviceTypes DeviceType::device_type() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.DeviceType.device_type)
return static_cast< ::Kinova::Api::Common::DeviceTypes >(device_type_);
}
inline void DeviceType::set_device_type(::Kinova::Api::Common::DeviceTypes value) {
device_type_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.DeviceType.device_type)
}
// -------------------------------------------------------------------
// RunMode
// .Kinova.Api.DeviceConfig.RunModes run_mode = 1;
inline void RunMode::clear_run_mode() {
run_mode_ = 0;
}
inline ::Kinova::Api::DeviceConfig::RunModes RunMode::run_mode() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.RunMode.run_mode)
return static_cast< ::Kinova::Api::DeviceConfig::RunModes >(run_mode_);
}
inline void RunMode::set_run_mode(::Kinova::Api::DeviceConfig::RunModes value) {
run_mode_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.RunMode.run_mode)
}
// -------------------------------------------------------------------
// FirmwareVersion
// uint32 firmware_version = 1;
inline void FirmwareVersion::clear_firmware_version() {
firmware_version_ = 0u;
}
inline ::google::protobuf::uint32 FirmwareVersion::firmware_version() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.FirmwareVersion.firmware_version)
return firmware_version_;
}
inline void FirmwareVersion::set_firmware_version(::google::protobuf::uint32 value) {
firmware_version_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.FirmwareVersion.firmware_version)
}
// -------------------------------------------------------------------
// BootloaderVersion
// uint32 bootloader_version = 1;
inline void BootloaderVersion::clear_bootloader_version() {
bootloader_version_ = 0u;
}
inline ::google::protobuf::uint32 BootloaderVersion::bootloader_version() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.BootloaderVersion.bootloader_version)
return bootloader_version_;
}
inline void BootloaderVersion::set_bootloader_version(::google::protobuf::uint32 value) {
bootloader_version_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.BootloaderVersion.bootloader_version)
}
// -------------------------------------------------------------------
// ModelNumber
// string model_number = 1;
inline void ModelNumber::clear_model_number() {
model_number_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline const ::std::string& ModelNumber::model_number() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.ModelNumber.model_number)
return model_number_.GetNoArena();
}
inline void ModelNumber::set_model_number(const ::std::string& value) {
model_number_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.ModelNumber.model_number)
}
#if LANG_CXX11
inline void ModelNumber::set_model_number(::std::string&& value) {
model_number_.SetNoArena(
&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
// @@protoc_insertion_point(field_set_rvalue:Kinova.Api.DeviceConfig.ModelNumber.model_number)
}
#endif
inline void ModelNumber::set_model_number(const char* value) {
GOOGLE_DCHECK(value != NULL);
model_number_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
// @@protoc_insertion_point(field_set_char:Kinova.Api.DeviceConfig.ModelNumber.model_number)
}
inline void ModelNumber::set_model_number(const char* value, size_t size) {
model_number_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
::std::string(reinterpret_cast<const char*>(value), size));
// @@protoc_insertion_point(field_set_pointer:Kinova.Api.DeviceConfig.ModelNumber.model_number)
}
inline ::std::string* ModelNumber::mutable_model_number() {
// @@protoc_insertion_point(field_mutable:Kinova.Api.DeviceConfig.ModelNumber.model_number)
return model_number_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline ::std::string* ModelNumber::release_model_number() {
// @@protoc_insertion_point(field_release:Kinova.Api.DeviceConfig.ModelNumber.model_number)
return model_number_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline void ModelNumber::set_allocated_model_number(::std::string* model_number) {
if (model_number != NULL) {
} else {
}
model_number_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), model_number);
// @@protoc_insertion_point(field_set_allocated:Kinova.Api.DeviceConfig.ModelNumber.model_number)
}
// -------------------------------------------------------------------
// PartNumber
// string part_number = 1;
inline void PartNumber::clear_part_number() {
part_number_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline const ::std::string& PartNumber::part_number() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.PartNumber.part_number)
return part_number_.GetNoArena();
}
inline void PartNumber::set_part_number(const ::std::string& value) {
part_number_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.PartNumber.part_number)
}
#if LANG_CXX11
inline void PartNumber::set_part_number(::std::string&& value) {
part_number_.SetNoArena(
&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
// @@protoc_insertion_point(field_set_rvalue:Kinova.Api.DeviceConfig.PartNumber.part_number)
}
#endif
inline void PartNumber::set_part_number(const char* value) {
GOOGLE_DCHECK(value != NULL);
part_number_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
// @@protoc_insertion_point(field_set_char:Kinova.Api.DeviceConfig.PartNumber.part_number)
}
inline void PartNumber::set_part_number(const char* value, size_t size) {
part_number_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
::std::string(reinterpret_cast<const char*>(value), size));
// @@protoc_insertion_point(field_set_pointer:Kinova.Api.DeviceConfig.PartNumber.part_number)
}
inline ::std::string* PartNumber::mutable_part_number() {
// @@protoc_insertion_point(field_mutable:Kinova.Api.DeviceConfig.PartNumber.part_number)
return part_number_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline ::std::string* PartNumber::release_part_number() {
// @@protoc_insertion_point(field_release:Kinova.Api.DeviceConfig.PartNumber.part_number)
return part_number_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline void PartNumber::set_allocated_part_number(::std::string* part_number) {
if (part_number != NULL) {
} else {
}
part_number_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), part_number);
// @@protoc_insertion_point(field_set_allocated:Kinova.Api.DeviceConfig.PartNumber.part_number)
}
// -------------------------------------------------------------------
// SerialNumber
// string serial_number = 1;
inline void SerialNumber::clear_serial_number() {
serial_number_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline const ::std::string& SerialNumber::serial_number() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.SerialNumber.serial_number)
return serial_number_.GetNoArena();
}
inline void SerialNumber::set_serial_number(const ::std::string& value) {
serial_number_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.SerialNumber.serial_number)
}
#if LANG_CXX11
inline void SerialNumber::set_serial_number(::std::string&& value) {
serial_number_.SetNoArena(
&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
// @@protoc_insertion_point(field_set_rvalue:Kinova.Api.DeviceConfig.SerialNumber.serial_number)
}
#endif
inline void SerialNumber::set_serial_number(const char* value) {
GOOGLE_DCHECK(value != NULL);
serial_number_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
// @@protoc_insertion_point(field_set_char:Kinova.Api.DeviceConfig.SerialNumber.serial_number)
}
inline void SerialNumber::set_serial_number(const char* value, size_t size) {
serial_number_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
::std::string(reinterpret_cast<const char*>(value), size));
// @@protoc_insertion_point(field_set_pointer:Kinova.Api.DeviceConfig.SerialNumber.serial_number)
}
inline ::std::string* SerialNumber::mutable_serial_number() {
// @@protoc_insertion_point(field_mutable:Kinova.Api.DeviceConfig.SerialNumber.serial_number)
return serial_number_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline ::std::string* SerialNumber::release_serial_number() {
// @@protoc_insertion_point(field_release:Kinova.Api.DeviceConfig.SerialNumber.serial_number)
return serial_number_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline void SerialNumber::set_allocated_serial_number(::std::string* serial_number) {
if (serial_number != NULL) {
} else {
}
serial_number_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), serial_number);
// @@protoc_insertion_point(field_set_allocated:Kinova.Api.DeviceConfig.SerialNumber.serial_number)
}
// -------------------------------------------------------------------
// MACAddress
// bytes mac_address = 1;
inline void MACAddress::clear_mac_address() {
mac_address_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline const ::std::string& MACAddress::mac_address() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.MACAddress.mac_address)
return mac_address_.GetNoArena();
}
inline void MACAddress::set_mac_address(const ::std::string& value) {
mac_address_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.MACAddress.mac_address)
}
#if LANG_CXX11
inline void MACAddress::set_mac_address(::std::string&& value) {
mac_address_.SetNoArena(
&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
// @@protoc_insertion_point(field_set_rvalue:Kinova.Api.DeviceConfig.MACAddress.mac_address)
}
#endif
inline void MACAddress::set_mac_address(const char* value) {
GOOGLE_DCHECK(value != NULL);
mac_address_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
// @@protoc_insertion_point(field_set_char:Kinova.Api.DeviceConfig.MACAddress.mac_address)
}
inline void MACAddress::set_mac_address(const void* value, size_t size) {
mac_address_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
::std::string(reinterpret_cast<const char*>(value), size));
// @@protoc_insertion_point(field_set_pointer:Kinova.Api.DeviceConfig.MACAddress.mac_address)
}
inline ::std::string* MACAddress::mutable_mac_address() {
// @@protoc_insertion_point(field_mutable:Kinova.Api.DeviceConfig.MACAddress.mac_address)
return mac_address_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline ::std::string* MACAddress::release_mac_address() {
// @@protoc_insertion_point(field_release:Kinova.Api.DeviceConfig.MACAddress.mac_address)
return mac_address_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline void MACAddress::set_allocated_mac_address(::std::string* mac_address) {
if (mac_address != NULL) {
} else {
}
mac_address_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), mac_address);
// @@protoc_insertion_point(field_set_allocated:Kinova.Api.DeviceConfig.MACAddress.mac_address)
}
// -------------------------------------------------------------------
// IPv4Settings
// uint32 ipv4_address = 1;
inline void IPv4Settings::clear_ipv4_address() {
ipv4_address_ = 0u;
}
inline ::google::protobuf::uint32 IPv4Settings::ipv4_address() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.IPv4Settings.ipv4_address)
return ipv4_address_;
}
inline void IPv4Settings::set_ipv4_address(::google::protobuf::uint32 value) {
ipv4_address_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.IPv4Settings.ipv4_address)
}
// uint32 ipv4_subnet_mask = 2;
inline void IPv4Settings::clear_ipv4_subnet_mask() {
ipv4_subnet_mask_ = 0u;
}
inline ::google::protobuf::uint32 IPv4Settings::ipv4_subnet_mask() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.IPv4Settings.ipv4_subnet_mask)
return ipv4_subnet_mask_;
}
inline void IPv4Settings::set_ipv4_subnet_mask(::google::protobuf::uint32 value) {
ipv4_subnet_mask_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.IPv4Settings.ipv4_subnet_mask)
}
// uint32 ipv4_default_gateway = 3;
inline void IPv4Settings::clear_ipv4_default_gateway() {
ipv4_default_gateway_ = 0u;
}
inline ::google::protobuf::uint32 IPv4Settings::ipv4_default_gateway() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.IPv4Settings.ipv4_default_gateway)
return ipv4_default_gateway_;
}
inline void IPv4Settings::set_ipv4_default_gateway(::google::protobuf::uint32 value) {
ipv4_default_gateway_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.IPv4Settings.ipv4_default_gateway)
}
// -------------------------------------------------------------------
// PartNumberRevision
// string part_number_revision = 1;
inline void PartNumberRevision::clear_part_number_revision() {
part_number_revision_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline const ::std::string& PartNumberRevision::part_number_revision() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.PartNumberRevision.part_number_revision)
return part_number_revision_.GetNoArena();
}
inline void PartNumberRevision::set_part_number_revision(const ::std::string& value) {
part_number_revision_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.PartNumberRevision.part_number_revision)
}
#if LANG_CXX11
inline void PartNumberRevision::set_part_number_revision(::std::string&& value) {
part_number_revision_.SetNoArena(
&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
// @@protoc_insertion_point(field_set_rvalue:Kinova.Api.DeviceConfig.PartNumberRevision.part_number_revision)
}
#endif
inline void PartNumberRevision::set_part_number_revision(const char* value) {
GOOGLE_DCHECK(value != NULL);
part_number_revision_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
// @@protoc_insertion_point(field_set_char:Kinova.Api.DeviceConfig.PartNumberRevision.part_number_revision)
}
inline void PartNumberRevision::set_part_number_revision(const char* value, size_t size) {
part_number_revision_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
::std::string(reinterpret_cast<const char*>(value), size));
// @@protoc_insertion_point(field_set_pointer:Kinova.Api.DeviceConfig.PartNumberRevision.part_number_revision)
}
inline ::std::string* PartNumberRevision::mutable_part_number_revision() {
// @@protoc_insertion_point(field_mutable:Kinova.Api.DeviceConfig.PartNumberRevision.part_number_revision)
return part_number_revision_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline ::std::string* PartNumberRevision::release_part_number_revision() {
// @@protoc_insertion_point(field_release:Kinova.Api.DeviceConfig.PartNumberRevision.part_number_revision)
return part_number_revision_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline void PartNumberRevision::set_allocated_part_number_revision(::std::string* part_number_revision) {
if (part_number_revision != NULL) {
} else {
}
part_number_revision_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), part_number_revision);
// @@protoc_insertion_point(field_set_allocated:Kinova.Api.DeviceConfig.PartNumberRevision.part_number_revision)
}
// -------------------------------------------------------------------
// PowerOnSelfTestResult
// uint32 power_on_self_test_result = 1;
inline void PowerOnSelfTestResult::clear_power_on_self_test_result() {
power_on_self_test_result_ = 0u;
}
inline ::google::protobuf::uint32 PowerOnSelfTestResult::power_on_self_test_result() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.PowerOnSelfTestResult.power_on_self_test_result)
return power_on_self_test_result_;
}
inline void PowerOnSelfTestResult::set_power_on_self_test_result(::google::protobuf::uint32 value) {
power_on_self_test_result_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.PowerOnSelfTestResult.power_on_self_test_result)
}
// -------------------------------------------------------------------
// RebootRqst
// uint32 delay = 1;
inline void RebootRqst::clear_delay() {
delay_ = 0u;
}
inline ::google::protobuf::uint32 RebootRqst::delay() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.RebootRqst.delay)
return delay_;
}
inline void RebootRqst::set_delay(::google::protobuf::uint32 value) {
delay_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.RebootRqst.delay)
}
// -------------------------------------------------------------------
// SafetyInformation
// .Kinova.Api.Common.SafetyHandle handle = 1;
inline bool SafetyInformation::has_handle() const {
return this != internal_default_instance() && handle_ != NULL;
}
inline const ::Kinova::Api::Common::SafetyHandle& SafetyInformation::handle() const {
const ::Kinova::Api::Common::SafetyHandle* p = handle_;
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.SafetyInformation.handle)
return p != NULL ? *p : *reinterpret_cast<const ::Kinova::Api::Common::SafetyHandle*>(
&::Kinova::Api::Common::_SafetyHandle_default_instance_);
}
inline ::Kinova::Api::Common::SafetyHandle* SafetyInformation::release_handle() {
// @@protoc_insertion_point(field_release:Kinova.Api.DeviceConfig.SafetyInformation.handle)
::Kinova::Api::Common::SafetyHandle* temp = handle_;
handle_ = NULL;
return temp;
}
inline ::Kinova::Api::Common::SafetyHandle* SafetyInformation::mutable_handle() {
if (handle_ == NULL) {
handle_ = new ::Kinova::Api::Common::SafetyHandle;
}
// @@protoc_insertion_point(field_mutable:Kinova.Api.DeviceConfig.SafetyInformation.handle)
return handle_;
}
inline void SafetyInformation::set_allocated_handle(::Kinova::Api::Common::SafetyHandle* handle) {
::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
if (message_arena == NULL) {
delete reinterpret_cast< ::google::protobuf::MessageLite*>(handle_);
}
if (handle) {
::google::protobuf::Arena* submessage_arena = NULL;
if (message_arena != submessage_arena) {
handle = ::google::protobuf::internal::GetOwnedMessage(
message_arena, handle, submessage_arena);
}
} else {
}
handle_ = handle;
// @@protoc_insertion_point(field_set_allocated:Kinova.Api.DeviceConfig.SafetyInformation.handle)
}
// bool can_change_safety_state = 2;
inline void SafetyInformation::clear_can_change_safety_state() {
can_change_safety_state_ = false;
}
inline bool SafetyInformation::can_change_safety_state() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.SafetyInformation.can_change_safety_state)
return can_change_safety_state_;
}
inline void SafetyInformation::set_can_change_safety_state(bool value) {
can_change_safety_state_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.SafetyInformation.can_change_safety_state)
}
// bool has_warning_threshold = 3;
inline void SafetyInformation::clear_has_warning_threshold() {
has_warning_threshold_ = false;
}
inline bool SafetyInformation::has_warning_threshold() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.SafetyInformation.has_warning_threshold)
return has_warning_threshold_;
}
inline void SafetyInformation::set_has_warning_threshold(bool value) {
has_warning_threshold_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.SafetyInformation.has_warning_threshold)
}
// bool has_error_threshold = 4;
inline void SafetyInformation::clear_has_error_threshold() {
has_error_threshold_ = false;
}
inline bool SafetyInformation::has_error_threshold() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.SafetyInformation.has_error_threshold)
return has_error_threshold_;
}
inline void SafetyInformation::set_has_error_threshold(bool value) {
has_error_threshold_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.SafetyInformation.has_error_threshold)
}
// .Kinova.Api.DeviceConfig.SafetyLimitType limit_type = 5;
inline void SafetyInformation::clear_limit_type() {
limit_type_ = 0;
}
inline ::Kinova::Api::DeviceConfig::SafetyLimitType SafetyInformation::limit_type() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.SafetyInformation.limit_type)
return static_cast< ::Kinova::Api::DeviceConfig::SafetyLimitType >(limit_type_);
}
inline void SafetyInformation::set_limit_type(::Kinova::Api::DeviceConfig::SafetyLimitType value) {
limit_type_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.SafetyInformation.limit_type)
}
// float default_warning_threshold = 6;
inline void SafetyInformation::clear_default_warning_threshold() {
default_warning_threshold_ = 0;
}
inline float SafetyInformation::default_warning_threshold() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.SafetyInformation.default_warning_threshold)
return default_warning_threshold_;
}
inline void SafetyInformation::set_default_warning_threshold(float value) {
default_warning_threshold_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.SafetyInformation.default_warning_threshold)
}
// float default_error_threshold = 7;
inline void SafetyInformation::clear_default_error_threshold() {
default_error_threshold_ = 0;
}
inline float SafetyInformation::default_error_threshold() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.SafetyInformation.default_error_threshold)
return default_error_threshold_;
}
inline void SafetyInformation::set_default_error_threshold(float value) {
default_error_threshold_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.SafetyInformation.default_error_threshold)
}
// float upper_hard_limit = 8;
inline void SafetyInformation::clear_upper_hard_limit() {
upper_hard_limit_ = 0;
}
inline float SafetyInformation::upper_hard_limit() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.SafetyInformation.upper_hard_limit)
return upper_hard_limit_;
}
inline void SafetyInformation::set_upper_hard_limit(float value) {
upper_hard_limit_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.SafetyInformation.upper_hard_limit)
}
// float lower_hard_limit = 9;
inline void SafetyInformation::clear_lower_hard_limit() {
lower_hard_limit_ = 0;
}
inline float SafetyInformation::lower_hard_limit() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.SafetyInformation.lower_hard_limit)
return lower_hard_limit_;
}
inline void SafetyInformation::set_lower_hard_limit(float value) {
lower_hard_limit_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.SafetyInformation.lower_hard_limit)
}
// .Kinova.Api.Common.SafetyStatusValue status = 11;
inline void SafetyInformation::clear_status() {
status_ = 0;
}
inline ::Kinova::Api::Common::SafetyStatusValue SafetyInformation::status() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.SafetyInformation.status)
return static_cast< ::Kinova::Api::Common::SafetyStatusValue >(status_);
}
inline void SafetyInformation::set_status(::Kinova::Api::Common::SafetyStatusValue value) {
status_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.SafetyInformation.status)
}
// .Kinova.Api.Common.Unit unit = 12;
inline void SafetyInformation::clear_unit() {
unit_ = 0;
}
inline ::Kinova::Api::Common::Unit SafetyInformation::unit() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.SafetyInformation.unit)
return static_cast< ::Kinova::Api::Common::Unit >(unit_);
}
inline void SafetyInformation::set_unit(::Kinova::Api::Common::Unit value) {
unit_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.SafetyInformation.unit)
}
// -------------------------------------------------------------------
// SafetyInformationList
// repeated .Kinova.Api.DeviceConfig.SafetyInformation information = 1;
inline int SafetyInformationList::information_size() const {
return information_.size();
}
inline void SafetyInformationList::clear_information() {
information_.Clear();
}
inline const ::Kinova::Api::DeviceConfig::SafetyInformation& SafetyInformationList::information(int index) const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.SafetyInformationList.information)
return information_.Get(index);
}
inline ::Kinova::Api::DeviceConfig::SafetyInformation* SafetyInformationList::mutable_information(int index) {
// @@protoc_insertion_point(field_mutable:Kinova.Api.DeviceConfig.SafetyInformationList.information)
return information_.Mutable(index);
}
inline ::Kinova::Api::DeviceConfig::SafetyInformation* SafetyInformationList::add_information() {
// @@protoc_insertion_point(field_add:Kinova.Api.DeviceConfig.SafetyInformationList.information)
return information_.Add();
}
inline ::google::protobuf::RepeatedPtrField< ::Kinova::Api::DeviceConfig::SafetyInformation >*
SafetyInformationList::mutable_information() {
// @@protoc_insertion_point(field_mutable_list:Kinova.Api.DeviceConfig.SafetyInformationList.information)
return &information_;
}
inline const ::google::protobuf::RepeatedPtrField< ::Kinova::Api::DeviceConfig::SafetyInformation >&
SafetyInformationList::information() const {
// @@protoc_insertion_point(field_list:Kinova.Api.DeviceConfig.SafetyInformationList.information)
return information_;
}
// -------------------------------------------------------------------
// SafetyEnable
// .Kinova.Api.Common.SafetyHandle handle = 1;
inline bool SafetyEnable::has_handle() const {
return this != internal_default_instance() && handle_ != NULL;
}
inline const ::Kinova::Api::Common::SafetyHandle& SafetyEnable::handle() const {
const ::Kinova::Api::Common::SafetyHandle* p = handle_;
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.SafetyEnable.handle)
return p != NULL ? *p : *reinterpret_cast<const ::Kinova::Api::Common::SafetyHandle*>(
&::Kinova::Api::Common::_SafetyHandle_default_instance_);
}
inline ::Kinova::Api::Common::SafetyHandle* SafetyEnable::release_handle() {
// @@protoc_insertion_point(field_release:Kinova.Api.DeviceConfig.SafetyEnable.handle)
::Kinova::Api::Common::SafetyHandle* temp = handle_;
handle_ = NULL;
return temp;
}
inline ::Kinova::Api::Common::SafetyHandle* SafetyEnable::mutable_handle() {
if (handle_ == NULL) {
handle_ = new ::Kinova::Api::Common::SafetyHandle;
}
// @@protoc_insertion_point(field_mutable:Kinova.Api.DeviceConfig.SafetyEnable.handle)
return handle_;
}
inline void SafetyEnable::set_allocated_handle(::Kinova::Api::Common::SafetyHandle* handle) {
::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
if (message_arena == NULL) {
delete reinterpret_cast< ::google::protobuf::MessageLite*>(handle_);
}
if (handle) {
::google::protobuf::Arena* submessage_arena = NULL;
if (message_arena != submessage_arena) {
handle = ::google::protobuf::internal::GetOwnedMessage(
message_arena, handle, submessage_arena);
}
} else {
}
handle_ = handle;
// @@protoc_insertion_point(field_set_allocated:Kinova.Api.DeviceConfig.SafetyEnable.handle)
}
// bool enable = 2;
inline void SafetyEnable::clear_enable() {
enable_ = false;
}
inline bool SafetyEnable::enable() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.SafetyEnable.enable)
return enable_;
}
inline void SafetyEnable::set_enable(bool value) {
enable_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.SafetyEnable.enable)
}
// -------------------------------------------------------------------
// SafetyThreshold
// .Kinova.Api.Common.SafetyHandle handle = 1;
inline bool SafetyThreshold::has_handle() const {
return this != internal_default_instance() && handle_ != NULL;
}
inline const ::Kinova::Api::Common::SafetyHandle& SafetyThreshold::handle() const {
const ::Kinova::Api::Common::SafetyHandle* p = handle_;
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.SafetyThreshold.handle)
return p != NULL ? *p : *reinterpret_cast<const ::Kinova::Api::Common::SafetyHandle*>(
&::Kinova::Api::Common::_SafetyHandle_default_instance_);
}
inline ::Kinova::Api::Common::SafetyHandle* SafetyThreshold::release_handle() {
// @@protoc_insertion_point(field_release:Kinova.Api.DeviceConfig.SafetyThreshold.handle)
::Kinova::Api::Common::SafetyHandle* temp = handle_;
handle_ = NULL;
return temp;
}
inline ::Kinova::Api::Common::SafetyHandle* SafetyThreshold::mutable_handle() {
if (handle_ == NULL) {
handle_ = new ::Kinova::Api::Common::SafetyHandle;
}
// @@protoc_insertion_point(field_mutable:Kinova.Api.DeviceConfig.SafetyThreshold.handle)
return handle_;
}
inline void SafetyThreshold::set_allocated_handle(::Kinova::Api::Common::SafetyHandle* handle) {
::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
if (message_arena == NULL) {
delete reinterpret_cast< ::google::protobuf::MessageLite*>(handle_);
}
if (handle) {
::google::protobuf::Arena* submessage_arena = NULL;
if (message_arena != submessage_arena) {
handle = ::google::protobuf::internal::GetOwnedMessage(
message_arena, handle, submessage_arena);
}
} else {
}
handle_ = handle;
// @@protoc_insertion_point(field_set_allocated:Kinova.Api.DeviceConfig.SafetyThreshold.handle)
}
// float value = 2;
inline void SafetyThreshold::clear_value() {
value_ = 0;
}
inline float SafetyThreshold::value() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.SafetyThreshold.value)
return value_;
}
inline void SafetyThreshold::set_value(float value) {
value_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.SafetyThreshold.value)
}
// -------------------------------------------------------------------
// SafetyConfiguration
// .Kinova.Api.Common.SafetyHandle handle = 1;
inline bool SafetyConfiguration::has_handle() const {
return this != internal_default_instance() && handle_ != NULL;
}
inline const ::Kinova::Api::Common::SafetyHandle& SafetyConfiguration::handle() const {
const ::Kinova::Api::Common::SafetyHandle* p = handle_;
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.SafetyConfiguration.handle)
return p != NULL ? *p : *reinterpret_cast<const ::Kinova::Api::Common::SafetyHandle*>(
&::Kinova::Api::Common::_SafetyHandle_default_instance_);
}
inline ::Kinova::Api::Common::SafetyHandle* SafetyConfiguration::release_handle() {
// @@protoc_insertion_point(field_release:Kinova.Api.DeviceConfig.SafetyConfiguration.handle)
::Kinova::Api::Common::SafetyHandle* temp = handle_;
handle_ = NULL;
return temp;
}
inline ::Kinova::Api::Common::SafetyHandle* SafetyConfiguration::mutable_handle() {
if (handle_ == NULL) {
handle_ = new ::Kinova::Api::Common::SafetyHandle;
}
// @@protoc_insertion_point(field_mutable:Kinova.Api.DeviceConfig.SafetyConfiguration.handle)
return handle_;
}
inline void SafetyConfiguration::set_allocated_handle(::Kinova::Api::Common::SafetyHandle* handle) {
::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
if (message_arena == NULL) {
delete reinterpret_cast< ::google::protobuf::MessageLite*>(handle_);
}
if (handle) {
::google::protobuf::Arena* submessage_arena = NULL;
if (message_arena != submessage_arena) {
handle = ::google::protobuf::internal::GetOwnedMessage(
message_arena, handle, submessage_arena);
}
} else {
}
handle_ = handle;
// @@protoc_insertion_point(field_set_allocated:Kinova.Api.DeviceConfig.SafetyConfiguration.handle)
}
// float error_threshold = 2;
inline void SafetyConfiguration::clear_error_threshold() {
error_threshold_ = 0;
}
inline float SafetyConfiguration::error_threshold() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.SafetyConfiguration.error_threshold)
return error_threshold_;
}
inline void SafetyConfiguration::set_error_threshold(float value) {
error_threshold_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.SafetyConfiguration.error_threshold)
}
// float warning_threshold = 3;
inline void SafetyConfiguration::clear_warning_threshold() {
warning_threshold_ = 0;
}
inline float SafetyConfiguration::warning_threshold() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.SafetyConfiguration.warning_threshold)
return warning_threshold_;
}
inline void SafetyConfiguration::set_warning_threshold(float value) {
warning_threshold_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.SafetyConfiguration.warning_threshold)
}
// .Kinova.Api.DeviceConfig.SafetyEnable enable = 4;
inline bool SafetyConfiguration::has_enable() const {
return this != internal_default_instance() && enable_ != NULL;
}
inline void SafetyConfiguration::clear_enable() {
if (GetArenaNoVirtual() == NULL && enable_ != NULL) {
delete enable_;
}
enable_ = NULL;
}
inline const ::Kinova::Api::DeviceConfig::SafetyEnable& SafetyConfiguration::enable() const {
const ::Kinova::Api::DeviceConfig::SafetyEnable* p = enable_;
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.SafetyConfiguration.enable)
return p != NULL ? *p : *reinterpret_cast<const ::Kinova::Api::DeviceConfig::SafetyEnable*>(
&::Kinova::Api::DeviceConfig::_SafetyEnable_default_instance_);
}
inline ::Kinova::Api::DeviceConfig::SafetyEnable* SafetyConfiguration::release_enable() {
// @@protoc_insertion_point(field_release:Kinova.Api.DeviceConfig.SafetyConfiguration.enable)
::Kinova::Api::DeviceConfig::SafetyEnable* temp = enable_;
enable_ = NULL;
return temp;
}
inline ::Kinova::Api::DeviceConfig::SafetyEnable* SafetyConfiguration::mutable_enable() {
if (enable_ == NULL) {
enable_ = new ::Kinova::Api::DeviceConfig::SafetyEnable;
}
// @@protoc_insertion_point(field_mutable:Kinova.Api.DeviceConfig.SafetyConfiguration.enable)
return enable_;
}
inline void SafetyConfiguration::set_allocated_enable(::Kinova::Api::DeviceConfig::SafetyEnable* enable) {
::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
if (message_arena == NULL) {
delete enable_;
}
if (enable) {
::google::protobuf::Arena* submessage_arena = NULL;
if (message_arena != submessage_arena) {
enable = ::google::protobuf::internal::GetOwnedMessage(
message_arena, enable, submessage_arena);
}
} else {
}
enable_ = enable;
// @@protoc_insertion_point(field_set_allocated:Kinova.Api.DeviceConfig.SafetyConfiguration.enable)
}
// -------------------------------------------------------------------
// SafetyConfigurationList
// repeated .Kinova.Api.DeviceConfig.SafetyConfiguration configuration = 1;
inline int SafetyConfigurationList::configuration_size() const {
return configuration_.size();
}
inline void SafetyConfigurationList::clear_configuration() {
configuration_.Clear();
}
inline const ::Kinova::Api::DeviceConfig::SafetyConfiguration& SafetyConfigurationList::configuration(int index) const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.SafetyConfigurationList.configuration)
return configuration_.Get(index);
}
inline ::Kinova::Api::DeviceConfig::SafetyConfiguration* SafetyConfigurationList::mutable_configuration(int index) {
// @@protoc_insertion_point(field_mutable:Kinova.Api.DeviceConfig.SafetyConfigurationList.configuration)
return configuration_.Mutable(index);
}
inline ::Kinova::Api::DeviceConfig::SafetyConfiguration* SafetyConfigurationList::add_configuration() {
// @@protoc_insertion_point(field_add:Kinova.Api.DeviceConfig.SafetyConfigurationList.configuration)
return configuration_.Add();
}
inline ::google::protobuf::RepeatedPtrField< ::Kinova::Api::DeviceConfig::SafetyConfiguration >*
SafetyConfigurationList::mutable_configuration() {
// @@protoc_insertion_point(field_mutable_list:Kinova.Api.DeviceConfig.SafetyConfigurationList.configuration)
return &configuration_;
}
inline const ::google::protobuf::RepeatedPtrField< ::Kinova::Api::DeviceConfig::SafetyConfiguration >&
SafetyConfigurationList::configuration() const {
// @@protoc_insertion_point(field_list:Kinova.Api.DeviceConfig.SafetyConfigurationList.configuration)
return configuration_;
}
// -------------------------------------------------------------------
// SafetyStatus
// .Kinova.Api.Common.SafetyStatusValue value = 1;
inline void SafetyStatus::clear_value() {
value_ = 0;
}
inline ::Kinova::Api::Common::SafetyStatusValue SafetyStatus::value() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.SafetyStatus.value)
return static_cast< ::Kinova::Api::Common::SafetyStatusValue >(value_);
}
inline void SafetyStatus::set_value(::Kinova::Api::Common::SafetyStatusValue value) {
value_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.SafetyStatus.value)
}
// -------------------------------------------------------------------
// CalibrationParameter
// uint32 calibration_parameter_identifier = 1;
inline void CalibrationParameter::clear_calibration_parameter_identifier() {
calibration_parameter_identifier_ = 0u;
}
inline ::google::protobuf::uint32 CalibrationParameter::calibration_parameter_identifier() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.CalibrationParameter.calibration_parameter_identifier)
return calibration_parameter_identifier_;
}
inline void CalibrationParameter::set_calibration_parameter_identifier(::google::protobuf::uint32 value) {
calibration_parameter_identifier_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.CalibrationParameter.calibration_parameter_identifier)
}
// int32 signedIntValue = 2;
inline bool CalibrationParameter::has_signedintvalue() const {
return value_case() == kSignedIntValue;
}
inline void CalibrationParameter::set_has_signedintvalue() {
_oneof_case_[0] = kSignedIntValue;
}
inline void CalibrationParameter::clear_signedintvalue() {
if (has_signedintvalue()) {
value_.signedintvalue_ = 0;
clear_has_value();
}
}
inline ::google::protobuf::int32 CalibrationParameter::signedintvalue() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.CalibrationParameter.signedIntValue)
if (has_signedintvalue()) {
return value_.signedintvalue_;
}
return 0;
}
inline void CalibrationParameter::set_signedintvalue(::google::protobuf::int32 value) {
if (!has_signedintvalue()) {
clear_value();
set_has_signedintvalue();
}
value_.signedintvalue_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.CalibrationParameter.signedIntValue)
}
// uint32 unsignedIntValue = 3;
inline bool CalibrationParameter::has_unsignedintvalue() const {
return value_case() == kUnsignedIntValue;
}
inline void CalibrationParameter::set_has_unsignedintvalue() {
_oneof_case_[0] = kUnsignedIntValue;
}
inline void CalibrationParameter::clear_unsignedintvalue() {
if (has_unsignedintvalue()) {
value_.unsignedintvalue_ = 0u;
clear_has_value();
}
}
inline ::google::protobuf::uint32 CalibrationParameter::unsignedintvalue() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.CalibrationParameter.unsignedIntValue)
if (has_unsignedintvalue()) {
return value_.unsignedintvalue_;
}
return 0u;
}
inline void CalibrationParameter::set_unsignedintvalue(::google::protobuf::uint32 value) {
if (!has_unsignedintvalue()) {
clear_value();
set_has_unsignedintvalue();
}
value_.unsignedintvalue_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.CalibrationParameter.unsignedIntValue)
}
// float floatValue = 4;
inline bool CalibrationParameter::has_floatvalue() const {
return value_case() == kFloatValue;
}
inline void CalibrationParameter::set_has_floatvalue() {
_oneof_case_[0] = kFloatValue;
}
inline void CalibrationParameter::clear_floatvalue() {
if (has_floatvalue()) {
value_.floatvalue_ = 0;
clear_has_value();
}
}
inline float CalibrationParameter::floatvalue() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.CalibrationParameter.floatValue)
if (has_floatvalue()) {
return value_.floatvalue_;
}
return 0;
}
inline void CalibrationParameter::set_floatvalue(float value) {
if (!has_floatvalue()) {
clear_value();
set_has_floatvalue();
}
value_.floatvalue_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.CalibrationParameter.floatValue)
}
inline bool CalibrationParameter::has_value() const {
return value_case() != VALUE_NOT_SET;
}
inline void CalibrationParameter::clear_has_value() {
_oneof_case_[0] = VALUE_NOT_SET;
}
inline CalibrationParameter::ValueCase CalibrationParameter::value_case() const {
return CalibrationParameter::ValueCase(_oneof_case_[0]);
}
// -------------------------------------------------------------------
// Calibration
// .Kinova.Api.DeviceConfig.CalibrationItem calibration_item = 1;
inline void Calibration::clear_calibration_item() {
calibration_item_ = 0;
}
inline ::Kinova::Api::DeviceConfig::CalibrationItem Calibration::calibration_item() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.Calibration.calibration_item)
return static_cast< ::Kinova::Api::DeviceConfig::CalibrationItem >(calibration_item_);
}
inline void Calibration::set_calibration_item(::Kinova::Api::DeviceConfig::CalibrationItem value) {
calibration_item_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.Calibration.calibration_item)
}
// repeated .Kinova.Api.DeviceConfig.CalibrationParameter calibration_parameter = 2;
inline int Calibration::calibration_parameter_size() const {
return calibration_parameter_.size();
}
inline void Calibration::clear_calibration_parameter() {
calibration_parameter_.Clear();
}
inline const ::Kinova::Api::DeviceConfig::CalibrationParameter& Calibration::calibration_parameter(int index) const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.Calibration.calibration_parameter)
return calibration_parameter_.Get(index);
}
inline ::Kinova::Api::DeviceConfig::CalibrationParameter* Calibration::mutable_calibration_parameter(int index) {
// @@protoc_insertion_point(field_mutable:Kinova.Api.DeviceConfig.Calibration.calibration_parameter)
return calibration_parameter_.Mutable(index);
}
inline ::Kinova::Api::DeviceConfig::CalibrationParameter* Calibration::add_calibration_parameter() {
// @@protoc_insertion_point(field_add:Kinova.Api.DeviceConfig.Calibration.calibration_parameter)
return calibration_parameter_.Add();
}
inline ::google::protobuf::RepeatedPtrField< ::Kinova::Api::DeviceConfig::CalibrationParameter >*
Calibration::mutable_calibration_parameter() {
// @@protoc_insertion_point(field_mutable_list:Kinova.Api.DeviceConfig.Calibration.calibration_parameter)
return &calibration_parameter_;
}
inline const ::google::protobuf::RepeatedPtrField< ::Kinova::Api::DeviceConfig::CalibrationParameter >&
Calibration::calibration_parameter() const {
// @@protoc_insertion_point(field_list:Kinova.Api.DeviceConfig.Calibration.calibration_parameter)
return calibration_parameter_;
}
// -------------------------------------------------------------------
// CalibrationElement
// .Kinova.Api.DeviceConfig.CalibrationItem calibration_item = 1;
inline void CalibrationElement::clear_calibration_item() {
calibration_item_ = 0;
}
inline ::Kinova::Api::DeviceConfig::CalibrationItem CalibrationElement::calibration_item() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.CalibrationElement.calibration_item)
return static_cast< ::Kinova::Api::DeviceConfig::CalibrationItem >(calibration_item_);
}
inline void CalibrationElement::set_calibration_item(::Kinova::Api::DeviceConfig::CalibrationItem value) {
calibration_item_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.CalibrationElement.calibration_item)
}
// -------------------------------------------------------------------
// CalibrationResult
// .Kinova.Api.DeviceConfig.CalibrationStatus calibration_status = 1;
inline void CalibrationResult::clear_calibration_status() {
calibration_status_ = 0;
}
inline ::Kinova::Api::DeviceConfig::CalibrationStatus CalibrationResult::calibration_status() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.CalibrationResult.calibration_status)
return static_cast< ::Kinova::Api::DeviceConfig::CalibrationStatus >(calibration_status_);
}
inline void CalibrationResult::set_calibration_status(::Kinova::Api::DeviceConfig::CalibrationStatus value) {
calibration_status_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.CalibrationResult.calibration_status)
}
// uint32 calibration_details = 2;
inline void CalibrationResult::clear_calibration_details() {
calibration_details_ = 0u;
}
inline ::google::protobuf::uint32 CalibrationResult::calibration_details() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.CalibrationResult.calibration_details)
return calibration_details_;
}
inline void CalibrationResult::set_calibration_details(::google::protobuf::uint32 value) {
calibration_details_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.CalibrationResult.calibration_details)
}
// -------------------------------------------------------------------
// CapSenseConfig
// .Kinova.Api.DeviceConfig.CapSenseMode mode = 1;
inline void CapSenseConfig::clear_mode() {
mode_ = 0;
}
inline ::Kinova::Api::DeviceConfig::CapSenseMode CapSenseConfig::mode() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.CapSenseConfig.mode)
return static_cast< ::Kinova::Api::DeviceConfig::CapSenseMode >(mode_);
}
inline void CapSenseConfig::set_mode(::Kinova::Api::DeviceConfig::CapSenseMode value) {
mode_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.CapSenseConfig.mode)
}
// float threshold_a = 2;
inline void CapSenseConfig::clear_threshold_a() {
threshold_a_ = 0;
}
inline float CapSenseConfig::threshold_a() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.CapSenseConfig.threshold_a)
return threshold_a_;
}
inline void CapSenseConfig::set_threshold_a(float value) {
threshold_a_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.CapSenseConfig.threshold_a)
}
// float threshold_b = 3;
inline void CapSenseConfig::clear_threshold_b() {
threshold_b_ = 0;
}
inline float CapSenseConfig::threshold_b() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.CapSenseConfig.threshold_b)
return threshold_b_;
}
inline void CapSenseConfig::set_threshold_b(float value) {
threshold_b_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.CapSenseConfig.threshold_b)
}
// -------------------------------------------------------------------
// CapSenseRegister
// uint32 address = 1;
inline void CapSenseRegister::clear_address() {
address_ = 0u;
}
inline ::google::protobuf::uint32 CapSenseRegister::address() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.CapSenseRegister.address)
return address_;
}
inline void CapSenseRegister::set_address(::google::protobuf::uint32 value) {
address_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.CapSenseRegister.address)
}
// uint32 value = 2;
inline void CapSenseRegister::clear_value() {
value_ = 0u;
}
inline ::google::protobuf::uint32 CapSenseRegister::value() const {
// @@protoc_insertion_point(field_get:Kinova.Api.DeviceConfig.CapSenseRegister.value)
return value_;
}
inline void CapSenseRegister::set_value(::google::protobuf::uint32 value) {
value_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.DeviceConfig.CapSenseRegister.value)
}
#ifdef __GNUC__
#pragma GCC diagnostic pop
#endif // __GNUC__
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// @@protoc_insertion_point(namespace_scope)
} // namespace DeviceConfig
} // namespace Api
} // namespace Kinova
namespace google {
namespace protobuf {
template <> struct is_proto_enum< ::Kinova::Api::DeviceConfig::ServiceVersion> : ::google::protobuf::internal::true_type {};
template <>
inline const EnumDescriptor* GetEnumDescriptor< ::Kinova::Api::DeviceConfig::ServiceVersion>() {
return ::Kinova::Api::DeviceConfig::ServiceVersion_descriptor();
}
template <> struct is_proto_enum< ::Kinova::Api::DeviceConfig::RunModes> : ::google::protobuf::internal::true_type {};
template <>
inline const EnumDescriptor* GetEnumDescriptor< ::Kinova::Api::DeviceConfig::RunModes>() {
return ::Kinova::Api::DeviceConfig::RunModes_descriptor();
}
template <> struct is_proto_enum< ::Kinova::Api::DeviceConfig::CalibrationItem> : ::google::protobuf::internal::true_type {};
template <>
inline const EnumDescriptor* GetEnumDescriptor< ::Kinova::Api::DeviceConfig::CalibrationItem>() {
return ::Kinova::Api::DeviceConfig::CalibrationItem_descriptor();
}
template <> struct is_proto_enum< ::Kinova::Api::DeviceConfig::CalibrationStatus> : ::google::protobuf::internal::true_type {};
template <>
inline const EnumDescriptor* GetEnumDescriptor< ::Kinova::Api::DeviceConfig::CalibrationStatus>() {
return ::Kinova::Api::DeviceConfig::CalibrationStatus_descriptor();
}
template <> struct is_proto_enum< ::Kinova::Api::DeviceConfig::SafetyLimitType> : ::google::protobuf::internal::true_type {};
template <>
inline const EnumDescriptor* GetEnumDescriptor< ::Kinova::Api::DeviceConfig::SafetyLimitType>() {
return ::Kinova::Api::DeviceConfig::SafetyLimitType_descriptor();
}
template <> struct is_proto_enum< ::Kinova::Api::DeviceConfig::CapSenseMode> : ::google::protobuf::internal::true_type {};
template <>
inline const EnumDescriptor* GetEnumDescriptor< ::Kinova::Api::DeviceConfig::CapSenseMode>() {
return ::Kinova::Api::DeviceConfig::CapSenseMode_descriptor();
}
} // namespace protobuf
} // namespace google
// @@protoc_insertion_point(global_scope)
#endif // PROTOBUF_DeviceConfig_2eproto__INCLUDED
|