File size: 102,341 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 |
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: Test.proto
#ifndef PROTOBUF_Test_2eproto__INCLUDED
#define PROTOBUF_Test_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
#include "Frame.pb.h" // IWYU pragma: export
// @@protoc_insertion_point(includes)
namespace protobuf_Test_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[13];
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 InitDefaultsvalidateStructImpl();
void InitDefaultsvalidateStruct();
void InitDefaultsSendStructImpl();
void InitDefaultsSendStruct();
void InitDefaultsEmbeddedStructImpl();
void InitDefaultsEmbeddedStruct();
void InitDefaultsRcvStructImpl();
void InitDefaultsRcvStruct();
void InitDefaultsNotifOptionImpl();
void InitDefaultsNotifOption();
void InitDefaultsNotifDataImpl();
void InitDefaultsNotifData();
void InitDefaultstimeToResponseImpl();
void InitDefaultstimeToResponse();
void InitDefaultsTestNotificationImpl();
void InitDefaultsTestNotification();
void InitDefaultsTestErrorImpl();
void InitDefaultsTestError();
void InitDefaultsSomethingChangedImpl();
void InitDefaultsSomethingChanged();
void InitDefaultsDelayImpl();
void InitDefaultsDelay();
void InitDefaultsRequestFromServerMessageImpl();
void InitDefaultsRequestFromServerMessage();
void InitDefaultsResponseFromClientMessageImpl();
void InitDefaultsResponseFromClientMessage();
inline void InitDefaults() {
InitDefaultsvalidateStruct();
InitDefaultsSendStruct();
InitDefaultsEmbeddedStruct();
InitDefaultsRcvStruct();
InitDefaultsNotifOption();
InitDefaultsNotifData();
InitDefaultstimeToResponse();
InitDefaultsTestNotification();
InitDefaultsTestError();
InitDefaultsSomethingChanged();
InitDefaultsDelay();
InitDefaultsRequestFromServerMessage();
InitDefaultsResponseFromClientMessage();
}
} // namespace protobuf_Test_2eproto
namespace Kinova {
namespace Api {
namespace Test {
class Delay;
class DelayDefaultTypeInternal;
extern DelayDefaultTypeInternal _Delay_default_instance_;
class EmbeddedStruct;
class EmbeddedStructDefaultTypeInternal;
extern EmbeddedStructDefaultTypeInternal _EmbeddedStruct_default_instance_;
class NotifData;
class NotifDataDefaultTypeInternal;
extern NotifDataDefaultTypeInternal _NotifData_default_instance_;
class NotifOption;
class NotifOptionDefaultTypeInternal;
extern NotifOptionDefaultTypeInternal _NotifOption_default_instance_;
class RcvStruct;
class RcvStructDefaultTypeInternal;
extern RcvStructDefaultTypeInternal _RcvStruct_default_instance_;
class RequestFromServerMessage;
class RequestFromServerMessageDefaultTypeInternal;
extern RequestFromServerMessageDefaultTypeInternal _RequestFromServerMessage_default_instance_;
class ResponseFromClientMessage;
class ResponseFromClientMessageDefaultTypeInternal;
extern ResponseFromClientMessageDefaultTypeInternal _ResponseFromClientMessage_default_instance_;
class SendStruct;
class SendStructDefaultTypeInternal;
extern SendStructDefaultTypeInternal _SendStruct_default_instance_;
class SomethingChanged;
class SomethingChangedDefaultTypeInternal;
extern SomethingChangedDefaultTypeInternal _SomethingChanged_default_instance_;
class TestError;
class TestErrorDefaultTypeInternal;
extern TestErrorDefaultTypeInternal _TestError_default_instance_;
class TestNotification;
class TestNotificationDefaultTypeInternal;
extern TestNotificationDefaultTypeInternal _TestNotification_default_instance_;
class timeToResponse;
class timeToResponseDefaultTypeInternal;
extern timeToResponseDefaultTypeInternal _timeToResponse_default_instance_;
class validateStruct;
class validateStructDefaultTypeInternal;
extern validateStructDefaultTypeInternal _validateStruct_default_instance_;
} // namespace Test
} // namespace Api
} // namespace Kinova
namespace Kinova {
namespace Api {
namespace Test {
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 Enum {
ENUM_0 = 0,
ENUM_1 = 1,
ENUM_2 = 2,
Enum_INT_MIN_SENTINEL_DO_NOT_USE_ = ::google::protobuf::kint32min,
Enum_INT_MAX_SENTINEL_DO_NOT_USE_ = ::google::protobuf::kint32max
};
bool Enum_IsValid(int value);
const Enum Enum_MIN = ENUM_0;
const Enum Enum_MAX = ENUM_2;
const int Enum_ARRAYSIZE = Enum_MAX + 1;
const ::google::protobuf::EnumDescriptor* Enum_descriptor();
inline const ::std::string& Enum_Name(Enum value) {
return ::google::protobuf::internal::NameOfEnum(
Enum_descriptor(), value);
}
inline bool Enum_Parse(
const ::std::string& name, Enum* value) {
return ::google::protobuf::internal::ParseNamedEnum<Enum>(
Enum_descriptor(), name, value);
}
// ===================================================================
class validateStruct : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.Test.validateStruct) */ {
public:
validateStruct();
virtual ~validateStruct();
validateStruct(const validateStruct& from);
inline validateStruct& operator=(const validateStruct& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
validateStruct(validateStruct&& from) noexcept
: validateStruct() {
*this = ::std::move(from);
}
inline validateStruct& operator=(validateStruct&& 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 validateStruct& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const validateStruct* internal_default_instance() {
return reinterpret_cast<const validateStruct*>(
&_validateStruct_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
0;
void Swap(validateStruct* other);
friend void swap(validateStruct& a, validateStruct& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline validateStruct* New() const PROTOBUF_FINAL { return New(NULL); }
validateStruct* 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 validateStruct& from);
void MergeFrom(const validateStruct& 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(validateStruct* 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.Test.SendStruct client_struct = 1;
bool has_client_struct() const;
void clear_client_struct();
static const int kClientStructFieldNumber = 1;
const ::Kinova::Api::Test::SendStruct& client_struct() const;
::Kinova::Api::Test::SendStruct* release_client_struct();
::Kinova::Api::Test::SendStruct* mutable_client_struct();
void set_allocated_client_struct(::Kinova::Api::Test::SendStruct* client_struct);
// .Kinova.Api.Test.RcvStruct server_struct = 2;
bool has_server_struct() const;
void clear_server_struct();
static const int kServerStructFieldNumber = 2;
const ::Kinova::Api::Test::RcvStruct& server_struct() const;
::Kinova::Api::Test::RcvStruct* release_server_struct();
::Kinova::Api::Test::RcvStruct* mutable_server_struct();
void set_allocated_server_struct(::Kinova::Api::Test::RcvStruct* server_struct);
// @@protoc_insertion_point(class_scope:Kinova.Api.Test.validateStruct)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::Kinova::Api::Test::SendStruct* client_struct_;
::Kinova::Api::Test::RcvStruct* server_struct_;
mutable int _cached_size_;
friend struct ::protobuf_Test_2eproto::TableStruct;
friend void ::protobuf_Test_2eproto::InitDefaultsvalidateStructImpl();
};
// -------------------------------------------------------------------
class SendStruct : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.Test.SendStruct) */ {
public:
SendStruct();
virtual ~SendStruct();
SendStruct(const SendStruct& from);
inline SendStruct& operator=(const SendStruct& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
SendStruct(SendStruct&& from) noexcept
: SendStruct() {
*this = ::std::move(from);
}
inline SendStruct& operator=(SendStruct&& 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 SendStruct& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const SendStruct* internal_default_instance() {
return reinterpret_cast<const SendStruct*>(
&_SendStruct_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
1;
void Swap(SendStruct* other);
friend void swap(SendStruct& a, SendStruct& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline SendStruct* New() const PROTOBUF_FINAL { return New(NULL); }
SendStruct* 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 SendStruct& from);
void MergeFrom(const SendStruct& 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(SendStruct* 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 uint32 repeated_uint32_value = 7;
int repeated_uint32_value_size() const;
void clear_repeated_uint32_value();
static const int kRepeatedUint32ValueFieldNumber = 7;
::google::protobuf::uint32 repeated_uint32_value(int index) const;
void set_repeated_uint32_value(int index, ::google::protobuf::uint32 value);
void add_repeated_uint32_value(::google::protobuf::uint32 value);
const ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >&
repeated_uint32_value() const;
::google::protobuf::RepeatedField< ::google::protobuf::uint32 >*
mutable_repeated_uint32_value();
// bytes bytes_value = 1;
void clear_bytes_value();
static const int kBytesValueFieldNumber = 1;
const ::std::string& bytes_value() const;
void set_bytes_value(const ::std::string& value);
#if LANG_CXX11
void set_bytes_value(::std::string&& value);
#endif
void set_bytes_value(const char* value);
void set_bytes_value(const void* value, size_t size);
::std::string* mutable_bytes_value();
::std::string* release_bytes_value();
void set_allocated_bytes_value(::std::string* bytes_value);
// string string_value = 4;
void clear_string_value();
static const int kStringValueFieldNumber = 4;
const ::std::string& string_value() const;
void set_string_value(const ::std::string& value);
#if LANG_CXX11
void set_string_value(::std::string&& value);
#endif
void set_string_value(const char* value);
void set_string_value(const char* value, size_t size);
::std::string* mutable_string_value();
::std::string* release_string_value();
void set_allocated_string_value(::std::string* string_value);
// .Kinova.Api.Test.EmbeddedStruct embedded_struct_value = 6;
bool has_embedded_struct_value() const;
void clear_embedded_struct_value();
static const int kEmbeddedStructValueFieldNumber = 6;
const ::Kinova::Api::Test::EmbeddedStruct& embedded_struct_value() const;
::Kinova::Api::Test::EmbeddedStruct* release_embedded_struct_value();
::Kinova::Api::Test::EmbeddedStruct* mutable_embedded_struct_value();
void set_allocated_embedded_struct_value(::Kinova::Api::Test::EmbeddedStruct* embedded_struct_value);
// uint32 uint32_value = 2;
void clear_uint32_value();
static const int kUint32ValueFieldNumber = 2;
::google::protobuf::uint32 uint32_value() const;
void set_uint32_value(::google::protobuf::uint32 value);
// fixed32 fixed32_value = 3;
void clear_fixed32_value();
static const int kFixed32ValueFieldNumber = 3;
::google::protobuf::uint32 fixed32_value() const;
void set_fixed32_value(::google::protobuf::uint32 value);
// .Kinova.Api.Test.Enum enum_value = 5;
void clear_enum_value();
static const int kEnumValueFieldNumber = 5;
::Kinova::Api::Test::Enum enum_value() const;
void set_enum_value(::Kinova::Api::Test::Enum value);
// @@protoc_insertion_point(class_scope:Kinova.Api.Test.SendStruct)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::RepeatedField< ::google::protobuf::uint32 > repeated_uint32_value_;
mutable int _repeated_uint32_value_cached_byte_size_;
::google::protobuf::internal::ArenaStringPtr bytes_value_;
::google::protobuf::internal::ArenaStringPtr string_value_;
::Kinova::Api::Test::EmbeddedStruct* embedded_struct_value_;
::google::protobuf::uint32 uint32_value_;
::google::protobuf::uint32 fixed32_value_;
int enum_value_;
mutable int _cached_size_;
friend struct ::protobuf_Test_2eproto::TableStruct;
friend void ::protobuf_Test_2eproto::InitDefaultsSendStructImpl();
};
// -------------------------------------------------------------------
class EmbeddedStruct : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.Test.EmbeddedStruct) */ {
public:
EmbeddedStruct();
virtual ~EmbeddedStruct();
EmbeddedStruct(const EmbeddedStruct& from);
inline EmbeddedStruct& operator=(const EmbeddedStruct& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
EmbeddedStruct(EmbeddedStruct&& from) noexcept
: EmbeddedStruct() {
*this = ::std::move(from);
}
inline EmbeddedStruct& operator=(EmbeddedStruct&& 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 EmbeddedStruct& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const EmbeddedStruct* internal_default_instance() {
return reinterpret_cast<const EmbeddedStruct*>(
&_EmbeddedStruct_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
2;
void Swap(EmbeddedStruct* other);
friend void swap(EmbeddedStruct& a, EmbeddedStruct& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline EmbeddedStruct* New() const PROTOBUF_FINAL { return New(NULL); }
EmbeddedStruct* 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 EmbeddedStruct& from);
void MergeFrom(const EmbeddedStruct& 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(EmbeddedStruct* 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 embedded_uint = 1;
void clear_embedded_uint();
static const int kEmbeddedUintFieldNumber = 1;
::google::protobuf::uint32 embedded_uint() const;
void set_embedded_uint(::google::protobuf::uint32 value);
// @@protoc_insertion_point(class_scope:Kinova.Api.Test.EmbeddedStruct)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::uint32 embedded_uint_;
mutable int _cached_size_;
friend struct ::protobuf_Test_2eproto::TableStruct;
friend void ::protobuf_Test_2eproto::InitDefaultsEmbeddedStructImpl();
};
// -------------------------------------------------------------------
class RcvStruct : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.Test.RcvStruct) */ {
public:
RcvStruct();
virtual ~RcvStruct();
RcvStruct(const RcvStruct& from);
inline RcvStruct& operator=(const RcvStruct& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
RcvStruct(RcvStruct&& from) noexcept
: RcvStruct() {
*this = ::std::move(from);
}
inline RcvStruct& operator=(RcvStruct&& 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 RcvStruct& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const RcvStruct* internal_default_instance() {
return reinterpret_cast<const RcvStruct*>(
&_RcvStruct_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
3;
void Swap(RcvStruct* other);
friend void swap(RcvStruct& a, RcvStruct& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline RcvStruct* New() const PROTOBUF_FINAL { return New(NULL); }
RcvStruct* 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 RcvStruct& from);
void MergeFrom(const RcvStruct& 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(RcvStruct* 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 uint32 repeated_uint32_value = 7;
int repeated_uint32_value_size() const;
void clear_repeated_uint32_value();
static const int kRepeatedUint32ValueFieldNumber = 7;
::google::protobuf::uint32 repeated_uint32_value(int index) const;
void set_repeated_uint32_value(int index, ::google::protobuf::uint32 value);
void add_repeated_uint32_value(::google::protobuf::uint32 value);
const ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >&
repeated_uint32_value() const;
::google::protobuf::RepeatedField< ::google::protobuf::uint32 >*
mutable_repeated_uint32_value();
// bytes bytes_value = 1;
void clear_bytes_value();
static const int kBytesValueFieldNumber = 1;
const ::std::string& bytes_value() const;
void set_bytes_value(const ::std::string& value);
#if LANG_CXX11
void set_bytes_value(::std::string&& value);
#endif
void set_bytes_value(const char* value);
void set_bytes_value(const void* value, size_t size);
::std::string* mutable_bytes_value();
::std::string* release_bytes_value();
void set_allocated_bytes_value(::std::string* bytes_value);
// string string_value = 4;
void clear_string_value();
static const int kStringValueFieldNumber = 4;
const ::std::string& string_value() const;
void set_string_value(const ::std::string& value);
#if LANG_CXX11
void set_string_value(::std::string&& value);
#endif
void set_string_value(const char* value);
void set_string_value(const char* value, size_t size);
::std::string* mutable_string_value();
::std::string* release_string_value();
void set_allocated_string_value(::std::string* string_value);
// .Kinova.Api.Test.EmbeddedStruct embedded_struct_value = 6;
bool has_embedded_struct_value() const;
void clear_embedded_struct_value();
static const int kEmbeddedStructValueFieldNumber = 6;
const ::Kinova::Api::Test::EmbeddedStruct& embedded_struct_value() const;
::Kinova::Api::Test::EmbeddedStruct* release_embedded_struct_value();
::Kinova::Api::Test::EmbeddedStruct* mutable_embedded_struct_value();
void set_allocated_embedded_struct_value(::Kinova::Api::Test::EmbeddedStruct* embedded_struct_value);
// uint32 uint32_value = 2;
void clear_uint32_value();
static const int kUint32ValueFieldNumber = 2;
::google::protobuf::uint32 uint32_value() const;
void set_uint32_value(::google::protobuf::uint32 value);
// fixed32 fixed32_value = 3;
void clear_fixed32_value();
static const int kFixed32ValueFieldNumber = 3;
::google::protobuf::uint32 fixed32_value() const;
void set_fixed32_value(::google::protobuf::uint32 value);
// .Kinova.Api.Test.Enum enum_value = 5;
void clear_enum_value();
static const int kEnumValueFieldNumber = 5;
::Kinova::Api::Test::Enum enum_value() const;
void set_enum_value(::Kinova::Api::Test::Enum value);
// @@protoc_insertion_point(class_scope:Kinova.Api.Test.RcvStruct)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::RepeatedField< ::google::protobuf::uint32 > repeated_uint32_value_;
mutable int _repeated_uint32_value_cached_byte_size_;
::google::protobuf::internal::ArenaStringPtr bytes_value_;
::google::protobuf::internal::ArenaStringPtr string_value_;
::Kinova::Api::Test::EmbeddedStruct* embedded_struct_value_;
::google::protobuf::uint32 uint32_value_;
::google::protobuf::uint32 fixed32_value_;
int enum_value_;
mutable int _cached_size_;
friend struct ::protobuf_Test_2eproto::TableStruct;
friend void ::protobuf_Test_2eproto::InitDefaultsRcvStructImpl();
};
// -------------------------------------------------------------------
class NotifOption : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.Test.NotifOption) */ {
public:
NotifOption();
virtual ~NotifOption();
NotifOption(const NotifOption& from);
inline NotifOption& operator=(const NotifOption& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
NotifOption(NotifOption&& from) noexcept
: NotifOption() {
*this = ::std::move(from);
}
inline NotifOption& operator=(NotifOption&& 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 NotifOption& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const NotifOption* internal_default_instance() {
return reinterpret_cast<const NotifOption*>(
&_NotifOption_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
4;
void Swap(NotifOption* other);
friend void swap(NotifOption& a, NotifOption& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline NotifOption* New() const PROTOBUF_FINAL { return New(NULL); }
NotifOption* 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 NotifOption& from);
void MergeFrom(const NotifOption& 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(NotifOption* 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 dummy_option = 1;
void clear_dummy_option();
static const int kDummyOptionFieldNumber = 1;
::google::protobuf::uint32 dummy_option() const;
void set_dummy_option(::google::protobuf::uint32 value);
// @@protoc_insertion_point(class_scope:Kinova.Api.Test.NotifOption)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::uint32 dummy_option_;
mutable int _cached_size_;
friend struct ::protobuf_Test_2eproto::TableStruct;
friend void ::protobuf_Test_2eproto::InitDefaultsNotifOptionImpl();
};
// -------------------------------------------------------------------
class NotifData : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.Test.NotifData) */ {
public:
NotifData();
virtual ~NotifData();
NotifData(const NotifData& from);
inline NotifData& operator=(const NotifData& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
NotifData(NotifData&& from) noexcept
: NotifData() {
*this = ::std::move(from);
}
inline NotifData& operator=(NotifData&& 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 NotifData& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const NotifData* internal_default_instance() {
return reinterpret_cast<const NotifData*>(
&_NotifData_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
5;
void Swap(NotifData* other);
friend void swap(NotifData& a, NotifData& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline NotifData* New() const PROTOBUF_FINAL { return New(NULL); }
NotifData* 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 NotifData& from);
void MergeFrom(const NotifData& 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(NotifData* 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 data = 1;
void clear_data();
static const int kDataFieldNumber = 1;
::google::protobuf::uint32 data() const;
void set_data(::google::protobuf::uint32 value);
// @@protoc_insertion_point(class_scope:Kinova.Api.Test.NotifData)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::uint32 data_;
mutable int _cached_size_;
friend struct ::protobuf_Test_2eproto::TableStruct;
friend void ::protobuf_Test_2eproto::InitDefaultsNotifDataImpl();
};
// -------------------------------------------------------------------
class timeToResponse : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.Test.timeToResponse) */ {
public:
timeToResponse();
virtual ~timeToResponse();
timeToResponse(const timeToResponse& from);
inline timeToResponse& operator=(const timeToResponse& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
timeToResponse(timeToResponse&& from) noexcept
: timeToResponse() {
*this = ::std::move(from);
}
inline timeToResponse& operator=(timeToResponse&& 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 timeToResponse& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const timeToResponse* internal_default_instance() {
return reinterpret_cast<const timeToResponse*>(
&_timeToResponse_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
6;
void Swap(timeToResponse* other);
friend void swap(timeToResponse& a, timeToResponse& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline timeToResponse* New() const PROTOBUF_FINAL { return New(NULL); }
timeToResponse* 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 timeToResponse& from);
void MergeFrom(const timeToResponse& 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(timeToResponse* 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 time_ms = 1;
void clear_time_ms();
static const int kTimeMsFieldNumber = 1;
::google::protobuf::uint32 time_ms() const;
void set_time_ms(::google::protobuf::uint32 value);
// @@protoc_insertion_point(class_scope:Kinova.Api.Test.timeToResponse)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::uint32 time_ms_;
mutable int _cached_size_;
friend struct ::protobuf_Test_2eproto::TableStruct;
friend void ::protobuf_Test_2eproto::InitDefaultstimeToResponseImpl();
};
// -------------------------------------------------------------------
class TestNotification : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.Test.TestNotification) */ {
public:
TestNotification();
virtual ~TestNotification();
TestNotification(const TestNotification& from);
inline TestNotification& operator=(const TestNotification& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
TestNotification(TestNotification&& from) noexcept
: TestNotification() {
*this = ::std::move(from);
}
inline TestNotification& operator=(TestNotification&& 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 TestNotification& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const TestNotification* internal_default_instance() {
return reinterpret_cast<const TestNotification*>(
&_TestNotification_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
7;
void Swap(TestNotification* other);
friend void swap(TestNotification& a, TestNotification& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline TestNotification* New() const PROTOBUF_FINAL { return New(NULL); }
TestNotification* 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 TestNotification& from);
void MergeFrom(const TestNotification& 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(TestNotification* 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 dummy_property = 1;
void clear_dummy_property();
static const int kDummyPropertyFieldNumber = 1;
::google::protobuf::uint32 dummy_property() const;
void set_dummy_property(::google::protobuf::uint32 value);
// @@protoc_insertion_point(class_scope:Kinova.Api.Test.TestNotification)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::uint32 dummy_property_;
mutable int _cached_size_;
friend struct ::protobuf_Test_2eproto::TableStruct;
friend void ::protobuf_Test_2eproto::InitDefaultsTestNotificationImpl();
};
// -------------------------------------------------------------------
class TestError : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.Test.TestError) */ {
public:
TestError();
virtual ~TestError();
TestError(const TestError& from);
inline TestError& operator=(const TestError& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
TestError(TestError&& from) noexcept
: TestError() {
*this = ::std::move(from);
}
inline TestError& operator=(TestError&& 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 TestError& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const TestError* internal_default_instance() {
return reinterpret_cast<const TestError*>(
&_TestError_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
8;
void Swap(TestError* other);
friend void swap(TestError& a, TestError& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline TestError* New() const PROTOBUF_FINAL { return New(NULL); }
TestError* 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 TestError& from);
void MergeFrom(const TestError& 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(TestError* 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 errorCode = 1;
void clear_errorcode();
static const int kErrorCodeFieldNumber = 1;
::google::protobuf::uint32 errorcode() const;
void set_errorcode(::google::protobuf::uint32 value);
// @@protoc_insertion_point(class_scope:Kinova.Api.Test.TestError)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::uint32 errorcode_;
mutable int _cached_size_;
friend struct ::protobuf_Test_2eproto::TableStruct;
friend void ::protobuf_Test_2eproto::InitDefaultsTestErrorImpl();
};
// -------------------------------------------------------------------
class SomethingChanged : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.Test.SomethingChanged) */ {
public:
SomethingChanged();
virtual ~SomethingChanged();
SomethingChanged(const SomethingChanged& from);
inline SomethingChanged& operator=(const SomethingChanged& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
SomethingChanged(SomethingChanged&& from) noexcept
: SomethingChanged() {
*this = ::std::move(from);
}
inline SomethingChanged& operator=(SomethingChanged&& 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 SomethingChanged& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const SomethingChanged* internal_default_instance() {
return reinterpret_cast<const SomethingChanged*>(
&_SomethingChanged_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
9;
void Swap(SomethingChanged* other);
friend void swap(SomethingChanged& a, SomethingChanged& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline SomethingChanged* New() const PROTOBUF_FINAL { return New(NULL); }
SomethingChanged* 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 SomethingChanged& from);
void MergeFrom(const SomethingChanged& 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(SomethingChanged* 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.Timestamp timestamp = 1;
bool has_timestamp() const;
void clear_timestamp();
static const int kTimestampFieldNumber = 1;
const ::Kinova::Api::Common::Timestamp& timestamp() const;
::Kinova::Api::Common::Timestamp* release_timestamp();
::Kinova::Api::Common::Timestamp* mutable_timestamp();
void set_allocated_timestamp(::Kinova::Api::Common::Timestamp* timestamp);
// .Kinova.Api.Common.UserProfileHandle user_handle = 2;
bool has_user_handle() const;
void clear_user_handle();
static const int kUserHandleFieldNumber = 2;
const ::Kinova::Api::Common::UserProfileHandle& user_handle() const;
::Kinova::Api::Common::UserProfileHandle* release_user_handle();
::Kinova::Api::Common::UserProfileHandle* mutable_user_handle();
void set_allocated_user_handle(::Kinova::Api::Common::UserProfileHandle* user_handle);
// .Kinova.Api.Test.NotifData data = 3;
bool has_data() const;
void clear_data();
static const int kDataFieldNumber = 3;
const ::Kinova::Api::Test::NotifData& data() const;
::Kinova::Api::Test::NotifData* release_data();
::Kinova::Api::Test::NotifData* mutable_data();
void set_allocated_data(::Kinova::Api::Test::NotifData* data);
// @@protoc_insertion_point(class_scope:Kinova.Api.Test.SomethingChanged)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::Kinova::Api::Common::Timestamp* timestamp_;
::Kinova::Api::Common::UserProfileHandle* user_handle_;
::Kinova::Api::Test::NotifData* data_;
mutable int _cached_size_;
friend struct ::protobuf_Test_2eproto::TableStruct;
friend void ::protobuf_Test_2eproto::InitDefaultsSomethingChangedImpl();
};
// -------------------------------------------------------------------
class Delay : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.Test.Delay) */ {
public:
Delay();
virtual ~Delay();
Delay(const Delay& from);
inline Delay& operator=(const Delay& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
Delay(Delay&& from) noexcept
: Delay() {
*this = ::std::move(from);
}
inline Delay& operator=(Delay&& 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 Delay& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const Delay* internal_default_instance() {
return reinterpret_cast<const Delay*>(
&_Delay_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
10;
void Swap(Delay* other);
friend void swap(Delay& a, Delay& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline Delay* New() const PROTOBUF_FINAL { return New(NULL); }
Delay* 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 Delay& from);
void MergeFrom(const Delay& 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(Delay* 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 ms = 1;
void clear_ms();
static const int kMsFieldNumber = 1;
::google::protobuf::uint32 ms() const;
void set_ms(::google::protobuf::uint32 value);
// @@protoc_insertion_point(class_scope:Kinova.Api.Test.Delay)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::uint32 ms_;
mutable int _cached_size_;
friend struct ::protobuf_Test_2eproto::TableStruct;
friend void ::protobuf_Test_2eproto::InitDefaultsDelayImpl();
};
// -------------------------------------------------------------------
class RequestFromServerMessage : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.Test.RequestFromServerMessage) */ {
public:
RequestFromServerMessage();
virtual ~RequestFromServerMessage();
RequestFromServerMessage(const RequestFromServerMessage& from);
inline RequestFromServerMessage& operator=(const RequestFromServerMessage& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
RequestFromServerMessage(RequestFromServerMessage&& from) noexcept
: RequestFromServerMessage() {
*this = ::std::move(from);
}
inline RequestFromServerMessage& operator=(RequestFromServerMessage&& 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 RequestFromServerMessage& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const RequestFromServerMessage* internal_default_instance() {
return reinterpret_cast<const RequestFromServerMessage*>(
&_RequestFromServerMessage_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
11;
void Swap(RequestFromServerMessage* other);
friend void swap(RequestFromServerMessage& a, RequestFromServerMessage& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline RequestFromServerMessage* New() const PROTOBUF_FINAL { return New(NULL); }
RequestFromServerMessage* 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 RequestFromServerMessage& from);
void MergeFrom(const RequestFromServerMessage& 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(RequestFromServerMessage* 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 req = 1;
void clear_req();
static const int kReqFieldNumber = 1;
const ::std::string& req() const;
void set_req(const ::std::string& value);
#if LANG_CXX11
void set_req(::std::string&& value);
#endif
void set_req(const char* value);
void set_req(const char* value, size_t size);
::std::string* mutable_req();
::std::string* release_req();
void set_allocated_req(::std::string* req);
// @@protoc_insertion_point(class_scope:Kinova.Api.Test.RequestFromServerMessage)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::internal::ArenaStringPtr req_;
mutable int _cached_size_;
friend struct ::protobuf_Test_2eproto::TableStruct;
friend void ::protobuf_Test_2eproto::InitDefaultsRequestFromServerMessageImpl();
};
// -------------------------------------------------------------------
class ResponseFromClientMessage : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Kinova.Api.Test.ResponseFromClientMessage) */ {
public:
ResponseFromClientMessage();
virtual ~ResponseFromClientMessage();
ResponseFromClientMessage(const ResponseFromClientMessage& from);
inline ResponseFromClientMessage& operator=(const ResponseFromClientMessage& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
ResponseFromClientMessage(ResponseFromClientMessage&& from) noexcept
: ResponseFromClientMessage() {
*this = ::std::move(from);
}
inline ResponseFromClientMessage& operator=(ResponseFromClientMessage&& 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 ResponseFromClientMessage& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const ResponseFromClientMessage* internal_default_instance() {
return reinterpret_cast<const ResponseFromClientMessage*>(
&_ResponseFromClientMessage_default_instance_);
}
static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
12;
void Swap(ResponseFromClientMessage* other);
friend void swap(ResponseFromClientMessage& a, ResponseFromClientMessage& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline ResponseFromClientMessage* New() const PROTOBUF_FINAL { return New(NULL); }
ResponseFromClientMessage* 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 ResponseFromClientMessage& from);
void MergeFrom(const ResponseFromClientMessage& 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(ResponseFromClientMessage* 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 res = 1;
void clear_res();
static const int kResFieldNumber = 1;
const ::std::string& res() const;
void set_res(const ::std::string& value);
#if LANG_CXX11
void set_res(::std::string&& value);
#endif
void set_res(const char* value);
void set_res(const char* value, size_t size);
::std::string* mutable_res();
::std::string* release_res();
void set_allocated_res(::std::string* res);
// @@protoc_insertion_point(class_scope:Kinova.Api.Test.ResponseFromClientMessage)
private:
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::internal::ArenaStringPtr res_;
mutable int _cached_size_;
friend struct ::protobuf_Test_2eproto::TableStruct;
friend void ::protobuf_Test_2eproto::InitDefaultsResponseFromClientMessageImpl();
};
// ===================================================================
// ===================================================================
#ifdef __GNUC__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wstrict-aliasing"
#endif // __GNUC__
// validateStruct
// .Kinova.Api.Test.SendStruct client_struct = 1;
inline bool validateStruct::has_client_struct() const {
return this != internal_default_instance() && client_struct_ != NULL;
}
inline void validateStruct::clear_client_struct() {
if (GetArenaNoVirtual() == NULL && client_struct_ != NULL) {
delete client_struct_;
}
client_struct_ = NULL;
}
inline const ::Kinova::Api::Test::SendStruct& validateStruct::client_struct() const {
const ::Kinova::Api::Test::SendStruct* p = client_struct_;
// @@protoc_insertion_point(field_get:Kinova.Api.Test.validateStruct.client_struct)
return p != NULL ? *p : *reinterpret_cast<const ::Kinova::Api::Test::SendStruct*>(
&::Kinova::Api::Test::_SendStruct_default_instance_);
}
inline ::Kinova::Api::Test::SendStruct* validateStruct::release_client_struct() {
// @@protoc_insertion_point(field_release:Kinova.Api.Test.validateStruct.client_struct)
::Kinova::Api::Test::SendStruct* temp = client_struct_;
client_struct_ = NULL;
return temp;
}
inline ::Kinova::Api::Test::SendStruct* validateStruct::mutable_client_struct() {
if (client_struct_ == NULL) {
client_struct_ = new ::Kinova::Api::Test::SendStruct;
}
// @@protoc_insertion_point(field_mutable:Kinova.Api.Test.validateStruct.client_struct)
return client_struct_;
}
inline void validateStruct::set_allocated_client_struct(::Kinova::Api::Test::SendStruct* client_struct) {
::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
if (message_arena == NULL) {
delete client_struct_;
}
if (client_struct) {
::google::protobuf::Arena* submessage_arena = NULL;
if (message_arena != submessage_arena) {
client_struct = ::google::protobuf::internal::GetOwnedMessage(
message_arena, client_struct, submessage_arena);
}
} else {
}
client_struct_ = client_struct;
// @@protoc_insertion_point(field_set_allocated:Kinova.Api.Test.validateStruct.client_struct)
}
// .Kinova.Api.Test.RcvStruct server_struct = 2;
inline bool validateStruct::has_server_struct() const {
return this != internal_default_instance() && server_struct_ != NULL;
}
inline void validateStruct::clear_server_struct() {
if (GetArenaNoVirtual() == NULL && server_struct_ != NULL) {
delete server_struct_;
}
server_struct_ = NULL;
}
inline const ::Kinova::Api::Test::RcvStruct& validateStruct::server_struct() const {
const ::Kinova::Api::Test::RcvStruct* p = server_struct_;
// @@protoc_insertion_point(field_get:Kinova.Api.Test.validateStruct.server_struct)
return p != NULL ? *p : *reinterpret_cast<const ::Kinova::Api::Test::RcvStruct*>(
&::Kinova::Api::Test::_RcvStruct_default_instance_);
}
inline ::Kinova::Api::Test::RcvStruct* validateStruct::release_server_struct() {
// @@protoc_insertion_point(field_release:Kinova.Api.Test.validateStruct.server_struct)
::Kinova::Api::Test::RcvStruct* temp = server_struct_;
server_struct_ = NULL;
return temp;
}
inline ::Kinova::Api::Test::RcvStruct* validateStruct::mutable_server_struct() {
if (server_struct_ == NULL) {
server_struct_ = new ::Kinova::Api::Test::RcvStruct;
}
// @@protoc_insertion_point(field_mutable:Kinova.Api.Test.validateStruct.server_struct)
return server_struct_;
}
inline void validateStruct::set_allocated_server_struct(::Kinova::Api::Test::RcvStruct* server_struct) {
::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
if (message_arena == NULL) {
delete server_struct_;
}
if (server_struct) {
::google::protobuf::Arena* submessage_arena = NULL;
if (message_arena != submessage_arena) {
server_struct = ::google::protobuf::internal::GetOwnedMessage(
message_arena, server_struct, submessage_arena);
}
} else {
}
server_struct_ = server_struct;
// @@protoc_insertion_point(field_set_allocated:Kinova.Api.Test.validateStruct.server_struct)
}
// -------------------------------------------------------------------
// SendStruct
// bytes bytes_value = 1;
inline void SendStruct::clear_bytes_value() {
bytes_value_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline const ::std::string& SendStruct::bytes_value() const {
// @@protoc_insertion_point(field_get:Kinova.Api.Test.SendStruct.bytes_value)
return bytes_value_.GetNoArena();
}
inline void SendStruct::set_bytes_value(const ::std::string& value) {
bytes_value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
// @@protoc_insertion_point(field_set:Kinova.Api.Test.SendStruct.bytes_value)
}
#if LANG_CXX11
inline void SendStruct::set_bytes_value(::std::string&& value) {
bytes_value_.SetNoArena(
&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
// @@protoc_insertion_point(field_set_rvalue:Kinova.Api.Test.SendStruct.bytes_value)
}
#endif
inline void SendStruct::set_bytes_value(const char* value) {
GOOGLE_DCHECK(value != NULL);
bytes_value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
// @@protoc_insertion_point(field_set_char:Kinova.Api.Test.SendStruct.bytes_value)
}
inline void SendStruct::set_bytes_value(const void* value, size_t size) {
bytes_value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
::std::string(reinterpret_cast<const char*>(value), size));
// @@protoc_insertion_point(field_set_pointer:Kinova.Api.Test.SendStruct.bytes_value)
}
inline ::std::string* SendStruct::mutable_bytes_value() {
// @@protoc_insertion_point(field_mutable:Kinova.Api.Test.SendStruct.bytes_value)
return bytes_value_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline ::std::string* SendStruct::release_bytes_value() {
// @@protoc_insertion_point(field_release:Kinova.Api.Test.SendStruct.bytes_value)
return bytes_value_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline void SendStruct::set_allocated_bytes_value(::std::string* bytes_value) {
if (bytes_value != NULL) {
} else {
}
bytes_value_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), bytes_value);
// @@protoc_insertion_point(field_set_allocated:Kinova.Api.Test.SendStruct.bytes_value)
}
// uint32 uint32_value = 2;
inline void SendStruct::clear_uint32_value() {
uint32_value_ = 0u;
}
inline ::google::protobuf::uint32 SendStruct::uint32_value() const {
// @@protoc_insertion_point(field_get:Kinova.Api.Test.SendStruct.uint32_value)
return uint32_value_;
}
inline void SendStruct::set_uint32_value(::google::protobuf::uint32 value) {
uint32_value_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.Test.SendStruct.uint32_value)
}
// fixed32 fixed32_value = 3;
inline void SendStruct::clear_fixed32_value() {
fixed32_value_ = 0u;
}
inline ::google::protobuf::uint32 SendStruct::fixed32_value() const {
// @@protoc_insertion_point(field_get:Kinova.Api.Test.SendStruct.fixed32_value)
return fixed32_value_;
}
inline void SendStruct::set_fixed32_value(::google::protobuf::uint32 value) {
fixed32_value_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.Test.SendStruct.fixed32_value)
}
// string string_value = 4;
inline void SendStruct::clear_string_value() {
string_value_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline const ::std::string& SendStruct::string_value() const {
// @@protoc_insertion_point(field_get:Kinova.Api.Test.SendStruct.string_value)
return string_value_.GetNoArena();
}
inline void SendStruct::set_string_value(const ::std::string& value) {
string_value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
// @@protoc_insertion_point(field_set:Kinova.Api.Test.SendStruct.string_value)
}
#if LANG_CXX11
inline void SendStruct::set_string_value(::std::string&& value) {
string_value_.SetNoArena(
&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
// @@protoc_insertion_point(field_set_rvalue:Kinova.Api.Test.SendStruct.string_value)
}
#endif
inline void SendStruct::set_string_value(const char* value) {
GOOGLE_DCHECK(value != NULL);
string_value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
// @@protoc_insertion_point(field_set_char:Kinova.Api.Test.SendStruct.string_value)
}
inline void SendStruct::set_string_value(const char* value, size_t size) {
string_value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
::std::string(reinterpret_cast<const char*>(value), size));
// @@protoc_insertion_point(field_set_pointer:Kinova.Api.Test.SendStruct.string_value)
}
inline ::std::string* SendStruct::mutable_string_value() {
// @@protoc_insertion_point(field_mutable:Kinova.Api.Test.SendStruct.string_value)
return string_value_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline ::std::string* SendStruct::release_string_value() {
// @@protoc_insertion_point(field_release:Kinova.Api.Test.SendStruct.string_value)
return string_value_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline void SendStruct::set_allocated_string_value(::std::string* string_value) {
if (string_value != NULL) {
} else {
}
string_value_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), string_value);
// @@protoc_insertion_point(field_set_allocated:Kinova.Api.Test.SendStruct.string_value)
}
// .Kinova.Api.Test.Enum enum_value = 5;
inline void SendStruct::clear_enum_value() {
enum_value_ = 0;
}
inline ::Kinova::Api::Test::Enum SendStruct::enum_value() const {
// @@protoc_insertion_point(field_get:Kinova.Api.Test.SendStruct.enum_value)
return static_cast< ::Kinova::Api::Test::Enum >(enum_value_);
}
inline void SendStruct::set_enum_value(::Kinova::Api::Test::Enum value) {
enum_value_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.Test.SendStruct.enum_value)
}
// .Kinova.Api.Test.EmbeddedStruct embedded_struct_value = 6;
inline bool SendStruct::has_embedded_struct_value() const {
return this != internal_default_instance() && embedded_struct_value_ != NULL;
}
inline void SendStruct::clear_embedded_struct_value() {
if (GetArenaNoVirtual() == NULL && embedded_struct_value_ != NULL) {
delete embedded_struct_value_;
}
embedded_struct_value_ = NULL;
}
inline const ::Kinova::Api::Test::EmbeddedStruct& SendStruct::embedded_struct_value() const {
const ::Kinova::Api::Test::EmbeddedStruct* p = embedded_struct_value_;
// @@protoc_insertion_point(field_get:Kinova.Api.Test.SendStruct.embedded_struct_value)
return p != NULL ? *p : *reinterpret_cast<const ::Kinova::Api::Test::EmbeddedStruct*>(
&::Kinova::Api::Test::_EmbeddedStruct_default_instance_);
}
inline ::Kinova::Api::Test::EmbeddedStruct* SendStruct::release_embedded_struct_value() {
// @@protoc_insertion_point(field_release:Kinova.Api.Test.SendStruct.embedded_struct_value)
::Kinova::Api::Test::EmbeddedStruct* temp = embedded_struct_value_;
embedded_struct_value_ = NULL;
return temp;
}
inline ::Kinova::Api::Test::EmbeddedStruct* SendStruct::mutable_embedded_struct_value() {
if (embedded_struct_value_ == NULL) {
embedded_struct_value_ = new ::Kinova::Api::Test::EmbeddedStruct;
}
// @@protoc_insertion_point(field_mutable:Kinova.Api.Test.SendStruct.embedded_struct_value)
return embedded_struct_value_;
}
inline void SendStruct::set_allocated_embedded_struct_value(::Kinova::Api::Test::EmbeddedStruct* embedded_struct_value) {
::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
if (message_arena == NULL) {
delete embedded_struct_value_;
}
if (embedded_struct_value) {
::google::protobuf::Arena* submessage_arena = NULL;
if (message_arena != submessage_arena) {
embedded_struct_value = ::google::protobuf::internal::GetOwnedMessage(
message_arena, embedded_struct_value, submessage_arena);
}
} else {
}
embedded_struct_value_ = embedded_struct_value;
// @@protoc_insertion_point(field_set_allocated:Kinova.Api.Test.SendStruct.embedded_struct_value)
}
// repeated uint32 repeated_uint32_value = 7;
inline int SendStruct::repeated_uint32_value_size() const {
return repeated_uint32_value_.size();
}
inline void SendStruct::clear_repeated_uint32_value() {
repeated_uint32_value_.Clear();
}
inline ::google::protobuf::uint32 SendStruct::repeated_uint32_value(int index) const {
// @@protoc_insertion_point(field_get:Kinova.Api.Test.SendStruct.repeated_uint32_value)
return repeated_uint32_value_.Get(index);
}
inline void SendStruct::set_repeated_uint32_value(int index, ::google::protobuf::uint32 value) {
repeated_uint32_value_.Set(index, value);
// @@protoc_insertion_point(field_set:Kinova.Api.Test.SendStruct.repeated_uint32_value)
}
inline void SendStruct::add_repeated_uint32_value(::google::protobuf::uint32 value) {
repeated_uint32_value_.Add(value);
// @@protoc_insertion_point(field_add:Kinova.Api.Test.SendStruct.repeated_uint32_value)
}
inline const ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >&
SendStruct::repeated_uint32_value() const {
// @@protoc_insertion_point(field_list:Kinova.Api.Test.SendStruct.repeated_uint32_value)
return repeated_uint32_value_;
}
inline ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >*
SendStruct::mutable_repeated_uint32_value() {
// @@protoc_insertion_point(field_mutable_list:Kinova.Api.Test.SendStruct.repeated_uint32_value)
return &repeated_uint32_value_;
}
// -------------------------------------------------------------------
// EmbeddedStruct
// uint32 embedded_uint = 1;
inline void EmbeddedStruct::clear_embedded_uint() {
embedded_uint_ = 0u;
}
inline ::google::protobuf::uint32 EmbeddedStruct::embedded_uint() const {
// @@protoc_insertion_point(field_get:Kinova.Api.Test.EmbeddedStruct.embedded_uint)
return embedded_uint_;
}
inline void EmbeddedStruct::set_embedded_uint(::google::protobuf::uint32 value) {
embedded_uint_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.Test.EmbeddedStruct.embedded_uint)
}
// -------------------------------------------------------------------
// RcvStruct
// bytes bytes_value = 1;
inline void RcvStruct::clear_bytes_value() {
bytes_value_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline const ::std::string& RcvStruct::bytes_value() const {
// @@protoc_insertion_point(field_get:Kinova.Api.Test.RcvStruct.bytes_value)
return bytes_value_.GetNoArena();
}
inline void RcvStruct::set_bytes_value(const ::std::string& value) {
bytes_value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
// @@protoc_insertion_point(field_set:Kinova.Api.Test.RcvStruct.bytes_value)
}
#if LANG_CXX11
inline void RcvStruct::set_bytes_value(::std::string&& value) {
bytes_value_.SetNoArena(
&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
// @@protoc_insertion_point(field_set_rvalue:Kinova.Api.Test.RcvStruct.bytes_value)
}
#endif
inline void RcvStruct::set_bytes_value(const char* value) {
GOOGLE_DCHECK(value != NULL);
bytes_value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
// @@protoc_insertion_point(field_set_char:Kinova.Api.Test.RcvStruct.bytes_value)
}
inline void RcvStruct::set_bytes_value(const void* value, size_t size) {
bytes_value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
::std::string(reinterpret_cast<const char*>(value), size));
// @@protoc_insertion_point(field_set_pointer:Kinova.Api.Test.RcvStruct.bytes_value)
}
inline ::std::string* RcvStruct::mutable_bytes_value() {
// @@protoc_insertion_point(field_mutable:Kinova.Api.Test.RcvStruct.bytes_value)
return bytes_value_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline ::std::string* RcvStruct::release_bytes_value() {
// @@protoc_insertion_point(field_release:Kinova.Api.Test.RcvStruct.bytes_value)
return bytes_value_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline void RcvStruct::set_allocated_bytes_value(::std::string* bytes_value) {
if (bytes_value != NULL) {
} else {
}
bytes_value_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), bytes_value);
// @@protoc_insertion_point(field_set_allocated:Kinova.Api.Test.RcvStruct.bytes_value)
}
// uint32 uint32_value = 2;
inline void RcvStruct::clear_uint32_value() {
uint32_value_ = 0u;
}
inline ::google::protobuf::uint32 RcvStruct::uint32_value() const {
// @@protoc_insertion_point(field_get:Kinova.Api.Test.RcvStruct.uint32_value)
return uint32_value_;
}
inline void RcvStruct::set_uint32_value(::google::protobuf::uint32 value) {
uint32_value_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.Test.RcvStruct.uint32_value)
}
// fixed32 fixed32_value = 3;
inline void RcvStruct::clear_fixed32_value() {
fixed32_value_ = 0u;
}
inline ::google::protobuf::uint32 RcvStruct::fixed32_value() const {
// @@protoc_insertion_point(field_get:Kinova.Api.Test.RcvStruct.fixed32_value)
return fixed32_value_;
}
inline void RcvStruct::set_fixed32_value(::google::protobuf::uint32 value) {
fixed32_value_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.Test.RcvStruct.fixed32_value)
}
// string string_value = 4;
inline void RcvStruct::clear_string_value() {
string_value_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline const ::std::string& RcvStruct::string_value() const {
// @@protoc_insertion_point(field_get:Kinova.Api.Test.RcvStruct.string_value)
return string_value_.GetNoArena();
}
inline void RcvStruct::set_string_value(const ::std::string& value) {
string_value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
// @@protoc_insertion_point(field_set:Kinova.Api.Test.RcvStruct.string_value)
}
#if LANG_CXX11
inline void RcvStruct::set_string_value(::std::string&& value) {
string_value_.SetNoArena(
&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
// @@protoc_insertion_point(field_set_rvalue:Kinova.Api.Test.RcvStruct.string_value)
}
#endif
inline void RcvStruct::set_string_value(const char* value) {
GOOGLE_DCHECK(value != NULL);
string_value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
// @@protoc_insertion_point(field_set_char:Kinova.Api.Test.RcvStruct.string_value)
}
inline void RcvStruct::set_string_value(const char* value, size_t size) {
string_value_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
::std::string(reinterpret_cast<const char*>(value), size));
// @@protoc_insertion_point(field_set_pointer:Kinova.Api.Test.RcvStruct.string_value)
}
inline ::std::string* RcvStruct::mutable_string_value() {
// @@protoc_insertion_point(field_mutable:Kinova.Api.Test.RcvStruct.string_value)
return string_value_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline ::std::string* RcvStruct::release_string_value() {
// @@protoc_insertion_point(field_release:Kinova.Api.Test.RcvStruct.string_value)
return string_value_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline void RcvStruct::set_allocated_string_value(::std::string* string_value) {
if (string_value != NULL) {
} else {
}
string_value_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), string_value);
// @@protoc_insertion_point(field_set_allocated:Kinova.Api.Test.RcvStruct.string_value)
}
// .Kinova.Api.Test.Enum enum_value = 5;
inline void RcvStruct::clear_enum_value() {
enum_value_ = 0;
}
inline ::Kinova::Api::Test::Enum RcvStruct::enum_value() const {
// @@protoc_insertion_point(field_get:Kinova.Api.Test.RcvStruct.enum_value)
return static_cast< ::Kinova::Api::Test::Enum >(enum_value_);
}
inline void RcvStruct::set_enum_value(::Kinova::Api::Test::Enum value) {
enum_value_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.Test.RcvStruct.enum_value)
}
// .Kinova.Api.Test.EmbeddedStruct embedded_struct_value = 6;
inline bool RcvStruct::has_embedded_struct_value() const {
return this != internal_default_instance() && embedded_struct_value_ != NULL;
}
inline void RcvStruct::clear_embedded_struct_value() {
if (GetArenaNoVirtual() == NULL && embedded_struct_value_ != NULL) {
delete embedded_struct_value_;
}
embedded_struct_value_ = NULL;
}
inline const ::Kinova::Api::Test::EmbeddedStruct& RcvStruct::embedded_struct_value() const {
const ::Kinova::Api::Test::EmbeddedStruct* p = embedded_struct_value_;
// @@protoc_insertion_point(field_get:Kinova.Api.Test.RcvStruct.embedded_struct_value)
return p != NULL ? *p : *reinterpret_cast<const ::Kinova::Api::Test::EmbeddedStruct*>(
&::Kinova::Api::Test::_EmbeddedStruct_default_instance_);
}
inline ::Kinova::Api::Test::EmbeddedStruct* RcvStruct::release_embedded_struct_value() {
// @@protoc_insertion_point(field_release:Kinova.Api.Test.RcvStruct.embedded_struct_value)
::Kinova::Api::Test::EmbeddedStruct* temp = embedded_struct_value_;
embedded_struct_value_ = NULL;
return temp;
}
inline ::Kinova::Api::Test::EmbeddedStruct* RcvStruct::mutable_embedded_struct_value() {
if (embedded_struct_value_ == NULL) {
embedded_struct_value_ = new ::Kinova::Api::Test::EmbeddedStruct;
}
// @@protoc_insertion_point(field_mutable:Kinova.Api.Test.RcvStruct.embedded_struct_value)
return embedded_struct_value_;
}
inline void RcvStruct::set_allocated_embedded_struct_value(::Kinova::Api::Test::EmbeddedStruct* embedded_struct_value) {
::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
if (message_arena == NULL) {
delete embedded_struct_value_;
}
if (embedded_struct_value) {
::google::protobuf::Arena* submessage_arena = NULL;
if (message_arena != submessage_arena) {
embedded_struct_value = ::google::protobuf::internal::GetOwnedMessage(
message_arena, embedded_struct_value, submessage_arena);
}
} else {
}
embedded_struct_value_ = embedded_struct_value;
// @@protoc_insertion_point(field_set_allocated:Kinova.Api.Test.RcvStruct.embedded_struct_value)
}
// repeated uint32 repeated_uint32_value = 7;
inline int RcvStruct::repeated_uint32_value_size() const {
return repeated_uint32_value_.size();
}
inline void RcvStruct::clear_repeated_uint32_value() {
repeated_uint32_value_.Clear();
}
inline ::google::protobuf::uint32 RcvStruct::repeated_uint32_value(int index) const {
// @@protoc_insertion_point(field_get:Kinova.Api.Test.RcvStruct.repeated_uint32_value)
return repeated_uint32_value_.Get(index);
}
inline void RcvStruct::set_repeated_uint32_value(int index, ::google::protobuf::uint32 value) {
repeated_uint32_value_.Set(index, value);
// @@protoc_insertion_point(field_set:Kinova.Api.Test.RcvStruct.repeated_uint32_value)
}
inline void RcvStruct::add_repeated_uint32_value(::google::protobuf::uint32 value) {
repeated_uint32_value_.Add(value);
// @@protoc_insertion_point(field_add:Kinova.Api.Test.RcvStruct.repeated_uint32_value)
}
inline const ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >&
RcvStruct::repeated_uint32_value() const {
// @@protoc_insertion_point(field_list:Kinova.Api.Test.RcvStruct.repeated_uint32_value)
return repeated_uint32_value_;
}
inline ::google::protobuf::RepeatedField< ::google::protobuf::uint32 >*
RcvStruct::mutable_repeated_uint32_value() {
// @@protoc_insertion_point(field_mutable_list:Kinova.Api.Test.RcvStruct.repeated_uint32_value)
return &repeated_uint32_value_;
}
// -------------------------------------------------------------------
// NotifOption
// uint32 dummy_option = 1;
inline void NotifOption::clear_dummy_option() {
dummy_option_ = 0u;
}
inline ::google::protobuf::uint32 NotifOption::dummy_option() const {
// @@protoc_insertion_point(field_get:Kinova.Api.Test.NotifOption.dummy_option)
return dummy_option_;
}
inline void NotifOption::set_dummy_option(::google::protobuf::uint32 value) {
dummy_option_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.Test.NotifOption.dummy_option)
}
// -------------------------------------------------------------------
// NotifData
// uint32 data = 1;
inline void NotifData::clear_data() {
data_ = 0u;
}
inline ::google::protobuf::uint32 NotifData::data() const {
// @@protoc_insertion_point(field_get:Kinova.Api.Test.NotifData.data)
return data_;
}
inline void NotifData::set_data(::google::protobuf::uint32 value) {
data_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.Test.NotifData.data)
}
// -------------------------------------------------------------------
// timeToResponse
// uint32 time_ms = 1;
inline void timeToResponse::clear_time_ms() {
time_ms_ = 0u;
}
inline ::google::protobuf::uint32 timeToResponse::time_ms() const {
// @@protoc_insertion_point(field_get:Kinova.Api.Test.timeToResponse.time_ms)
return time_ms_;
}
inline void timeToResponse::set_time_ms(::google::protobuf::uint32 value) {
time_ms_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.Test.timeToResponse.time_ms)
}
// -------------------------------------------------------------------
// TestNotification
// uint32 dummy_property = 1;
inline void TestNotification::clear_dummy_property() {
dummy_property_ = 0u;
}
inline ::google::protobuf::uint32 TestNotification::dummy_property() const {
// @@protoc_insertion_point(field_get:Kinova.Api.Test.TestNotification.dummy_property)
return dummy_property_;
}
inline void TestNotification::set_dummy_property(::google::protobuf::uint32 value) {
dummy_property_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.Test.TestNotification.dummy_property)
}
// -------------------------------------------------------------------
// TestError
// uint32 errorCode = 1;
inline void TestError::clear_errorcode() {
errorcode_ = 0u;
}
inline ::google::protobuf::uint32 TestError::errorcode() const {
// @@protoc_insertion_point(field_get:Kinova.Api.Test.TestError.errorCode)
return errorcode_;
}
inline void TestError::set_errorcode(::google::protobuf::uint32 value) {
errorcode_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.Test.TestError.errorCode)
}
// -------------------------------------------------------------------
// SomethingChanged
// .Kinova.Api.Common.Timestamp timestamp = 1;
inline bool SomethingChanged::has_timestamp() const {
return this != internal_default_instance() && timestamp_ != NULL;
}
inline const ::Kinova::Api::Common::Timestamp& SomethingChanged::timestamp() const {
const ::Kinova::Api::Common::Timestamp* p = timestamp_;
// @@protoc_insertion_point(field_get:Kinova.Api.Test.SomethingChanged.timestamp)
return p != NULL ? *p : *reinterpret_cast<const ::Kinova::Api::Common::Timestamp*>(
&::Kinova::Api::Common::_Timestamp_default_instance_);
}
inline ::Kinova::Api::Common::Timestamp* SomethingChanged::release_timestamp() {
// @@protoc_insertion_point(field_release:Kinova.Api.Test.SomethingChanged.timestamp)
::Kinova::Api::Common::Timestamp* temp = timestamp_;
timestamp_ = NULL;
return temp;
}
inline ::Kinova::Api::Common::Timestamp* SomethingChanged::mutable_timestamp() {
if (timestamp_ == NULL) {
timestamp_ = new ::Kinova::Api::Common::Timestamp;
}
// @@protoc_insertion_point(field_mutable:Kinova.Api.Test.SomethingChanged.timestamp)
return timestamp_;
}
inline void SomethingChanged::set_allocated_timestamp(::Kinova::Api::Common::Timestamp* timestamp) {
::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
if (message_arena == NULL) {
delete reinterpret_cast< ::google::protobuf::MessageLite*>(timestamp_);
}
if (timestamp) {
::google::protobuf::Arena* submessage_arena = NULL;
if (message_arena != submessage_arena) {
timestamp = ::google::protobuf::internal::GetOwnedMessage(
message_arena, timestamp, submessage_arena);
}
} else {
}
timestamp_ = timestamp;
// @@protoc_insertion_point(field_set_allocated:Kinova.Api.Test.SomethingChanged.timestamp)
}
// .Kinova.Api.Common.UserProfileHandle user_handle = 2;
inline bool SomethingChanged::has_user_handle() const {
return this != internal_default_instance() && user_handle_ != NULL;
}
inline const ::Kinova::Api::Common::UserProfileHandle& SomethingChanged::user_handle() const {
const ::Kinova::Api::Common::UserProfileHandle* p = user_handle_;
// @@protoc_insertion_point(field_get:Kinova.Api.Test.SomethingChanged.user_handle)
return p != NULL ? *p : *reinterpret_cast<const ::Kinova::Api::Common::UserProfileHandle*>(
&::Kinova::Api::Common::_UserProfileHandle_default_instance_);
}
inline ::Kinova::Api::Common::UserProfileHandle* SomethingChanged::release_user_handle() {
// @@protoc_insertion_point(field_release:Kinova.Api.Test.SomethingChanged.user_handle)
::Kinova::Api::Common::UserProfileHandle* temp = user_handle_;
user_handle_ = NULL;
return temp;
}
inline ::Kinova::Api::Common::UserProfileHandle* SomethingChanged::mutable_user_handle() {
if (user_handle_ == NULL) {
user_handle_ = new ::Kinova::Api::Common::UserProfileHandle;
}
// @@protoc_insertion_point(field_mutable:Kinova.Api.Test.SomethingChanged.user_handle)
return user_handle_;
}
inline void SomethingChanged::set_allocated_user_handle(::Kinova::Api::Common::UserProfileHandle* user_handle) {
::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
if (message_arena == NULL) {
delete reinterpret_cast< ::google::protobuf::MessageLite*>(user_handle_);
}
if (user_handle) {
::google::protobuf::Arena* submessage_arena = NULL;
if (message_arena != submessage_arena) {
user_handle = ::google::protobuf::internal::GetOwnedMessage(
message_arena, user_handle, submessage_arena);
}
} else {
}
user_handle_ = user_handle;
// @@protoc_insertion_point(field_set_allocated:Kinova.Api.Test.SomethingChanged.user_handle)
}
// .Kinova.Api.Test.NotifData data = 3;
inline bool SomethingChanged::has_data() const {
return this != internal_default_instance() && data_ != NULL;
}
inline void SomethingChanged::clear_data() {
if (GetArenaNoVirtual() == NULL && data_ != NULL) {
delete data_;
}
data_ = NULL;
}
inline const ::Kinova::Api::Test::NotifData& SomethingChanged::data() const {
const ::Kinova::Api::Test::NotifData* p = data_;
// @@protoc_insertion_point(field_get:Kinova.Api.Test.SomethingChanged.data)
return p != NULL ? *p : *reinterpret_cast<const ::Kinova::Api::Test::NotifData*>(
&::Kinova::Api::Test::_NotifData_default_instance_);
}
inline ::Kinova::Api::Test::NotifData* SomethingChanged::release_data() {
// @@protoc_insertion_point(field_release:Kinova.Api.Test.SomethingChanged.data)
::Kinova::Api::Test::NotifData* temp = data_;
data_ = NULL;
return temp;
}
inline ::Kinova::Api::Test::NotifData* SomethingChanged::mutable_data() {
if (data_ == NULL) {
data_ = new ::Kinova::Api::Test::NotifData;
}
// @@protoc_insertion_point(field_mutable:Kinova.Api.Test.SomethingChanged.data)
return data_;
}
inline void SomethingChanged::set_allocated_data(::Kinova::Api::Test::NotifData* data) {
::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
if (message_arena == NULL) {
delete data_;
}
if (data) {
::google::protobuf::Arena* submessage_arena = NULL;
if (message_arena != submessage_arena) {
data = ::google::protobuf::internal::GetOwnedMessage(
message_arena, data, submessage_arena);
}
} else {
}
data_ = data;
// @@protoc_insertion_point(field_set_allocated:Kinova.Api.Test.SomethingChanged.data)
}
// -------------------------------------------------------------------
// Delay
// uint32 ms = 1;
inline void Delay::clear_ms() {
ms_ = 0u;
}
inline ::google::protobuf::uint32 Delay::ms() const {
// @@protoc_insertion_point(field_get:Kinova.Api.Test.Delay.ms)
return ms_;
}
inline void Delay::set_ms(::google::protobuf::uint32 value) {
ms_ = value;
// @@protoc_insertion_point(field_set:Kinova.Api.Test.Delay.ms)
}
// -------------------------------------------------------------------
// RequestFromServerMessage
// string req = 1;
inline void RequestFromServerMessage::clear_req() {
req_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline const ::std::string& RequestFromServerMessage::req() const {
// @@protoc_insertion_point(field_get:Kinova.Api.Test.RequestFromServerMessage.req)
return req_.GetNoArena();
}
inline void RequestFromServerMessage::set_req(const ::std::string& value) {
req_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
// @@protoc_insertion_point(field_set:Kinova.Api.Test.RequestFromServerMessage.req)
}
#if LANG_CXX11
inline void RequestFromServerMessage::set_req(::std::string&& value) {
req_.SetNoArena(
&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
// @@protoc_insertion_point(field_set_rvalue:Kinova.Api.Test.RequestFromServerMessage.req)
}
#endif
inline void RequestFromServerMessage::set_req(const char* value) {
GOOGLE_DCHECK(value != NULL);
req_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
// @@protoc_insertion_point(field_set_char:Kinova.Api.Test.RequestFromServerMessage.req)
}
inline void RequestFromServerMessage::set_req(const char* value, size_t size) {
req_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
::std::string(reinterpret_cast<const char*>(value), size));
// @@protoc_insertion_point(field_set_pointer:Kinova.Api.Test.RequestFromServerMessage.req)
}
inline ::std::string* RequestFromServerMessage::mutable_req() {
// @@protoc_insertion_point(field_mutable:Kinova.Api.Test.RequestFromServerMessage.req)
return req_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline ::std::string* RequestFromServerMessage::release_req() {
// @@protoc_insertion_point(field_release:Kinova.Api.Test.RequestFromServerMessage.req)
return req_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline void RequestFromServerMessage::set_allocated_req(::std::string* req) {
if (req != NULL) {
} else {
}
req_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), req);
// @@protoc_insertion_point(field_set_allocated:Kinova.Api.Test.RequestFromServerMessage.req)
}
// -------------------------------------------------------------------
// ResponseFromClientMessage
// string res = 1;
inline void ResponseFromClientMessage::clear_res() {
res_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline const ::std::string& ResponseFromClientMessage::res() const {
// @@protoc_insertion_point(field_get:Kinova.Api.Test.ResponseFromClientMessage.res)
return res_.GetNoArena();
}
inline void ResponseFromClientMessage::set_res(const ::std::string& value) {
res_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
// @@protoc_insertion_point(field_set:Kinova.Api.Test.ResponseFromClientMessage.res)
}
#if LANG_CXX11
inline void ResponseFromClientMessage::set_res(::std::string&& value) {
res_.SetNoArena(
&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
// @@protoc_insertion_point(field_set_rvalue:Kinova.Api.Test.ResponseFromClientMessage.res)
}
#endif
inline void ResponseFromClientMessage::set_res(const char* value) {
GOOGLE_DCHECK(value != NULL);
res_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
// @@protoc_insertion_point(field_set_char:Kinova.Api.Test.ResponseFromClientMessage.res)
}
inline void ResponseFromClientMessage::set_res(const char* value, size_t size) {
res_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
::std::string(reinterpret_cast<const char*>(value), size));
// @@protoc_insertion_point(field_set_pointer:Kinova.Api.Test.ResponseFromClientMessage.res)
}
inline ::std::string* ResponseFromClientMessage::mutable_res() {
// @@protoc_insertion_point(field_mutable:Kinova.Api.Test.ResponseFromClientMessage.res)
return res_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline ::std::string* ResponseFromClientMessage::release_res() {
// @@protoc_insertion_point(field_release:Kinova.Api.Test.ResponseFromClientMessage.res)
return res_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
}
inline void ResponseFromClientMessage::set_allocated_res(::std::string* res) {
if (res != NULL) {
} else {
}
res_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), res);
// @@protoc_insertion_point(field_set_allocated:Kinova.Api.Test.ResponseFromClientMessage.res)
}
#ifdef __GNUC__
#pragma GCC diagnostic pop
#endif // __GNUC__
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// @@protoc_insertion_point(namespace_scope)
} // namespace Test
} // namespace Api
} // namespace Kinova
namespace google {
namespace protobuf {
template <> struct is_proto_enum< ::Kinova::Api::Test::ServiceVersion> : ::google::protobuf::internal::true_type {};
template <>
inline const EnumDescriptor* GetEnumDescriptor< ::Kinova::Api::Test::ServiceVersion>() {
return ::Kinova::Api::Test::ServiceVersion_descriptor();
}
template <> struct is_proto_enum< ::Kinova::Api::Test::Enum> : ::google::protobuf::internal::true_type {};
template <>
inline const EnumDescriptor* GetEnumDescriptor< ::Kinova::Api::Test::Enum>() {
return ::Kinova::Api::Test::Enum_descriptor();
}
} // namespace protobuf
} // namespace google
// @@protoc_insertion_point(global_scope)
#endif // PROTOBUF_Test_2eproto__INCLUDED
|