tracerMessage.pb.h
88.6 KB
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
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: tracerMessage.proto
#ifndef GOOGLE_PROTOBUF_INCLUDED_tracerMessage_2eproto
#define GOOGLE_PROTOBUF_INCLUDED_tracerMessage_2eproto
#include <limits>
#include <string>
#include <google/protobuf/port_def.inc>
#if PROTOBUF_VERSION < 3021000
#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 3021005 < 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/port_undef.inc>
#include <google/protobuf/io/coded_stream.h>
#include <google/protobuf/arena.h>
#include <google/protobuf/arenastring.h>
#include <google/protobuf/generated_message_util.h>
#include <google/protobuf/metadata_lite.h>
#include <google/protobuf/generated_message_reflection.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/unknown_field_set.h>
// @@protoc_insertion_point(includes)
#include <google/protobuf/port_def.inc>
#define PROTOBUF_INTERNAL_EXPORT_tracerMessage_2eproto
PROTOBUF_NAMESPACE_OPEN
namespace internal {
class AnyMetadata;
} // namespace internal
PROTOBUF_NAMESPACE_CLOSE
// Internal implementation detail -- do not use these members.
struct TableStruct_tracerMessage_2eproto {
static const uint32_t offsets[];
};
extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_tracerMessage_2eproto;
namespace autel {
namespace protocol {
class TracerStaggerFreqMessage;
struct TracerStaggerFreqMessageDefaultTypeInternal;
extern TracerStaggerFreqMessageDefaultTypeInternal _TracerStaggerFreqMessage_default_instance_;
class TracerSystemInfoMessage;
struct TracerSystemInfoMessageDefaultTypeInternal;
extern TracerSystemInfoMessageDefaultTypeInternal _TracerSystemInfoMessage_default_instance_;
class TracerWorkModeControlMessage;
struct TracerWorkModeControlMessageDefaultTypeInternal;
extern TracerWorkModeControlMessageDefaultTypeInternal _TracerWorkModeControlMessage_default_instance_;
class TracerWorkModeControlRspMessage;
struct TracerWorkModeControlRspMessageDefaultTypeInternal;
extern TracerWorkModeControlRspMessageDefaultTypeInternal _TracerWorkModeControlRspMessage_default_instance_;
class singleTargetInfo;
struct singleTargetInfoDefaultTypeInternal;
extern singleTargetInfoDefaultTypeInternal _singleTargetInfo_default_instance_;
class tracerMeasureInfoMessage;
struct tracerMeasureInfoMessageDefaultTypeInternal;
extern tracerMeasureInfoMessageDefaultTypeInternal _tracerMeasureInfoMessage_default_instance_;
} // namespace protocol
} // namespace autel
PROTOBUF_NAMESPACE_OPEN
template<> ::autel::protocol::TracerStaggerFreqMessage* Arena::CreateMaybeMessage<::autel::protocol::TracerStaggerFreqMessage>(Arena*);
template<> ::autel::protocol::TracerSystemInfoMessage* Arena::CreateMaybeMessage<::autel::protocol::TracerSystemInfoMessage>(Arena*);
template<> ::autel::protocol::TracerWorkModeControlMessage* Arena::CreateMaybeMessage<::autel::protocol::TracerWorkModeControlMessage>(Arena*);
template<> ::autel::protocol::TracerWorkModeControlRspMessage* Arena::CreateMaybeMessage<::autel::protocol::TracerWorkModeControlRspMessage>(Arena*);
template<> ::autel::protocol::singleTargetInfo* Arena::CreateMaybeMessage<::autel::protocol::singleTargetInfo>(Arena*);
template<> ::autel::protocol::tracerMeasureInfoMessage* Arena::CreateMaybeMessage<::autel::protocol::tracerMeasureInfoMessage>(Arena*);
PROTOBUF_NAMESPACE_CLOSE
namespace autel {
namespace protocol {
// ===================================================================
class singleTargetInfo final :
public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:autel.protocol.singleTargetInfo) */ {
public:
inline singleTargetInfo() : singleTargetInfo(nullptr) {}
~singleTargetInfo() override;
explicit PROTOBUF_CONSTEXPR singleTargetInfo(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized);
singleTargetInfo(const singleTargetInfo& from);
singleTargetInfo(singleTargetInfo&& from) noexcept
: singleTargetInfo() {
*this = ::std::move(from);
}
inline singleTargetInfo& operator=(const singleTargetInfo& from) {
CopyFrom(from);
return *this;
}
inline singleTargetInfo& operator=(singleTargetInfo&& from) noexcept {
if (this == &from) return *this;
if (GetOwningArena() == from.GetOwningArena()
#ifdef PROTOBUF_FORCE_COPY_IN_MOVE
&& GetOwningArena() != nullptr
#endif // !PROTOBUF_FORCE_COPY_IN_MOVE
) {
InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() {
return GetDescriptor();
}
static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() {
return default_instance().GetMetadata().descriptor;
}
static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() {
return default_instance().GetMetadata().reflection;
}
static const singleTargetInfo& default_instance() {
return *internal_default_instance();
}
static inline const singleTargetInfo* internal_default_instance() {
return reinterpret_cast<const singleTargetInfo*>(
&_singleTargetInfo_default_instance_);
}
static constexpr int kIndexInFileMessages =
0;
friend void swap(singleTargetInfo& a, singleTargetInfo& b) {
a.Swap(&b);
}
inline void Swap(singleTargetInfo* other) {
if (other == this) return;
#ifdef PROTOBUF_FORCE_COPY_IN_SWAP
if (GetOwningArena() != nullptr &&
GetOwningArena() == other->GetOwningArena()) {
#else // PROTOBUF_FORCE_COPY_IN_SWAP
if (GetOwningArena() == other->GetOwningArena()) {
#endif // !PROTOBUF_FORCE_COPY_IN_SWAP
InternalSwap(other);
} else {
::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
}
}
void UnsafeArenaSwap(singleTargetInfo* other) {
if (other == this) return;
GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena());
InternalSwap(other);
}
// implements Message ----------------------------------------------
singleTargetInfo* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final {
return CreateMaybeMessage<singleTargetInfo>(arena);
}
using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom;
void CopyFrom(const singleTargetInfo& from);
using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom;
void MergeFrom( const singleTargetInfo& from) {
singleTargetInfo::MergeImpl(*this, from);
}
private:
static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg);
public:
PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
size_t ByteSizeLong() const final;
const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
uint8_t* _InternalSerialize(
uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
int GetCachedSize() const final { return _impl_._cached_size_.Get(); }
private:
void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned);
void SharedDtor();
void SetCachedSize(int size) const final;
void InternalSwap(singleTargetInfo* other);
private:
friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() {
return "autel.protocol.singleTargetInfo";
}
protected:
explicit singleTargetInfo(::PROTOBUF_NAMESPACE_ID::Arena* arena,
bool is_message_owned = false);
public:
static const ClassData _class_data_;
const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*GetClassData() const final;
::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
enum : int {
kTNameFieldNumber = 17,
kTNumFieldNumber = 1,
kTTypeFieldNumber = 2,
kTCalCntFieldNumber = 3,
kTWorkStatusFieldNumber = 4,
kTTimeCreateFieldNumber = 5,
kTTimeTestFieldNumber = 6,
kTSigBandFieldNumber = 7,
kTDistanceFieldNumber = 8,
kTFreqFieldNumber = 9,
kTAmpFieldNumber = 10,
kTmFwFieldNumber = 11,
kTmFyFieldNumber = 12,
kTfFwFieldNumber = 13,
kTfFyFieldNumber = 14,
kTConfidenceLevelFieldNumber = 15,
kTTimeOffsetFieldNumber = 16,
};
// string tName = 17;
void clear_tname();
const std::string& tname() const;
template <typename ArgT0 = const std::string&, typename... ArgT>
void set_tname(ArgT0&& arg0, ArgT... args);
std::string* mutable_tname();
PROTOBUF_NODISCARD std::string* release_tname();
void set_allocated_tname(std::string* tname);
private:
const std::string& _internal_tname() const;
inline PROTOBUF_ALWAYS_INLINE void _internal_set_tname(const std::string& value);
std::string* _internal_mutable_tname();
public:
// uint32 tNum = 1;
void clear_tnum();
uint32_t tnum() const;
void set_tnum(uint32_t value);
private:
uint32_t _internal_tnum() const;
void _internal_set_tnum(uint32_t value);
public:
// uint32 tType = 2;
void clear_ttype();
uint32_t ttype() const;
void set_ttype(uint32_t value);
private:
uint32_t _internal_ttype() const;
void _internal_set_ttype(uint32_t value);
public:
// uint32 tCalCnt = 3;
void clear_tcalcnt();
uint32_t tcalcnt() const;
void set_tcalcnt(uint32_t value);
private:
uint32_t _internal_tcalcnt() const;
void _internal_set_tcalcnt(uint32_t value);
public:
// uint32 tWorkStatus = 4;
void clear_tworkstatus();
uint32_t tworkstatus() const;
void set_tworkstatus(uint32_t value);
private:
uint32_t _internal_tworkstatus() const;
void _internal_set_tworkstatus(uint32_t value);
public:
// uint32 tTimeCreate = 5;
void clear_ttimecreate();
uint32_t ttimecreate() const;
void set_ttimecreate(uint32_t value);
private:
uint32_t _internal_ttimecreate() const;
void _internal_set_ttimecreate(uint32_t value);
public:
// uint32 tTimeTest = 6;
void clear_ttimetest();
uint32_t ttimetest() const;
void set_ttimetest(uint32_t value);
private:
uint32_t _internal_ttimetest() const;
void _internal_set_ttimetest(uint32_t value);
public:
// uint32 tSigBand = 7;
void clear_tsigband();
uint32_t tsigband() const;
void set_tsigband(uint32_t value);
private:
uint32_t _internal_tsigband() const;
void _internal_set_tsigband(uint32_t value);
public:
// uint32 tDistance = 8;
void clear_tdistance();
uint32_t tdistance() const;
void set_tdistance(uint32_t value);
private:
uint32_t _internal_tdistance() const;
void _internal_set_tdistance(uint32_t value);
public:
// uint32 tFreq = 9;
void clear_tfreq();
uint32_t tfreq() const;
void set_tfreq(uint32_t value);
private:
uint32_t _internal_tfreq() const;
void _internal_set_tfreq(uint32_t value);
public:
// uint32 tAmp = 10;
void clear_tamp();
uint32_t tamp() const;
void set_tamp(uint32_t value);
private:
uint32_t _internal_tamp() const;
void _internal_set_tamp(uint32_t value);
public:
// sint32 tmFw = 11;
void clear_tmfw();
int32_t tmfw() const;
void set_tmfw(int32_t value);
private:
int32_t _internal_tmfw() const;
void _internal_set_tmfw(int32_t value);
public:
// sint32 tmFy = 12;
void clear_tmfy();
int32_t tmfy() const;
void set_tmfy(int32_t value);
private:
int32_t _internal_tmfy() const;
void _internal_set_tmfy(int32_t value);
public:
// sint32 tfFw = 13;
void clear_tffw();
int32_t tffw() const;
void set_tffw(int32_t value);
private:
int32_t _internal_tffw() const;
void _internal_set_tffw(int32_t value);
public:
// sint32 tfFy = 14;
void clear_tffy();
int32_t tffy() const;
void set_tffy(int32_t value);
private:
int32_t _internal_tffy() const;
void _internal_set_tffy(int32_t value);
public:
// uint32 tConfidenceLevel = 15;
void clear_tconfidencelevel();
uint32_t tconfidencelevel() const;
void set_tconfidencelevel(uint32_t value);
private:
uint32_t _internal_tconfidencelevel() const;
void _internal_set_tconfidencelevel(uint32_t value);
public:
// uint32 tTimeOffset = 16;
void clear_ttimeoffset();
uint32_t ttimeoffset() const;
void set_ttimeoffset(uint32_t value);
private:
uint32_t _internal_ttimeoffset() const;
void _internal_set_ttimeoffset(uint32_t value);
public:
// @@protoc_insertion_point(class_scope:autel.protocol.singleTargetInfo)
private:
class _Internal;
template <typename T> friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
typedef void InternalArenaConstructable_;
typedef void DestructorSkippable_;
struct Impl_ {
::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr tname_;
uint32_t tnum_;
uint32_t ttype_;
uint32_t tcalcnt_;
uint32_t tworkstatus_;
uint32_t ttimecreate_;
uint32_t ttimetest_;
uint32_t tsigband_;
uint32_t tdistance_;
uint32_t tfreq_;
uint32_t tamp_;
int32_t tmfw_;
int32_t tmfy_;
int32_t tffw_;
int32_t tffy_;
uint32_t tconfidencelevel_;
uint32_t ttimeoffset_;
mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
};
union { Impl_ _impl_; };
friend struct ::TableStruct_tracerMessage_2eproto;
};
// -------------------------------------------------------------------
class tracerMeasureInfoMessage final :
public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:autel.protocol.tracerMeasureInfoMessage) */ {
public:
inline tracerMeasureInfoMessage() : tracerMeasureInfoMessage(nullptr) {}
~tracerMeasureInfoMessage() override;
explicit PROTOBUF_CONSTEXPR tracerMeasureInfoMessage(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized);
tracerMeasureInfoMessage(const tracerMeasureInfoMessage& from);
tracerMeasureInfoMessage(tracerMeasureInfoMessage&& from) noexcept
: tracerMeasureInfoMessage() {
*this = ::std::move(from);
}
inline tracerMeasureInfoMessage& operator=(const tracerMeasureInfoMessage& from) {
CopyFrom(from);
return *this;
}
inline tracerMeasureInfoMessage& operator=(tracerMeasureInfoMessage&& from) noexcept {
if (this == &from) return *this;
if (GetOwningArena() == from.GetOwningArena()
#ifdef PROTOBUF_FORCE_COPY_IN_MOVE
&& GetOwningArena() != nullptr
#endif // !PROTOBUF_FORCE_COPY_IN_MOVE
) {
InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() {
return GetDescriptor();
}
static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() {
return default_instance().GetMetadata().descriptor;
}
static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() {
return default_instance().GetMetadata().reflection;
}
static const tracerMeasureInfoMessage& default_instance() {
return *internal_default_instance();
}
static inline const tracerMeasureInfoMessage* internal_default_instance() {
return reinterpret_cast<const tracerMeasureInfoMessage*>(
&_tracerMeasureInfoMessage_default_instance_);
}
static constexpr int kIndexInFileMessages =
1;
friend void swap(tracerMeasureInfoMessage& a, tracerMeasureInfoMessage& b) {
a.Swap(&b);
}
inline void Swap(tracerMeasureInfoMessage* other) {
if (other == this) return;
#ifdef PROTOBUF_FORCE_COPY_IN_SWAP
if (GetOwningArena() != nullptr &&
GetOwningArena() == other->GetOwningArena()) {
#else // PROTOBUF_FORCE_COPY_IN_SWAP
if (GetOwningArena() == other->GetOwningArena()) {
#endif // !PROTOBUF_FORCE_COPY_IN_SWAP
InternalSwap(other);
} else {
::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
}
}
void UnsafeArenaSwap(tracerMeasureInfoMessage* other) {
if (other == this) return;
GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena());
InternalSwap(other);
}
// implements Message ----------------------------------------------
tracerMeasureInfoMessage* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final {
return CreateMaybeMessage<tracerMeasureInfoMessage>(arena);
}
using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom;
void CopyFrom(const tracerMeasureInfoMessage& from);
using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom;
void MergeFrom( const tracerMeasureInfoMessage& from) {
tracerMeasureInfoMessage::MergeImpl(*this, from);
}
private:
static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg);
public:
PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
size_t ByteSizeLong() const final;
const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
uint8_t* _InternalSerialize(
uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
int GetCachedSize() const final { return _impl_._cached_size_.Get(); }
private:
void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned);
void SharedDtor();
void SetCachedSize(int size) const final;
void InternalSwap(tracerMeasureInfoMessage* other);
private:
friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() {
return "autel.protocol.tracerMeasureInfoMessage";
}
protected:
explicit tracerMeasureInfoMessage(::PROTOBUF_NAMESPACE_ID::Arena* arena,
bool is_message_owned = false);
public:
static const ClassData _class_data_;
const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*GetClassData() const final;
::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
enum : int {
kTarInfoFieldNumber = 4,
kFrameNumFieldNumber = 1,
kWorkStatusFieldNumber = 2,
kTarNumFieldNumber = 3,
kWorkModeFieldNumber = 5,
};
// repeated .autel.protocol.singleTargetInfo tarInfo = 4;
int tarinfo_size() const;
private:
int _internal_tarinfo_size() const;
public:
void clear_tarinfo();
::autel::protocol::singleTargetInfo* mutable_tarinfo(int index);
::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::autel::protocol::singleTargetInfo >*
mutable_tarinfo();
private:
const ::autel::protocol::singleTargetInfo& _internal_tarinfo(int index) const;
::autel::protocol::singleTargetInfo* _internal_add_tarinfo();
public:
const ::autel::protocol::singleTargetInfo& tarinfo(int index) const;
::autel::protocol::singleTargetInfo* add_tarinfo();
const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::autel::protocol::singleTargetInfo >&
tarinfo() const;
// uint32 frameNum = 1;
void clear_framenum();
uint32_t framenum() const;
void set_framenum(uint32_t value);
private:
uint32_t _internal_framenum() const;
void _internal_set_framenum(uint32_t value);
public:
// uint32 workStatus = 2;
void clear_workstatus();
uint32_t workstatus() const;
void set_workstatus(uint32_t value);
private:
uint32_t _internal_workstatus() const;
void _internal_set_workstatus(uint32_t value);
public:
// uint32 tarNum = 3;
void clear_tarnum();
uint32_t tarnum() const;
void set_tarnum(uint32_t value);
private:
uint32_t _internal_tarnum() const;
void _internal_set_tarnum(uint32_t value);
public:
// uint32 workMode = 5;
void clear_workmode();
uint32_t workmode() const;
void set_workmode(uint32_t value);
private:
uint32_t _internal_workmode() const;
void _internal_set_workmode(uint32_t value);
public:
// @@protoc_insertion_point(class_scope:autel.protocol.tracerMeasureInfoMessage)
private:
class _Internal;
template <typename T> friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
typedef void InternalArenaConstructable_;
typedef void DestructorSkippable_;
struct Impl_ {
::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::autel::protocol::singleTargetInfo > tarinfo_;
uint32_t framenum_;
uint32_t workstatus_;
uint32_t tarnum_;
uint32_t workmode_;
mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
};
union { Impl_ _impl_; };
friend struct ::TableStruct_tracerMessage_2eproto;
};
// -------------------------------------------------------------------
class TracerWorkModeControlMessage final :
public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:autel.protocol.TracerWorkModeControlMessage) */ {
public:
inline TracerWorkModeControlMessage() : TracerWorkModeControlMessage(nullptr) {}
~TracerWorkModeControlMessage() override;
explicit PROTOBUF_CONSTEXPR TracerWorkModeControlMessage(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized);
TracerWorkModeControlMessage(const TracerWorkModeControlMessage& from);
TracerWorkModeControlMessage(TracerWorkModeControlMessage&& from) noexcept
: TracerWorkModeControlMessage() {
*this = ::std::move(from);
}
inline TracerWorkModeControlMessage& operator=(const TracerWorkModeControlMessage& from) {
CopyFrom(from);
return *this;
}
inline TracerWorkModeControlMessage& operator=(TracerWorkModeControlMessage&& from) noexcept {
if (this == &from) return *this;
if (GetOwningArena() == from.GetOwningArena()
#ifdef PROTOBUF_FORCE_COPY_IN_MOVE
&& GetOwningArena() != nullptr
#endif // !PROTOBUF_FORCE_COPY_IN_MOVE
) {
InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() {
return GetDescriptor();
}
static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() {
return default_instance().GetMetadata().descriptor;
}
static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() {
return default_instance().GetMetadata().reflection;
}
static const TracerWorkModeControlMessage& default_instance() {
return *internal_default_instance();
}
static inline const TracerWorkModeControlMessage* internal_default_instance() {
return reinterpret_cast<const TracerWorkModeControlMessage*>(
&_TracerWorkModeControlMessage_default_instance_);
}
static constexpr int kIndexInFileMessages =
2;
friend void swap(TracerWorkModeControlMessage& a, TracerWorkModeControlMessage& b) {
a.Swap(&b);
}
inline void Swap(TracerWorkModeControlMessage* other) {
if (other == this) return;
#ifdef PROTOBUF_FORCE_COPY_IN_SWAP
if (GetOwningArena() != nullptr &&
GetOwningArena() == other->GetOwningArena()) {
#else // PROTOBUF_FORCE_COPY_IN_SWAP
if (GetOwningArena() == other->GetOwningArena()) {
#endif // !PROTOBUF_FORCE_COPY_IN_SWAP
InternalSwap(other);
} else {
::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
}
}
void UnsafeArenaSwap(TracerWorkModeControlMessage* other) {
if (other == this) return;
GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena());
InternalSwap(other);
}
// implements Message ----------------------------------------------
TracerWorkModeControlMessage* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final {
return CreateMaybeMessage<TracerWorkModeControlMessage>(arena);
}
using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom;
void CopyFrom(const TracerWorkModeControlMessage& from);
using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom;
void MergeFrom( const TracerWorkModeControlMessage& from) {
TracerWorkModeControlMessage::MergeImpl(*this, from);
}
private:
static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg);
public:
PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
size_t ByteSizeLong() const final;
const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
uint8_t* _InternalSerialize(
uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
int GetCachedSize() const final { return _impl_._cached_size_.Get(); }
private:
void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned);
void SharedDtor();
void SetCachedSize(int size) const final;
void InternalSwap(TracerWorkModeControlMessage* other);
private:
friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() {
return "autel.protocol.TracerWorkModeControlMessage";
}
protected:
explicit TracerWorkModeControlMessage(::PROTOBUF_NAMESPACE_ID::Arena* arena,
bool is_message_owned = false);
public:
static const ClassData _class_data_;
const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*GetClassData() const final;
::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
enum : int {
kSeqFieldNumber = 1,
kWorkModeFieldNumber = 2,
kDxNumFieldNumber = 3,
kDxFreqFieldNumber = 4,
kAirTypeFieldNumber = 5,
kConfidenceThrFieldNumber = 6,
};
// uint32 seq = 1;
void clear_seq();
uint32_t seq() const;
void set_seq(uint32_t value);
private:
uint32_t _internal_seq() const;
void _internal_set_seq(uint32_t value);
public:
// uint32 workMode = 2;
void clear_workmode();
uint32_t workmode() const;
void set_workmode(uint32_t value);
private:
uint32_t _internal_workmode() const;
void _internal_set_workmode(uint32_t value);
public:
// uint32 dxNum = 3;
void clear_dxnum();
uint32_t dxnum() const;
void set_dxnum(uint32_t value);
private:
uint32_t _internal_dxnum() const;
void _internal_set_dxnum(uint32_t value);
public:
// uint32 dxFreq = 4;
void clear_dxfreq();
uint32_t dxfreq() const;
void set_dxfreq(uint32_t value);
private:
uint32_t _internal_dxfreq() const;
void _internal_set_dxfreq(uint32_t value);
public:
// uint32 airType = 5;
void clear_airtype();
uint32_t airtype() const;
void set_airtype(uint32_t value);
private:
uint32_t _internal_airtype() const;
void _internal_set_airtype(uint32_t value);
public:
// uint32 confidenceThr = 6;
void clear_confidencethr();
uint32_t confidencethr() const;
void set_confidencethr(uint32_t value);
private:
uint32_t _internal_confidencethr() const;
void _internal_set_confidencethr(uint32_t value);
public:
// @@protoc_insertion_point(class_scope:autel.protocol.TracerWorkModeControlMessage)
private:
class _Internal;
template <typename T> friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
typedef void InternalArenaConstructable_;
typedef void DestructorSkippable_;
struct Impl_ {
uint32_t seq_;
uint32_t workmode_;
uint32_t dxnum_;
uint32_t dxfreq_;
uint32_t airtype_;
uint32_t confidencethr_;
mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
};
union { Impl_ _impl_; };
friend struct ::TableStruct_tracerMessage_2eproto;
};
// -------------------------------------------------------------------
class TracerWorkModeControlRspMessage final :
public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:autel.protocol.TracerWorkModeControlRspMessage) */ {
public:
inline TracerWorkModeControlRspMessage() : TracerWorkModeControlRspMessage(nullptr) {}
~TracerWorkModeControlRspMessage() override;
explicit PROTOBUF_CONSTEXPR TracerWorkModeControlRspMessage(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized);
TracerWorkModeControlRspMessage(const TracerWorkModeControlRspMessage& from);
TracerWorkModeControlRspMessage(TracerWorkModeControlRspMessage&& from) noexcept
: TracerWorkModeControlRspMessage() {
*this = ::std::move(from);
}
inline TracerWorkModeControlRspMessage& operator=(const TracerWorkModeControlRspMessage& from) {
CopyFrom(from);
return *this;
}
inline TracerWorkModeControlRspMessage& operator=(TracerWorkModeControlRspMessage&& from) noexcept {
if (this == &from) return *this;
if (GetOwningArena() == from.GetOwningArena()
#ifdef PROTOBUF_FORCE_COPY_IN_MOVE
&& GetOwningArena() != nullptr
#endif // !PROTOBUF_FORCE_COPY_IN_MOVE
) {
InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() {
return GetDescriptor();
}
static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() {
return default_instance().GetMetadata().descriptor;
}
static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() {
return default_instance().GetMetadata().reflection;
}
static const TracerWorkModeControlRspMessage& default_instance() {
return *internal_default_instance();
}
static inline const TracerWorkModeControlRspMessage* internal_default_instance() {
return reinterpret_cast<const TracerWorkModeControlRspMessage*>(
&_TracerWorkModeControlRspMessage_default_instance_);
}
static constexpr int kIndexInFileMessages =
3;
friend void swap(TracerWorkModeControlRspMessage& a, TracerWorkModeControlRspMessage& b) {
a.Swap(&b);
}
inline void Swap(TracerWorkModeControlRspMessage* other) {
if (other == this) return;
#ifdef PROTOBUF_FORCE_COPY_IN_SWAP
if (GetOwningArena() != nullptr &&
GetOwningArena() == other->GetOwningArena()) {
#else // PROTOBUF_FORCE_COPY_IN_SWAP
if (GetOwningArena() == other->GetOwningArena()) {
#endif // !PROTOBUF_FORCE_COPY_IN_SWAP
InternalSwap(other);
} else {
::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
}
}
void UnsafeArenaSwap(TracerWorkModeControlRspMessage* other) {
if (other == this) return;
GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena());
InternalSwap(other);
}
// implements Message ----------------------------------------------
TracerWorkModeControlRspMessage* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final {
return CreateMaybeMessage<TracerWorkModeControlRspMessage>(arena);
}
using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom;
void CopyFrom(const TracerWorkModeControlRspMessage& from);
using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom;
void MergeFrom( const TracerWorkModeControlRspMessage& from) {
TracerWorkModeControlRspMessage::MergeImpl(*this, from);
}
private:
static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg);
public:
PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
size_t ByteSizeLong() const final;
const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
uint8_t* _InternalSerialize(
uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
int GetCachedSize() const final { return _impl_._cached_size_.Get(); }
private:
void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned);
void SharedDtor();
void SetCachedSize(int size) const final;
void InternalSwap(TracerWorkModeControlRspMessage* other);
private:
friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() {
return "autel.protocol.TracerWorkModeControlRspMessage";
}
protected:
explicit TracerWorkModeControlRspMessage(::PROTOBUF_NAMESPACE_ID::Arena* arena,
bool is_message_owned = false);
public:
static const ClassData _class_data_;
const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*GetClassData() const final;
::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
enum : int {
kSeqFieldNumber = 1,
kRltFieldNumber = 2,
};
// uint32 seq = 1;
void clear_seq();
uint32_t seq() const;
void set_seq(uint32_t value);
private:
uint32_t _internal_seq() const;
void _internal_set_seq(uint32_t value);
public:
// uint32 rlt = 2;
void clear_rlt();
uint32_t rlt() const;
void set_rlt(uint32_t value);
private:
uint32_t _internal_rlt() const;
void _internal_set_rlt(uint32_t value);
public:
// @@protoc_insertion_point(class_scope:autel.protocol.TracerWorkModeControlRspMessage)
private:
class _Internal;
template <typename T> friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
typedef void InternalArenaConstructable_;
typedef void DestructorSkippable_;
struct Impl_ {
uint32_t seq_;
uint32_t rlt_;
mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
};
union { Impl_ _impl_; };
friend struct ::TableStruct_tracerMessage_2eproto;
};
// -------------------------------------------------------------------
class TracerStaggerFreqMessage final :
public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:autel.protocol.TracerStaggerFreqMessage) */ {
public:
inline TracerStaggerFreqMessage() : TracerStaggerFreqMessage(nullptr) {}
~TracerStaggerFreqMessage() override;
explicit PROTOBUF_CONSTEXPR TracerStaggerFreqMessage(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized);
TracerStaggerFreqMessage(const TracerStaggerFreqMessage& from);
TracerStaggerFreqMessage(TracerStaggerFreqMessage&& from) noexcept
: TracerStaggerFreqMessage() {
*this = ::std::move(from);
}
inline TracerStaggerFreqMessage& operator=(const TracerStaggerFreqMessage& from) {
CopyFrom(from);
return *this;
}
inline TracerStaggerFreqMessage& operator=(TracerStaggerFreqMessage&& from) noexcept {
if (this == &from) return *this;
if (GetOwningArena() == from.GetOwningArena()
#ifdef PROTOBUF_FORCE_COPY_IN_MOVE
&& GetOwningArena() != nullptr
#endif // !PROTOBUF_FORCE_COPY_IN_MOVE
) {
InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() {
return GetDescriptor();
}
static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() {
return default_instance().GetMetadata().descriptor;
}
static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() {
return default_instance().GetMetadata().reflection;
}
static const TracerStaggerFreqMessage& default_instance() {
return *internal_default_instance();
}
static inline const TracerStaggerFreqMessage* internal_default_instance() {
return reinterpret_cast<const TracerStaggerFreqMessage*>(
&_TracerStaggerFreqMessage_default_instance_);
}
static constexpr int kIndexInFileMessages =
4;
friend void swap(TracerStaggerFreqMessage& a, TracerStaggerFreqMessage& b) {
a.Swap(&b);
}
inline void Swap(TracerStaggerFreqMessage* other) {
if (other == this) return;
#ifdef PROTOBUF_FORCE_COPY_IN_SWAP
if (GetOwningArena() != nullptr &&
GetOwningArena() == other->GetOwningArena()) {
#else // PROTOBUF_FORCE_COPY_IN_SWAP
if (GetOwningArena() == other->GetOwningArena()) {
#endif // !PROTOBUF_FORCE_COPY_IN_SWAP
InternalSwap(other);
} else {
::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
}
}
void UnsafeArenaSwap(TracerStaggerFreqMessage* other) {
if (other == this) return;
GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena());
InternalSwap(other);
}
// implements Message ----------------------------------------------
TracerStaggerFreqMessage* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final {
return CreateMaybeMessage<TracerStaggerFreqMessage>(arena);
}
using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom;
void CopyFrom(const TracerStaggerFreqMessage& from);
using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom;
void MergeFrom( const TracerStaggerFreqMessage& from) {
TracerStaggerFreqMessage::MergeImpl(*this, from);
}
private:
static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg);
public:
PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
size_t ByteSizeLong() const final;
const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
uint8_t* _InternalSerialize(
uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
int GetCachedSize() const final { return _impl_._cached_size_.Get(); }
private:
void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned);
void SharedDtor();
void SetCachedSize(int size) const final;
void InternalSwap(TracerStaggerFreqMessage* other);
private:
friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() {
return "autel.protocol.TracerStaggerFreqMessage";
}
protected:
explicit TracerStaggerFreqMessage(::PROTOBUF_NAMESPACE_ID::Arena* arena,
bool is_message_owned = false);
public:
static const ClassData _class_data_;
const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*GetClassData() const final;
::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
enum : int {
kSeqFieldNumber = 1,
kFreqBandFieldNumber = 2,
kTimStampFieldNumber = 3,
kReservFieldNumber = 4,
};
// uint32 seq = 1;
void clear_seq();
uint32_t seq() const;
void set_seq(uint32_t value);
private:
uint32_t _internal_seq() const;
void _internal_set_seq(uint32_t value);
public:
// uint32 freqBand = 2;
void clear_freqband();
uint32_t freqband() const;
void set_freqband(uint32_t value);
private:
uint32_t _internal_freqband() const;
void _internal_set_freqband(uint32_t value);
public:
// uint32 timStamp = 3;
void clear_timstamp();
uint32_t timstamp() const;
void set_timstamp(uint32_t value);
private:
uint32_t _internal_timstamp() const;
void _internal_set_timstamp(uint32_t value);
public:
// uint32 reserv = 4;
void clear_reserv();
uint32_t reserv() const;
void set_reserv(uint32_t value);
private:
uint32_t _internal_reserv() const;
void _internal_set_reserv(uint32_t value);
public:
// @@protoc_insertion_point(class_scope:autel.protocol.TracerStaggerFreqMessage)
private:
class _Internal;
template <typename T> friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
typedef void InternalArenaConstructable_;
typedef void DestructorSkippable_;
struct Impl_ {
uint32_t seq_;
uint32_t freqband_;
uint32_t timstamp_;
uint32_t reserv_;
mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
};
union { Impl_ _impl_; };
friend struct ::TableStruct_tracerMessage_2eproto;
};
// -------------------------------------------------------------------
class TracerSystemInfoMessage final :
public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:autel.protocol.TracerSystemInfoMessage) */ {
public:
inline TracerSystemInfoMessage() : TracerSystemInfoMessage(nullptr) {}
~TracerSystemInfoMessage() override;
explicit PROTOBUF_CONSTEXPR TracerSystemInfoMessage(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized);
TracerSystemInfoMessage(const TracerSystemInfoMessage& from);
TracerSystemInfoMessage(TracerSystemInfoMessage&& from) noexcept
: TracerSystemInfoMessage() {
*this = ::std::move(from);
}
inline TracerSystemInfoMessage& operator=(const TracerSystemInfoMessage& from) {
CopyFrom(from);
return *this;
}
inline TracerSystemInfoMessage& operator=(TracerSystemInfoMessage&& from) noexcept {
if (this == &from) return *this;
if (GetOwningArena() == from.GetOwningArena()
#ifdef PROTOBUF_FORCE_COPY_IN_MOVE
&& GetOwningArena() != nullptr
#endif // !PROTOBUF_FORCE_COPY_IN_MOVE
) {
InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor() {
return GetDescriptor();
}
static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor() {
return default_instance().GetMetadata().descriptor;
}
static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection() {
return default_instance().GetMetadata().reflection;
}
static const TracerSystemInfoMessage& default_instance() {
return *internal_default_instance();
}
static inline const TracerSystemInfoMessage* internal_default_instance() {
return reinterpret_cast<const TracerSystemInfoMessage*>(
&_TracerSystemInfoMessage_default_instance_);
}
static constexpr int kIndexInFileMessages =
5;
friend void swap(TracerSystemInfoMessage& a, TracerSystemInfoMessage& b) {
a.Swap(&b);
}
inline void Swap(TracerSystemInfoMessage* other) {
if (other == this) return;
#ifdef PROTOBUF_FORCE_COPY_IN_SWAP
if (GetOwningArena() != nullptr &&
GetOwningArena() == other->GetOwningArena()) {
#else // PROTOBUF_FORCE_COPY_IN_SWAP
if (GetOwningArena() == other->GetOwningArena()) {
#endif // !PROTOBUF_FORCE_COPY_IN_SWAP
InternalSwap(other);
} else {
::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
}
}
void UnsafeArenaSwap(TracerSystemInfoMessage* other) {
if (other == this) return;
GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena());
InternalSwap(other);
}
// implements Message ----------------------------------------------
TracerSystemInfoMessage* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final {
return CreateMaybeMessage<TracerSystemInfoMessage>(arena);
}
using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom;
void CopyFrom(const TracerSystemInfoMessage& from);
using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom;
void MergeFrom( const TracerSystemInfoMessage& from) {
TracerSystemInfoMessage::MergeImpl(*this, from);
}
private:
static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg);
public:
PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
size_t ByteSizeLong() const final;
const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
uint8_t* _InternalSerialize(
uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const final;
int GetCachedSize() const final { return _impl_._cached_size_.Get(); }
private:
void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned);
void SharedDtor();
void SetCachedSize(int size) const final;
void InternalSwap(TracerSystemInfoMessage* other);
private:
friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName() {
return "autel.protocol.TracerSystemInfoMessage";
}
protected:
explicit TracerSystemInfoMessage(::PROTOBUF_NAMESPACE_ID::Arena* arena,
bool is_message_owned = false);
public:
static const ClassData _class_data_;
const ::PROTOBUF_NAMESPACE_ID::Message::ClassData*GetClassData() const final;
::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
enum : int {
kDiskFieldNumber = 11,
kSnFieldNumber = 1,
kVersionFieldNumber = 2,
kSsidFieldNumber = 3,
kIpAddressFieldNumber = 4,
kWorkStatusFieldNumber = 5,
kFaultStatusFieldNumber = 6,
kNetStatusFieldNumber = 7,
kUpTimeFieldNumber = 8,
kCpuFieldNumber = 9,
kMemoryFieldNumber = 10,
kTemperatureFieldNumber = 12,
};
// repeated uint32 disk = 11;
int disk_size() const;
private:
int _internal_disk_size() const;
public:
void clear_disk();
private:
uint32_t _internal_disk(int index) const;
const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >&
_internal_disk() const;
void _internal_add_disk(uint32_t value);
::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >*
_internal_mutable_disk();
public:
uint32_t disk(int index) const;
void set_disk(int index, uint32_t value);
void add_disk(uint32_t value);
const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >&
disk() const;
::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >*
mutable_disk();
// string sn = 1;
void clear_sn();
const std::string& sn() const;
template <typename ArgT0 = const std::string&, typename... ArgT>
void set_sn(ArgT0&& arg0, ArgT... args);
std::string* mutable_sn();
PROTOBUF_NODISCARD std::string* release_sn();
void set_allocated_sn(std::string* sn);
private:
const std::string& _internal_sn() const;
inline PROTOBUF_ALWAYS_INLINE void _internal_set_sn(const std::string& value);
std::string* _internal_mutable_sn();
public:
// string version = 2;
void clear_version();
const std::string& version() const;
template <typename ArgT0 = const std::string&, typename... ArgT>
void set_version(ArgT0&& arg0, ArgT... args);
std::string* mutable_version();
PROTOBUF_NODISCARD std::string* release_version();
void set_allocated_version(std::string* version);
private:
const std::string& _internal_version() const;
inline PROTOBUF_ALWAYS_INLINE void _internal_set_version(const std::string& value);
std::string* _internal_mutable_version();
public:
// string ssid = 3;
void clear_ssid();
const std::string& ssid() const;
template <typename ArgT0 = const std::string&, typename... ArgT>
void set_ssid(ArgT0&& arg0, ArgT... args);
std::string* mutable_ssid();
PROTOBUF_NODISCARD std::string* release_ssid();
void set_allocated_ssid(std::string* ssid);
private:
const std::string& _internal_ssid() const;
inline PROTOBUF_ALWAYS_INLINE void _internal_set_ssid(const std::string& value);
std::string* _internal_mutable_ssid();
public:
// string ipAddress = 4;
void clear_ipaddress();
const std::string& ipaddress() const;
template <typename ArgT0 = const std::string&, typename... ArgT>
void set_ipaddress(ArgT0&& arg0, ArgT... args);
std::string* mutable_ipaddress();
PROTOBUF_NODISCARD std::string* release_ipaddress();
void set_allocated_ipaddress(std::string* ipaddress);
private:
const std::string& _internal_ipaddress() const;
inline PROTOBUF_ALWAYS_INLINE void _internal_set_ipaddress(const std::string& value);
std::string* _internal_mutable_ipaddress();
public:
// uint32 workStatus = 5;
void clear_workstatus();
uint32_t workstatus() const;
void set_workstatus(uint32_t value);
private:
uint32_t _internal_workstatus() const;
void _internal_set_workstatus(uint32_t value);
public:
// uint32 faultStatus = 6;
void clear_faultstatus();
uint32_t faultstatus() const;
void set_faultstatus(uint32_t value);
private:
uint32_t _internal_faultstatus() const;
void _internal_set_faultstatus(uint32_t value);
public:
// uint32 netStatus = 7;
void clear_netstatus();
uint32_t netstatus() const;
void set_netstatus(uint32_t value);
private:
uint32_t _internal_netstatus() const;
void _internal_set_netstatus(uint32_t value);
public:
// uint32 upTime = 8;
void clear_uptime();
uint32_t uptime() const;
void set_uptime(uint32_t value);
private:
uint32_t _internal_uptime() const;
void _internal_set_uptime(uint32_t value);
public:
// uint32 cpu = 9;
void clear_cpu();
uint32_t cpu() const;
void set_cpu(uint32_t value);
private:
uint32_t _internal_cpu() const;
void _internal_set_cpu(uint32_t value);
public:
// uint32 memory = 10;
void clear_memory();
uint32_t memory() const;
void set_memory(uint32_t value);
private:
uint32_t _internal_memory() const;
void _internal_set_memory(uint32_t value);
public:
// uint32 temperature = 12;
void clear_temperature();
uint32_t temperature() const;
void set_temperature(uint32_t value);
private:
uint32_t _internal_temperature() const;
void _internal_set_temperature(uint32_t value);
public:
// @@protoc_insertion_point(class_scope:autel.protocol.TracerSystemInfoMessage)
private:
class _Internal;
template <typename T> friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
typedef void InternalArenaConstructable_;
typedef void DestructorSkippable_;
struct Impl_ {
::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t > disk_;
mutable std::atomic<int> _disk_cached_byte_size_;
::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr sn_;
::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr version_;
::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr ssid_;
::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr ipaddress_;
uint32_t workstatus_;
uint32_t faultstatus_;
uint32_t netstatus_;
uint32_t uptime_;
uint32_t cpu_;
uint32_t memory_;
uint32_t temperature_;
mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
};
union { Impl_ _impl_; };
friend struct ::TableStruct_tracerMessage_2eproto;
};
// ===================================================================
// ===================================================================
#ifdef __GNUC__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wstrict-aliasing"
#endif // __GNUC__
// singleTargetInfo
// uint32 tNum = 1;
inline void singleTargetInfo::clear_tnum() {
_impl_.tnum_ = 0u;
}
inline uint32_t singleTargetInfo::_internal_tnum() const {
return _impl_.tnum_;
}
inline uint32_t singleTargetInfo::tnum() const {
// @@protoc_insertion_point(field_get:autel.protocol.singleTargetInfo.tNum)
return _internal_tnum();
}
inline void singleTargetInfo::_internal_set_tnum(uint32_t value) {
_impl_.tnum_ = value;
}
inline void singleTargetInfo::set_tnum(uint32_t value) {
_internal_set_tnum(value);
// @@protoc_insertion_point(field_set:autel.protocol.singleTargetInfo.tNum)
}
// uint32 tType = 2;
inline void singleTargetInfo::clear_ttype() {
_impl_.ttype_ = 0u;
}
inline uint32_t singleTargetInfo::_internal_ttype() const {
return _impl_.ttype_;
}
inline uint32_t singleTargetInfo::ttype() const {
// @@protoc_insertion_point(field_get:autel.protocol.singleTargetInfo.tType)
return _internal_ttype();
}
inline void singleTargetInfo::_internal_set_ttype(uint32_t value) {
_impl_.ttype_ = value;
}
inline void singleTargetInfo::set_ttype(uint32_t value) {
_internal_set_ttype(value);
// @@protoc_insertion_point(field_set:autel.protocol.singleTargetInfo.tType)
}
// uint32 tCalCnt = 3;
inline void singleTargetInfo::clear_tcalcnt() {
_impl_.tcalcnt_ = 0u;
}
inline uint32_t singleTargetInfo::_internal_tcalcnt() const {
return _impl_.tcalcnt_;
}
inline uint32_t singleTargetInfo::tcalcnt() const {
// @@protoc_insertion_point(field_get:autel.protocol.singleTargetInfo.tCalCnt)
return _internal_tcalcnt();
}
inline void singleTargetInfo::_internal_set_tcalcnt(uint32_t value) {
_impl_.tcalcnt_ = value;
}
inline void singleTargetInfo::set_tcalcnt(uint32_t value) {
_internal_set_tcalcnt(value);
// @@protoc_insertion_point(field_set:autel.protocol.singleTargetInfo.tCalCnt)
}
// uint32 tWorkStatus = 4;
inline void singleTargetInfo::clear_tworkstatus() {
_impl_.tworkstatus_ = 0u;
}
inline uint32_t singleTargetInfo::_internal_tworkstatus() const {
return _impl_.tworkstatus_;
}
inline uint32_t singleTargetInfo::tworkstatus() const {
// @@protoc_insertion_point(field_get:autel.protocol.singleTargetInfo.tWorkStatus)
return _internal_tworkstatus();
}
inline void singleTargetInfo::_internal_set_tworkstatus(uint32_t value) {
_impl_.tworkstatus_ = value;
}
inline void singleTargetInfo::set_tworkstatus(uint32_t value) {
_internal_set_tworkstatus(value);
// @@protoc_insertion_point(field_set:autel.protocol.singleTargetInfo.tWorkStatus)
}
// uint32 tTimeCreate = 5;
inline void singleTargetInfo::clear_ttimecreate() {
_impl_.ttimecreate_ = 0u;
}
inline uint32_t singleTargetInfo::_internal_ttimecreate() const {
return _impl_.ttimecreate_;
}
inline uint32_t singleTargetInfo::ttimecreate() const {
// @@protoc_insertion_point(field_get:autel.protocol.singleTargetInfo.tTimeCreate)
return _internal_ttimecreate();
}
inline void singleTargetInfo::_internal_set_ttimecreate(uint32_t value) {
_impl_.ttimecreate_ = value;
}
inline void singleTargetInfo::set_ttimecreate(uint32_t value) {
_internal_set_ttimecreate(value);
// @@protoc_insertion_point(field_set:autel.protocol.singleTargetInfo.tTimeCreate)
}
// uint32 tTimeTest = 6;
inline void singleTargetInfo::clear_ttimetest() {
_impl_.ttimetest_ = 0u;
}
inline uint32_t singleTargetInfo::_internal_ttimetest() const {
return _impl_.ttimetest_;
}
inline uint32_t singleTargetInfo::ttimetest() const {
// @@protoc_insertion_point(field_get:autel.protocol.singleTargetInfo.tTimeTest)
return _internal_ttimetest();
}
inline void singleTargetInfo::_internal_set_ttimetest(uint32_t value) {
_impl_.ttimetest_ = value;
}
inline void singleTargetInfo::set_ttimetest(uint32_t value) {
_internal_set_ttimetest(value);
// @@protoc_insertion_point(field_set:autel.protocol.singleTargetInfo.tTimeTest)
}
// uint32 tSigBand = 7;
inline void singleTargetInfo::clear_tsigband() {
_impl_.tsigband_ = 0u;
}
inline uint32_t singleTargetInfo::_internal_tsigband() const {
return _impl_.tsigband_;
}
inline uint32_t singleTargetInfo::tsigband() const {
// @@protoc_insertion_point(field_get:autel.protocol.singleTargetInfo.tSigBand)
return _internal_tsigband();
}
inline void singleTargetInfo::_internal_set_tsigband(uint32_t value) {
_impl_.tsigband_ = value;
}
inline void singleTargetInfo::set_tsigband(uint32_t value) {
_internal_set_tsigband(value);
// @@protoc_insertion_point(field_set:autel.protocol.singleTargetInfo.tSigBand)
}
// uint32 tDistance = 8;
inline void singleTargetInfo::clear_tdistance() {
_impl_.tdistance_ = 0u;
}
inline uint32_t singleTargetInfo::_internal_tdistance() const {
return _impl_.tdistance_;
}
inline uint32_t singleTargetInfo::tdistance() const {
// @@protoc_insertion_point(field_get:autel.protocol.singleTargetInfo.tDistance)
return _internal_tdistance();
}
inline void singleTargetInfo::_internal_set_tdistance(uint32_t value) {
_impl_.tdistance_ = value;
}
inline void singleTargetInfo::set_tdistance(uint32_t value) {
_internal_set_tdistance(value);
// @@protoc_insertion_point(field_set:autel.protocol.singleTargetInfo.tDistance)
}
// uint32 tFreq = 9;
inline void singleTargetInfo::clear_tfreq() {
_impl_.tfreq_ = 0u;
}
inline uint32_t singleTargetInfo::_internal_tfreq() const {
return _impl_.tfreq_;
}
inline uint32_t singleTargetInfo::tfreq() const {
// @@protoc_insertion_point(field_get:autel.protocol.singleTargetInfo.tFreq)
return _internal_tfreq();
}
inline void singleTargetInfo::_internal_set_tfreq(uint32_t value) {
_impl_.tfreq_ = value;
}
inline void singleTargetInfo::set_tfreq(uint32_t value) {
_internal_set_tfreq(value);
// @@protoc_insertion_point(field_set:autel.protocol.singleTargetInfo.tFreq)
}
// uint32 tAmp = 10;
inline void singleTargetInfo::clear_tamp() {
_impl_.tamp_ = 0u;
}
inline uint32_t singleTargetInfo::_internal_tamp() const {
return _impl_.tamp_;
}
inline uint32_t singleTargetInfo::tamp() const {
// @@protoc_insertion_point(field_get:autel.protocol.singleTargetInfo.tAmp)
return _internal_tamp();
}
inline void singleTargetInfo::_internal_set_tamp(uint32_t value) {
_impl_.tamp_ = value;
}
inline void singleTargetInfo::set_tamp(uint32_t value) {
_internal_set_tamp(value);
// @@protoc_insertion_point(field_set:autel.protocol.singleTargetInfo.tAmp)
}
// sint32 tmFw = 11;
inline void singleTargetInfo::clear_tmfw() {
_impl_.tmfw_ = 0;
}
inline int32_t singleTargetInfo::_internal_tmfw() const {
return _impl_.tmfw_;
}
inline int32_t singleTargetInfo::tmfw() const {
// @@protoc_insertion_point(field_get:autel.protocol.singleTargetInfo.tmFw)
return _internal_tmfw();
}
inline void singleTargetInfo::_internal_set_tmfw(int32_t value) {
_impl_.tmfw_ = value;
}
inline void singleTargetInfo::set_tmfw(int32_t value) {
_internal_set_tmfw(value);
// @@protoc_insertion_point(field_set:autel.protocol.singleTargetInfo.tmFw)
}
// sint32 tmFy = 12;
inline void singleTargetInfo::clear_tmfy() {
_impl_.tmfy_ = 0;
}
inline int32_t singleTargetInfo::_internal_tmfy() const {
return _impl_.tmfy_;
}
inline int32_t singleTargetInfo::tmfy() const {
// @@protoc_insertion_point(field_get:autel.protocol.singleTargetInfo.tmFy)
return _internal_tmfy();
}
inline void singleTargetInfo::_internal_set_tmfy(int32_t value) {
_impl_.tmfy_ = value;
}
inline void singleTargetInfo::set_tmfy(int32_t value) {
_internal_set_tmfy(value);
// @@protoc_insertion_point(field_set:autel.protocol.singleTargetInfo.tmFy)
}
// sint32 tfFw = 13;
inline void singleTargetInfo::clear_tffw() {
_impl_.tffw_ = 0;
}
inline int32_t singleTargetInfo::_internal_tffw() const {
return _impl_.tffw_;
}
inline int32_t singleTargetInfo::tffw() const {
// @@protoc_insertion_point(field_get:autel.protocol.singleTargetInfo.tfFw)
return _internal_tffw();
}
inline void singleTargetInfo::_internal_set_tffw(int32_t value) {
_impl_.tffw_ = value;
}
inline void singleTargetInfo::set_tffw(int32_t value) {
_internal_set_tffw(value);
// @@protoc_insertion_point(field_set:autel.protocol.singleTargetInfo.tfFw)
}
// sint32 tfFy = 14;
inline void singleTargetInfo::clear_tffy() {
_impl_.tffy_ = 0;
}
inline int32_t singleTargetInfo::_internal_tffy() const {
return _impl_.tffy_;
}
inline int32_t singleTargetInfo::tffy() const {
// @@protoc_insertion_point(field_get:autel.protocol.singleTargetInfo.tfFy)
return _internal_tffy();
}
inline void singleTargetInfo::_internal_set_tffy(int32_t value) {
_impl_.tffy_ = value;
}
inline void singleTargetInfo::set_tffy(int32_t value) {
_internal_set_tffy(value);
// @@protoc_insertion_point(field_set:autel.protocol.singleTargetInfo.tfFy)
}
// uint32 tConfidenceLevel = 15;
inline void singleTargetInfo::clear_tconfidencelevel() {
_impl_.tconfidencelevel_ = 0u;
}
inline uint32_t singleTargetInfo::_internal_tconfidencelevel() const {
return _impl_.tconfidencelevel_;
}
inline uint32_t singleTargetInfo::tconfidencelevel() const {
// @@protoc_insertion_point(field_get:autel.protocol.singleTargetInfo.tConfidenceLevel)
return _internal_tconfidencelevel();
}
inline void singleTargetInfo::_internal_set_tconfidencelevel(uint32_t value) {
_impl_.tconfidencelevel_ = value;
}
inline void singleTargetInfo::set_tconfidencelevel(uint32_t value) {
_internal_set_tconfidencelevel(value);
// @@protoc_insertion_point(field_set:autel.protocol.singleTargetInfo.tConfidenceLevel)
}
// uint32 tTimeOffset = 16;
inline void singleTargetInfo::clear_ttimeoffset() {
_impl_.ttimeoffset_ = 0u;
}
inline uint32_t singleTargetInfo::_internal_ttimeoffset() const {
return _impl_.ttimeoffset_;
}
inline uint32_t singleTargetInfo::ttimeoffset() const {
// @@protoc_insertion_point(field_get:autel.protocol.singleTargetInfo.tTimeOffset)
return _internal_ttimeoffset();
}
inline void singleTargetInfo::_internal_set_ttimeoffset(uint32_t value) {
_impl_.ttimeoffset_ = value;
}
inline void singleTargetInfo::set_ttimeoffset(uint32_t value) {
_internal_set_ttimeoffset(value);
// @@protoc_insertion_point(field_set:autel.protocol.singleTargetInfo.tTimeOffset)
}
// string tName = 17;
inline void singleTargetInfo::clear_tname() {
_impl_.tname_.ClearToEmpty();
}
inline const std::string& singleTargetInfo::tname() const {
// @@protoc_insertion_point(field_get:autel.protocol.singleTargetInfo.tName)
return _internal_tname();
}
template <typename ArgT0, typename... ArgT>
inline PROTOBUF_ALWAYS_INLINE
void singleTargetInfo::set_tname(ArgT0&& arg0, ArgT... args) {
_impl_.tname_.Set(static_cast<ArgT0 &&>(arg0), args..., GetArenaForAllocation());
// @@protoc_insertion_point(field_set:autel.protocol.singleTargetInfo.tName)
}
inline std::string* singleTargetInfo::mutable_tname() {
std::string* _s = _internal_mutable_tname();
// @@protoc_insertion_point(field_mutable:autel.protocol.singleTargetInfo.tName)
return _s;
}
inline const std::string& singleTargetInfo::_internal_tname() const {
return _impl_.tname_.Get();
}
inline void singleTargetInfo::_internal_set_tname(const std::string& value) {
_impl_.tname_.Set(value, GetArenaForAllocation());
}
inline std::string* singleTargetInfo::_internal_mutable_tname() {
return _impl_.tname_.Mutable(GetArenaForAllocation());
}
inline std::string* singleTargetInfo::release_tname() {
// @@protoc_insertion_point(field_release:autel.protocol.singleTargetInfo.tName)
return _impl_.tname_.Release();
}
inline void singleTargetInfo::set_allocated_tname(std::string* tname) {
if (tname != nullptr) {
} else {
}
_impl_.tname_.SetAllocated(tname, GetArenaForAllocation());
#ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
if (_impl_.tname_.IsDefault()) {
_impl_.tname_.Set("", GetArenaForAllocation());
}
#endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
// @@protoc_insertion_point(field_set_allocated:autel.protocol.singleTargetInfo.tName)
}
// -------------------------------------------------------------------
// tracerMeasureInfoMessage
// uint32 frameNum = 1;
inline void tracerMeasureInfoMessage::clear_framenum() {
_impl_.framenum_ = 0u;
}
inline uint32_t tracerMeasureInfoMessage::_internal_framenum() const {
return _impl_.framenum_;
}
inline uint32_t tracerMeasureInfoMessage::framenum() const {
// @@protoc_insertion_point(field_get:autel.protocol.tracerMeasureInfoMessage.frameNum)
return _internal_framenum();
}
inline void tracerMeasureInfoMessage::_internal_set_framenum(uint32_t value) {
_impl_.framenum_ = value;
}
inline void tracerMeasureInfoMessage::set_framenum(uint32_t value) {
_internal_set_framenum(value);
// @@protoc_insertion_point(field_set:autel.protocol.tracerMeasureInfoMessage.frameNum)
}
// uint32 workStatus = 2;
inline void tracerMeasureInfoMessage::clear_workstatus() {
_impl_.workstatus_ = 0u;
}
inline uint32_t tracerMeasureInfoMessage::_internal_workstatus() const {
return _impl_.workstatus_;
}
inline uint32_t tracerMeasureInfoMessage::workstatus() const {
// @@protoc_insertion_point(field_get:autel.protocol.tracerMeasureInfoMessage.workStatus)
return _internal_workstatus();
}
inline void tracerMeasureInfoMessage::_internal_set_workstatus(uint32_t value) {
_impl_.workstatus_ = value;
}
inline void tracerMeasureInfoMessage::set_workstatus(uint32_t value) {
_internal_set_workstatus(value);
// @@protoc_insertion_point(field_set:autel.protocol.tracerMeasureInfoMessage.workStatus)
}
// uint32 tarNum = 3;
inline void tracerMeasureInfoMessage::clear_tarnum() {
_impl_.tarnum_ = 0u;
}
inline uint32_t tracerMeasureInfoMessage::_internal_tarnum() const {
return _impl_.tarnum_;
}
inline uint32_t tracerMeasureInfoMessage::tarnum() const {
// @@protoc_insertion_point(field_get:autel.protocol.tracerMeasureInfoMessage.tarNum)
return _internal_tarnum();
}
inline void tracerMeasureInfoMessage::_internal_set_tarnum(uint32_t value) {
_impl_.tarnum_ = value;
}
inline void tracerMeasureInfoMessage::set_tarnum(uint32_t value) {
_internal_set_tarnum(value);
// @@protoc_insertion_point(field_set:autel.protocol.tracerMeasureInfoMessage.tarNum)
}
// repeated .autel.protocol.singleTargetInfo tarInfo = 4;
inline int tracerMeasureInfoMessage::_internal_tarinfo_size() const {
return _impl_.tarinfo_.size();
}
inline int tracerMeasureInfoMessage::tarinfo_size() const {
return _internal_tarinfo_size();
}
inline void tracerMeasureInfoMessage::clear_tarinfo() {
_impl_.tarinfo_.Clear();
}
inline ::autel::protocol::singleTargetInfo* tracerMeasureInfoMessage::mutable_tarinfo(int index) {
// @@protoc_insertion_point(field_mutable:autel.protocol.tracerMeasureInfoMessage.tarInfo)
return _impl_.tarinfo_.Mutable(index);
}
inline ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::autel::protocol::singleTargetInfo >*
tracerMeasureInfoMessage::mutable_tarinfo() {
// @@protoc_insertion_point(field_mutable_list:autel.protocol.tracerMeasureInfoMessage.tarInfo)
return &_impl_.tarinfo_;
}
inline const ::autel::protocol::singleTargetInfo& tracerMeasureInfoMessage::_internal_tarinfo(int index) const {
return _impl_.tarinfo_.Get(index);
}
inline const ::autel::protocol::singleTargetInfo& tracerMeasureInfoMessage::tarinfo(int index) const {
// @@protoc_insertion_point(field_get:autel.protocol.tracerMeasureInfoMessage.tarInfo)
return _internal_tarinfo(index);
}
inline ::autel::protocol::singleTargetInfo* tracerMeasureInfoMessage::_internal_add_tarinfo() {
return _impl_.tarinfo_.Add();
}
inline ::autel::protocol::singleTargetInfo* tracerMeasureInfoMessage::add_tarinfo() {
::autel::protocol::singleTargetInfo* _add = _internal_add_tarinfo();
// @@protoc_insertion_point(field_add:autel.protocol.tracerMeasureInfoMessage.tarInfo)
return _add;
}
inline const ::PROTOBUF_NAMESPACE_ID::RepeatedPtrField< ::autel::protocol::singleTargetInfo >&
tracerMeasureInfoMessage::tarinfo() const {
// @@protoc_insertion_point(field_list:autel.protocol.tracerMeasureInfoMessage.tarInfo)
return _impl_.tarinfo_;
}
// uint32 workMode = 5;
inline void tracerMeasureInfoMessage::clear_workmode() {
_impl_.workmode_ = 0u;
}
inline uint32_t tracerMeasureInfoMessage::_internal_workmode() const {
return _impl_.workmode_;
}
inline uint32_t tracerMeasureInfoMessage::workmode() const {
// @@protoc_insertion_point(field_get:autel.protocol.tracerMeasureInfoMessage.workMode)
return _internal_workmode();
}
inline void tracerMeasureInfoMessage::_internal_set_workmode(uint32_t value) {
_impl_.workmode_ = value;
}
inline void tracerMeasureInfoMessage::set_workmode(uint32_t value) {
_internal_set_workmode(value);
// @@protoc_insertion_point(field_set:autel.protocol.tracerMeasureInfoMessage.workMode)
}
// -------------------------------------------------------------------
// TracerWorkModeControlMessage
// uint32 seq = 1;
inline void TracerWorkModeControlMessage::clear_seq() {
_impl_.seq_ = 0u;
}
inline uint32_t TracerWorkModeControlMessage::_internal_seq() const {
return _impl_.seq_;
}
inline uint32_t TracerWorkModeControlMessage::seq() const {
// @@protoc_insertion_point(field_get:autel.protocol.TracerWorkModeControlMessage.seq)
return _internal_seq();
}
inline void TracerWorkModeControlMessage::_internal_set_seq(uint32_t value) {
_impl_.seq_ = value;
}
inline void TracerWorkModeControlMessage::set_seq(uint32_t value) {
_internal_set_seq(value);
// @@protoc_insertion_point(field_set:autel.protocol.TracerWorkModeControlMessage.seq)
}
// uint32 workMode = 2;
inline void TracerWorkModeControlMessage::clear_workmode() {
_impl_.workmode_ = 0u;
}
inline uint32_t TracerWorkModeControlMessage::_internal_workmode() const {
return _impl_.workmode_;
}
inline uint32_t TracerWorkModeControlMessage::workmode() const {
// @@protoc_insertion_point(field_get:autel.protocol.TracerWorkModeControlMessage.workMode)
return _internal_workmode();
}
inline void TracerWorkModeControlMessage::_internal_set_workmode(uint32_t value) {
_impl_.workmode_ = value;
}
inline void TracerWorkModeControlMessage::set_workmode(uint32_t value) {
_internal_set_workmode(value);
// @@protoc_insertion_point(field_set:autel.protocol.TracerWorkModeControlMessage.workMode)
}
// uint32 dxNum = 3;
inline void TracerWorkModeControlMessage::clear_dxnum() {
_impl_.dxnum_ = 0u;
}
inline uint32_t TracerWorkModeControlMessage::_internal_dxnum() const {
return _impl_.dxnum_;
}
inline uint32_t TracerWorkModeControlMessage::dxnum() const {
// @@protoc_insertion_point(field_get:autel.protocol.TracerWorkModeControlMessage.dxNum)
return _internal_dxnum();
}
inline void TracerWorkModeControlMessage::_internal_set_dxnum(uint32_t value) {
_impl_.dxnum_ = value;
}
inline void TracerWorkModeControlMessage::set_dxnum(uint32_t value) {
_internal_set_dxnum(value);
// @@protoc_insertion_point(field_set:autel.protocol.TracerWorkModeControlMessage.dxNum)
}
// uint32 dxFreq = 4;
inline void TracerWorkModeControlMessage::clear_dxfreq() {
_impl_.dxfreq_ = 0u;
}
inline uint32_t TracerWorkModeControlMessage::_internal_dxfreq() const {
return _impl_.dxfreq_;
}
inline uint32_t TracerWorkModeControlMessage::dxfreq() const {
// @@protoc_insertion_point(field_get:autel.protocol.TracerWorkModeControlMessage.dxFreq)
return _internal_dxfreq();
}
inline void TracerWorkModeControlMessage::_internal_set_dxfreq(uint32_t value) {
_impl_.dxfreq_ = value;
}
inline void TracerWorkModeControlMessage::set_dxfreq(uint32_t value) {
_internal_set_dxfreq(value);
// @@protoc_insertion_point(field_set:autel.protocol.TracerWorkModeControlMessage.dxFreq)
}
// uint32 airType = 5;
inline void TracerWorkModeControlMessage::clear_airtype() {
_impl_.airtype_ = 0u;
}
inline uint32_t TracerWorkModeControlMessage::_internal_airtype() const {
return _impl_.airtype_;
}
inline uint32_t TracerWorkModeControlMessage::airtype() const {
// @@protoc_insertion_point(field_get:autel.protocol.TracerWorkModeControlMessage.airType)
return _internal_airtype();
}
inline void TracerWorkModeControlMessage::_internal_set_airtype(uint32_t value) {
_impl_.airtype_ = value;
}
inline void TracerWorkModeControlMessage::set_airtype(uint32_t value) {
_internal_set_airtype(value);
// @@protoc_insertion_point(field_set:autel.protocol.TracerWorkModeControlMessage.airType)
}
// uint32 confidenceThr = 6;
inline void TracerWorkModeControlMessage::clear_confidencethr() {
_impl_.confidencethr_ = 0u;
}
inline uint32_t TracerWorkModeControlMessage::_internal_confidencethr() const {
return _impl_.confidencethr_;
}
inline uint32_t TracerWorkModeControlMessage::confidencethr() const {
// @@protoc_insertion_point(field_get:autel.protocol.TracerWorkModeControlMessage.confidenceThr)
return _internal_confidencethr();
}
inline void TracerWorkModeControlMessage::_internal_set_confidencethr(uint32_t value) {
_impl_.confidencethr_ = value;
}
inline void TracerWorkModeControlMessage::set_confidencethr(uint32_t value) {
_internal_set_confidencethr(value);
// @@protoc_insertion_point(field_set:autel.protocol.TracerWorkModeControlMessage.confidenceThr)
}
// -------------------------------------------------------------------
// TracerWorkModeControlRspMessage
// uint32 seq = 1;
inline void TracerWorkModeControlRspMessage::clear_seq() {
_impl_.seq_ = 0u;
}
inline uint32_t TracerWorkModeControlRspMessage::_internal_seq() const {
return _impl_.seq_;
}
inline uint32_t TracerWorkModeControlRspMessage::seq() const {
// @@protoc_insertion_point(field_get:autel.protocol.TracerWorkModeControlRspMessage.seq)
return _internal_seq();
}
inline void TracerWorkModeControlRspMessage::_internal_set_seq(uint32_t value) {
_impl_.seq_ = value;
}
inline void TracerWorkModeControlRspMessage::set_seq(uint32_t value) {
_internal_set_seq(value);
// @@protoc_insertion_point(field_set:autel.protocol.TracerWorkModeControlRspMessage.seq)
}
// uint32 rlt = 2;
inline void TracerWorkModeControlRspMessage::clear_rlt() {
_impl_.rlt_ = 0u;
}
inline uint32_t TracerWorkModeControlRspMessage::_internal_rlt() const {
return _impl_.rlt_;
}
inline uint32_t TracerWorkModeControlRspMessage::rlt() const {
// @@protoc_insertion_point(field_get:autel.protocol.TracerWorkModeControlRspMessage.rlt)
return _internal_rlt();
}
inline void TracerWorkModeControlRspMessage::_internal_set_rlt(uint32_t value) {
_impl_.rlt_ = value;
}
inline void TracerWorkModeControlRspMessage::set_rlt(uint32_t value) {
_internal_set_rlt(value);
// @@protoc_insertion_point(field_set:autel.protocol.TracerWorkModeControlRspMessage.rlt)
}
// -------------------------------------------------------------------
// TracerStaggerFreqMessage
// uint32 seq = 1;
inline void TracerStaggerFreqMessage::clear_seq() {
_impl_.seq_ = 0u;
}
inline uint32_t TracerStaggerFreqMessage::_internal_seq() const {
return _impl_.seq_;
}
inline uint32_t TracerStaggerFreqMessage::seq() const {
// @@protoc_insertion_point(field_get:autel.protocol.TracerStaggerFreqMessage.seq)
return _internal_seq();
}
inline void TracerStaggerFreqMessage::_internal_set_seq(uint32_t value) {
_impl_.seq_ = value;
}
inline void TracerStaggerFreqMessage::set_seq(uint32_t value) {
_internal_set_seq(value);
// @@protoc_insertion_point(field_set:autel.protocol.TracerStaggerFreqMessage.seq)
}
// uint32 freqBand = 2;
inline void TracerStaggerFreqMessage::clear_freqband() {
_impl_.freqband_ = 0u;
}
inline uint32_t TracerStaggerFreqMessage::_internal_freqband() const {
return _impl_.freqband_;
}
inline uint32_t TracerStaggerFreqMessage::freqband() const {
// @@protoc_insertion_point(field_get:autel.protocol.TracerStaggerFreqMessage.freqBand)
return _internal_freqband();
}
inline void TracerStaggerFreqMessage::_internal_set_freqband(uint32_t value) {
_impl_.freqband_ = value;
}
inline void TracerStaggerFreqMessage::set_freqband(uint32_t value) {
_internal_set_freqband(value);
// @@protoc_insertion_point(field_set:autel.protocol.TracerStaggerFreqMessage.freqBand)
}
// uint32 timStamp = 3;
inline void TracerStaggerFreqMessage::clear_timstamp() {
_impl_.timstamp_ = 0u;
}
inline uint32_t TracerStaggerFreqMessage::_internal_timstamp() const {
return _impl_.timstamp_;
}
inline uint32_t TracerStaggerFreqMessage::timstamp() const {
// @@protoc_insertion_point(field_get:autel.protocol.TracerStaggerFreqMessage.timStamp)
return _internal_timstamp();
}
inline void TracerStaggerFreqMessage::_internal_set_timstamp(uint32_t value) {
_impl_.timstamp_ = value;
}
inline void TracerStaggerFreqMessage::set_timstamp(uint32_t value) {
_internal_set_timstamp(value);
// @@protoc_insertion_point(field_set:autel.protocol.TracerStaggerFreqMessage.timStamp)
}
// uint32 reserv = 4;
inline void TracerStaggerFreqMessage::clear_reserv() {
_impl_.reserv_ = 0u;
}
inline uint32_t TracerStaggerFreqMessage::_internal_reserv() const {
return _impl_.reserv_;
}
inline uint32_t TracerStaggerFreqMessage::reserv() const {
// @@protoc_insertion_point(field_get:autel.protocol.TracerStaggerFreqMessage.reserv)
return _internal_reserv();
}
inline void TracerStaggerFreqMessage::_internal_set_reserv(uint32_t value) {
_impl_.reserv_ = value;
}
inline void TracerStaggerFreqMessage::set_reserv(uint32_t value) {
_internal_set_reserv(value);
// @@protoc_insertion_point(field_set:autel.protocol.TracerStaggerFreqMessage.reserv)
}
// -------------------------------------------------------------------
// TracerSystemInfoMessage
// string sn = 1;
inline void TracerSystemInfoMessage::clear_sn() {
_impl_.sn_.ClearToEmpty();
}
inline const std::string& TracerSystemInfoMessage::sn() const {
// @@protoc_insertion_point(field_get:autel.protocol.TracerSystemInfoMessage.sn)
return _internal_sn();
}
template <typename ArgT0, typename... ArgT>
inline PROTOBUF_ALWAYS_INLINE
void TracerSystemInfoMessage::set_sn(ArgT0&& arg0, ArgT... args) {
_impl_.sn_.Set(static_cast<ArgT0 &&>(arg0), args..., GetArenaForAllocation());
// @@protoc_insertion_point(field_set:autel.protocol.TracerSystemInfoMessage.sn)
}
inline std::string* TracerSystemInfoMessage::mutable_sn() {
std::string* _s = _internal_mutable_sn();
// @@protoc_insertion_point(field_mutable:autel.protocol.TracerSystemInfoMessage.sn)
return _s;
}
inline const std::string& TracerSystemInfoMessage::_internal_sn() const {
return _impl_.sn_.Get();
}
inline void TracerSystemInfoMessage::_internal_set_sn(const std::string& value) {
_impl_.sn_.Set(value, GetArenaForAllocation());
}
inline std::string* TracerSystemInfoMessage::_internal_mutable_sn() {
return _impl_.sn_.Mutable(GetArenaForAllocation());
}
inline std::string* TracerSystemInfoMessage::release_sn() {
// @@protoc_insertion_point(field_release:autel.protocol.TracerSystemInfoMessage.sn)
return _impl_.sn_.Release();
}
inline void TracerSystemInfoMessage::set_allocated_sn(std::string* sn) {
if (sn != nullptr) {
} else {
}
_impl_.sn_.SetAllocated(sn, GetArenaForAllocation());
#ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
if (_impl_.sn_.IsDefault()) {
_impl_.sn_.Set("", GetArenaForAllocation());
}
#endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
// @@protoc_insertion_point(field_set_allocated:autel.protocol.TracerSystemInfoMessage.sn)
}
// string version = 2;
inline void TracerSystemInfoMessage::clear_version() {
_impl_.version_.ClearToEmpty();
}
inline const std::string& TracerSystemInfoMessage::version() const {
// @@protoc_insertion_point(field_get:autel.protocol.TracerSystemInfoMessage.version)
return _internal_version();
}
template <typename ArgT0, typename... ArgT>
inline PROTOBUF_ALWAYS_INLINE
void TracerSystemInfoMessage::set_version(ArgT0&& arg0, ArgT... args) {
_impl_.version_.Set(static_cast<ArgT0 &&>(arg0), args..., GetArenaForAllocation());
// @@protoc_insertion_point(field_set:autel.protocol.TracerSystemInfoMessage.version)
}
inline std::string* TracerSystemInfoMessage::mutable_version() {
std::string* _s = _internal_mutable_version();
// @@protoc_insertion_point(field_mutable:autel.protocol.TracerSystemInfoMessage.version)
return _s;
}
inline const std::string& TracerSystemInfoMessage::_internal_version() const {
return _impl_.version_.Get();
}
inline void TracerSystemInfoMessage::_internal_set_version(const std::string& value) {
_impl_.version_.Set(value, GetArenaForAllocation());
}
inline std::string* TracerSystemInfoMessage::_internal_mutable_version() {
return _impl_.version_.Mutable(GetArenaForAllocation());
}
inline std::string* TracerSystemInfoMessage::release_version() {
// @@protoc_insertion_point(field_release:autel.protocol.TracerSystemInfoMessage.version)
return _impl_.version_.Release();
}
inline void TracerSystemInfoMessage::set_allocated_version(std::string* version) {
if (version != nullptr) {
} else {
}
_impl_.version_.SetAllocated(version, GetArenaForAllocation());
#ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
if (_impl_.version_.IsDefault()) {
_impl_.version_.Set("", GetArenaForAllocation());
}
#endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
// @@protoc_insertion_point(field_set_allocated:autel.protocol.TracerSystemInfoMessage.version)
}
// string ssid = 3;
inline void TracerSystemInfoMessage::clear_ssid() {
_impl_.ssid_.ClearToEmpty();
}
inline const std::string& TracerSystemInfoMessage::ssid() const {
// @@protoc_insertion_point(field_get:autel.protocol.TracerSystemInfoMessage.ssid)
return _internal_ssid();
}
template <typename ArgT0, typename... ArgT>
inline PROTOBUF_ALWAYS_INLINE
void TracerSystemInfoMessage::set_ssid(ArgT0&& arg0, ArgT... args) {
_impl_.ssid_.Set(static_cast<ArgT0 &&>(arg0), args..., GetArenaForAllocation());
// @@protoc_insertion_point(field_set:autel.protocol.TracerSystemInfoMessage.ssid)
}
inline std::string* TracerSystemInfoMessage::mutable_ssid() {
std::string* _s = _internal_mutable_ssid();
// @@protoc_insertion_point(field_mutable:autel.protocol.TracerSystemInfoMessage.ssid)
return _s;
}
inline const std::string& TracerSystemInfoMessage::_internal_ssid() const {
return _impl_.ssid_.Get();
}
inline void TracerSystemInfoMessage::_internal_set_ssid(const std::string& value) {
_impl_.ssid_.Set(value, GetArenaForAllocation());
}
inline std::string* TracerSystemInfoMessage::_internal_mutable_ssid() {
return _impl_.ssid_.Mutable(GetArenaForAllocation());
}
inline std::string* TracerSystemInfoMessage::release_ssid() {
// @@protoc_insertion_point(field_release:autel.protocol.TracerSystemInfoMessage.ssid)
return _impl_.ssid_.Release();
}
inline void TracerSystemInfoMessage::set_allocated_ssid(std::string* ssid) {
if (ssid != nullptr) {
} else {
}
_impl_.ssid_.SetAllocated(ssid, GetArenaForAllocation());
#ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
if (_impl_.ssid_.IsDefault()) {
_impl_.ssid_.Set("", GetArenaForAllocation());
}
#endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
// @@protoc_insertion_point(field_set_allocated:autel.protocol.TracerSystemInfoMessage.ssid)
}
// string ipAddress = 4;
inline void TracerSystemInfoMessage::clear_ipaddress() {
_impl_.ipaddress_.ClearToEmpty();
}
inline const std::string& TracerSystemInfoMessage::ipaddress() const {
// @@protoc_insertion_point(field_get:autel.protocol.TracerSystemInfoMessage.ipAddress)
return _internal_ipaddress();
}
template <typename ArgT0, typename... ArgT>
inline PROTOBUF_ALWAYS_INLINE
void TracerSystemInfoMessage::set_ipaddress(ArgT0&& arg0, ArgT... args) {
_impl_.ipaddress_.Set(static_cast<ArgT0 &&>(arg0), args..., GetArenaForAllocation());
// @@protoc_insertion_point(field_set:autel.protocol.TracerSystemInfoMessage.ipAddress)
}
inline std::string* TracerSystemInfoMessage::mutable_ipaddress() {
std::string* _s = _internal_mutable_ipaddress();
// @@protoc_insertion_point(field_mutable:autel.protocol.TracerSystemInfoMessage.ipAddress)
return _s;
}
inline const std::string& TracerSystemInfoMessage::_internal_ipaddress() const {
return _impl_.ipaddress_.Get();
}
inline void TracerSystemInfoMessage::_internal_set_ipaddress(const std::string& value) {
_impl_.ipaddress_.Set(value, GetArenaForAllocation());
}
inline std::string* TracerSystemInfoMessage::_internal_mutable_ipaddress() {
return _impl_.ipaddress_.Mutable(GetArenaForAllocation());
}
inline std::string* TracerSystemInfoMessage::release_ipaddress() {
// @@protoc_insertion_point(field_release:autel.protocol.TracerSystemInfoMessage.ipAddress)
return _impl_.ipaddress_.Release();
}
inline void TracerSystemInfoMessage::set_allocated_ipaddress(std::string* ipaddress) {
if (ipaddress != nullptr) {
} else {
}
_impl_.ipaddress_.SetAllocated(ipaddress, GetArenaForAllocation());
#ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
if (_impl_.ipaddress_.IsDefault()) {
_impl_.ipaddress_.Set("", GetArenaForAllocation());
}
#endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
// @@protoc_insertion_point(field_set_allocated:autel.protocol.TracerSystemInfoMessage.ipAddress)
}
// uint32 workStatus = 5;
inline void TracerSystemInfoMessage::clear_workstatus() {
_impl_.workstatus_ = 0u;
}
inline uint32_t TracerSystemInfoMessage::_internal_workstatus() const {
return _impl_.workstatus_;
}
inline uint32_t TracerSystemInfoMessage::workstatus() const {
// @@protoc_insertion_point(field_get:autel.protocol.TracerSystemInfoMessage.workStatus)
return _internal_workstatus();
}
inline void TracerSystemInfoMessage::_internal_set_workstatus(uint32_t value) {
_impl_.workstatus_ = value;
}
inline void TracerSystemInfoMessage::set_workstatus(uint32_t value) {
_internal_set_workstatus(value);
// @@protoc_insertion_point(field_set:autel.protocol.TracerSystemInfoMessage.workStatus)
}
// uint32 faultStatus = 6;
inline void TracerSystemInfoMessage::clear_faultstatus() {
_impl_.faultstatus_ = 0u;
}
inline uint32_t TracerSystemInfoMessage::_internal_faultstatus() const {
return _impl_.faultstatus_;
}
inline uint32_t TracerSystemInfoMessage::faultstatus() const {
// @@protoc_insertion_point(field_get:autel.protocol.TracerSystemInfoMessage.faultStatus)
return _internal_faultstatus();
}
inline void TracerSystemInfoMessage::_internal_set_faultstatus(uint32_t value) {
_impl_.faultstatus_ = value;
}
inline void TracerSystemInfoMessage::set_faultstatus(uint32_t value) {
_internal_set_faultstatus(value);
// @@protoc_insertion_point(field_set:autel.protocol.TracerSystemInfoMessage.faultStatus)
}
// uint32 netStatus = 7;
inline void TracerSystemInfoMessage::clear_netstatus() {
_impl_.netstatus_ = 0u;
}
inline uint32_t TracerSystemInfoMessage::_internal_netstatus() const {
return _impl_.netstatus_;
}
inline uint32_t TracerSystemInfoMessage::netstatus() const {
// @@protoc_insertion_point(field_get:autel.protocol.TracerSystemInfoMessage.netStatus)
return _internal_netstatus();
}
inline void TracerSystemInfoMessage::_internal_set_netstatus(uint32_t value) {
_impl_.netstatus_ = value;
}
inline void TracerSystemInfoMessage::set_netstatus(uint32_t value) {
_internal_set_netstatus(value);
// @@protoc_insertion_point(field_set:autel.protocol.TracerSystemInfoMessage.netStatus)
}
// uint32 upTime = 8;
inline void TracerSystemInfoMessage::clear_uptime() {
_impl_.uptime_ = 0u;
}
inline uint32_t TracerSystemInfoMessage::_internal_uptime() const {
return _impl_.uptime_;
}
inline uint32_t TracerSystemInfoMessage::uptime() const {
// @@protoc_insertion_point(field_get:autel.protocol.TracerSystemInfoMessage.upTime)
return _internal_uptime();
}
inline void TracerSystemInfoMessage::_internal_set_uptime(uint32_t value) {
_impl_.uptime_ = value;
}
inline void TracerSystemInfoMessage::set_uptime(uint32_t value) {
_internal_set_uptime(value);
// @@protoc_insertion_point(field_set:autel.protocol.TracerSystemInfoMessage.upTime)
}
// uint32 cpu = 9;
inline void TracerSystemInfoMessage::clear_cpu() {
_impl_.cpu_ = 0u;
}
inline uint32_t TracerSystemInfoMessage::_internal_cpu() const {
return _impl_.cpu_;
}
inline uint32_t TracerSystemInfoMessage::cpu() const {
// @@protoc_insertion_point(field_get:autel.protocol.TracerSystemInfoMessage.cpu)
return _internal_cpu();
}
inline void TracerSystemInfoMessage::_internal_set_cpu(uint32_t value) {
_impl_.cpu_ = value;
}
inline void TracerSystemInfoMessage::set_cpu(uint32_t value) {
_internal_set_cpu(value);
// @@protoc_insertion_point(field_set:autel.protocol.TracerSystemInfoMessage.cpu)
}
// uint32 memory = 10;
inline void TracerSystemInfoMessage::clear_memory() {
_impl_.memory_ = 0u;
}
inline uint32_t TracerSystemInfoMessage::_internal_memory() const {
return _impl_.memory_;
}
inline uint32_t TracerSystemInfoMessage::memory() const {
// @@protoc_insertion_point(field_get:autel.protocol.TracerSystemInfoMessage.memory)
return _internal_memory();
}
inline void TracerSystemInfoMessage::_internal_set_memory(uint32_t value) {
_impl_.memory_ = value;
}
inline void TracerSystemInfoMessage::set_memory(uint32_t value) {
_internal_set_memory(value);
// @@protoc_insertion_point(field_set:autel.protocol.TracerSystemInfoMessage.memory)
}
// repeated uint32 disk = 11;
inline int TracerSystemInfoMessage::_internal_disk_size() const {
return _impl_.disk_.size();
}
inline int TracerSystemInfoMessage::disk_size() const {
return _internal_disk_size();
}
inline void TracerSystemInfoMessage::clear_disk() {
_impl_.disk_.Clear();
}
inline uint32_t TracerSystemInfoMessage::_internal_disk(int index) const {
return _impl_.disk_.Get(index);
}
inline uint32_t TracerSystemInfoMessage::disk(int index) const {
// @@protoc_insertion_point(field_get:autel.protocol.TracerSystemInfoMessage.disk)
return _internal_disk(index);
}
inline void TracerSystemInfoMessage::set_disk(int index, uint32_t value) {
_impl_.disk_.Set(index, value);
// @@protoc_insertion_point(field_set:autel.protocol.TracerSystemInfoMessage.disk)
}
inline void TracerSystemInfoMessage::_internal_add_disk(uint32_t value) {
_impl_.disk_.Add(value);
}
inline void TracerSystemInfoMessage::add_disk(uint32_t value) {
_internal_add_disk(value);
// @@protoc_insertion_point(field_add:autel.protocol.TracerSystemInfoMessage.disk)
}
inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >&
TracerSystemInfoMessage::_internal_disk() const {
return _impl_.disk_;
}
inline const ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >&
TracerSystemInfoMessage::disk() const {
// @@protoc_insertion_point(field_list:autel.protocol.TracerSystemInfoMessage.disk)
return _internal_disk();
}
inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >*
TracerSystemInfoMessage::_internal_mutable_disk() {
return &_impl_.disk_;
}
inline ::PROTOBUF_NAMESPACE_ID::RepeatedField< uint32_t >*
TracerSystemInfoMessage::mutable_disk() {
// @@protoc_insertion_point(field_mutable_list:autel.protocol.TracerSystemInfoMessage.disk)
return _internal_mutable_disk();
}
// uint32 temperature = 12;
inline void TracerSystemInfoMessage::clear_temperature() {
_impl_.temperature_ = 0u;
}
inline uint32_t TracerSystemInfoMessage::_internal_temperature() const {
return _impl_.temperature_;
}
inline uint32_t TracerSystemInfoMessage::temperature() const {
// @@protoc_insertion_point(field_get:autel.protocol.TracerSystemInfoMessage.temperature)
return _internal_temperature();
}
inline void TracerSystemInfoMessage::_internal_set_temperature(uint32_t value) {
_impl_.temperature_ = value;
}
inline void TracerSystemInfoMessage::set_temperature(uint32_t value) {
_internal_set_temperature(value);
// @@protoc_insertion_point(field_set:autel.protocol.TracerSystemInfoMessage.temperature)
}
#ifdef __GNUC__
#pragma GCC diagnostic pop
#endif // __GNUC__
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// -------------------------------------------------------------------
// @@protoc_insertion_point(namespace_scope)
} // namespace protocol
} // namespace autel
// @@protoc_insertion_point(global_scope)
#include <google/protobuf/port_undef.inc>
#endif // GOOGLE_PROTOBUF_INCLUDED_GOOGLE_PROTOBUF_INCLUDED_tracerMessage_2eproto