measure_message.pb.h 151 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945
  1. // Generated by the protocol buffer compiler. DO NOT EDIT!
  2. // source: measure_message.proto
  3. #ifndef PROTOBUF_INCLUDED_measure_5fmessage_2eproto
  4. #define PROTOBUF_INCLUDED_measure_5fmessage_2eproto
  5. #include <string>
  6. #include <google/protobuf/stubs/common.h>
  7. #if GOOGLE_PROTOBUF_VERSION < 3006001
  8. #error This file was generated by a newer version of protoc which is
  9. #error incompatible with your Protocol Buffer headers. Please update
  10. #error your headers.
  11. #endif
  12. #if 3006001 < GOOGLE_PROTOBUF_MIN_PROTOC_VERSION
  13. #error This file was generated by an older version of protoc which is
  14. #error incompatible with your Protocol Buffer headers. Please
  15. #error regenerate this file with a newer version of protoc.
  16. #endif
  17. #include <google/protobuf/io/coded_stream.h>
  18. #include <google/protobuf/arena.h>
  19. #include <google/protobuf/arenastring.h>
  20. #include <google/protobuf/generated_message_table_driven.h>
  21. #include <google/protobuf/generated_message_util.h>
  22. #include <google/protobuf/inlined_string_field.h>
  23. #include <google/protobuf/metadata.h>
  24. #include <google/protobuf/message.h>
  25. #include <google/protobuf/repeated_field.h> // IWYU pragma: export
  26. #include <google/protobuf/extension_set.h> // IWYU pragma: export
  27. #include <google/protobuf/generated_enum_reflection.h>
  28. #include <google/protobuf/unknown_field_set.h>
  29. #include "message_base.pb.h"
  30. // @@protoc_insertion_point(includes)
  31. #define PROTOBUF_INTERNAL_EXPORT_protobuf_measure_5fmessage_2eproto
  32. namespace protobuf_measure_5fmessage_2eproto {
  33. // Internal implementation detail -- do not use these members.
  34. struct TableStruct {
  35. static const ::google::protobuf::internal::ParseTableField entries[];
  36. static const ::google::protobuf::internal::AuxillaryParseTableField aux[];
  37. static const ::google::protobuf::internal::ParseTable schema[10];
  38. static const ::google::protobuf::internal::FieldMetadata field_metadata[];
  39. static const ::google::protobuf::internal::SerializationTable serialization_table[];
  40. static const ::google::protobuf::uint32 offsets[];
  41. };
  42. void AddDescriptors();
  43. } // namespace protobuf_measure_5fmessage_2eproto
  44. namespace message {
  45. class Cloud_coordinate;
  46. class Cloud_coordinateDefaultTypeInternal;
  47. extern Cloud_coordinateDefaultTypeInternal _Cloud_coordinate_default_instance_;
  48. class Cloud_type;
  49. class Cloud_typeDefaultTypeInternal;
  50. extern Cloud_typeDefaultTypeInternal _Cloud_type_default_instance_;
  51. class Ground_detect_request_msg;
  52. class Ground_detect_request_msgDefaultTypeInternal;
  53. extern Ground_detect_request_msgDefaultTypeInternal _Ground_detect_request_msg_default_instance_;
  54. class Ground_detect_response_msg;
  55. class Ground_detect_response_msgDefaultTypeInternal;
  56. extern Ground_detect_response_msgDefaultTypeInternal _Ground_detect_response_msg_default_instance_;
  57. class Ground_status_msg;
  58. class Ground_status_msgDefaultTypeInternal;
  59. extern Ground_status_msgDefaultTypeInternal _Ground_status_msg_default_instance_;
  60. class Locate_sift_request_msg;
  61. class Locate_sift_request_msgDefaultTypeInternal;
  62. extern Locate_sift_request_msgDefaultTypeInternal _Locate_sift_request_msg_default_instance_;
  63. class Locate_sift_response_msg;
  64. class Locate_sift_response_msgDefaultTypeInternal;
  65. extern Locate_sift_response_msgDefaultTypeInternal _Locate_sift_response_msg_default_instance_;
  66. class Measure_request_msg;
  67. class Measure_request_msgDefaultTypeInternal;
  68. extern Measure_request_msgDefaultTypeInternal _Measure_request_msg_default_instance_;
  69. class Measure_response_msg;
  70. class Measure_response_msgDefaultTypeInternal;
  71. extern Measure_response_msgDefaultTypeInternal _Measure_response_msg_default_instance_;
  72. class Measure_status_msg;
  73. class Measure_status_msgDefaultTypeInternal;
  74. extern Measure_status_msgDefaultTypeInternal _Measure_status_msg_default_instance_;
  75. } // namespace message
  76. namespace google {
  77. namespace protobuf {
  78. template<> ::message::Cloud_coordinate* Arena::CreateMaybeMessage<::message::Cloud_coordinate>(Arena*);
  79. template<> ::message::Cloud_type* Arena::CreateMaybeMessage<::message::Cloud_type>(Arena*);
  80. template<> ::message::Ground_detect_request_msg* Arena::CreateMaybeMessage<::message::Ground_detect_request_msg>(Arena*);
  81. template<> ::message::Ground_detect_response_msg* Arena::CreateMaybeMessage<::message::Ground_detect_response_msg>(Arena*);
  82. template<> ::message::Ground_status_msg* Arena::CreateMaybeMessage<::message::Ground_status_msg>(Arena*);
  83. template<> ::message::Locate_sift_request_msg* Arena::CreateMaybeMessage<::message::Locate_sift_request_msg>(Arena*);
  84. template<> ::message::Locate_sift_response_msg* Arena::CreateMaybeMessage<::message::Locate_sift_response_msg>(Arena*);
  85. template<> ::message::Measure_request_msg* Arena::CreateMaybeMessage<::message::Measure_request_msg>(Arena*);
  86. template<> ::message::Measure_response_msg* Arena::CreateMaybeMessage<::message::Measure_response_msg>(Arena*);
  87. template<> ::message::Measure_status_msg* Arena::CreateMaybeMessage<::message::Measure_status_msg>(Arena*);
  88. } // namespace protobuf
  89. } // namespace google
  90. namespace message {
  91. enum Laser_manager_status {
  92. LASER_MANAGER_UNKNOW = 0,
  93. LASER_MANAGER_READY = 1,
  94. LASER_MANAGER_ISSUED_TASK = 2,
  95. LASER_MANAGER_WAIT_REPLY = 3,
  96. LASER_MANAGER_FAULT = 4
  97. };
  98. bool Laser_manager_status_IsValid(int value);
  99. const Laser_manager_status Laser_manager_status_MIN = LASER_MANAGER_UNKNOW;
  100. const Laser_manager_status Laser_manager_status_MAX = LASER_MANAGER_FAULT;
  101. const int Laser_manager_status_ARRAYSIZE = Laser_manager_status_MAX + 1;
  102. const ::google::protobuf::EnumDescriptor* Laser_manager_status_descriptor();
  103. inline const ::std::string& Laser_manager_status_Name(Laser_manager_status value) {
  104. return ::google::protobuf::internal::NameOfEnum(
  105. Laser_manager_status_descriptor(), value);
  106. }
  107. inline bool Laser_manager_status_Parse(
  108. const ::std::string& name, Laser_manager_status* value) {
  109. return ::google::protobuf::internal::ParseNamedEnum<Laser_manager_status>(
  110. Laser_manager_status_descriptor(), name, value);
  111. }
  112. enum Laser_statu {
  113. LASER_DISCONNECT = 0,
  114. LASER_READY = 1,
  115. LASER_BUSY = 2,
  116. LASER_FAULT = 3
  117. };
  118. bool Laser_statu_IsValid(int value);
  119. const Laser_statu Laser_statu_MIN = LASER_DISCONNECT;
  120. const Laser_statu Laser_statu_MAX = LASER_FAULT;
  121. const int Laser_statu_ARRAYSIZE = Laser_statu_MAX + 1;
  122. const ::google::protobuf::EnumDescriptor* Laser_statu_descriptor();
  123. inline const ::std::string& Laser_statu_Name(Laser_statu value) {
  124. return ::google::protobuf::internal::NameOfEnum(
  125. Laser_statu_descriptor(), value);
  126. }
  127. inline bool Laser_statu_Parse(
  128. const ::std::string& name, Laser_statu* value) {
  129. return ::google::protobuf::internal::ParseNamedEnum<Laser_statu>(
  130. Laser_statu_descriptor(), name, value);
  131. }
  132. enum Locate_manager_status {
  133. LOCATE_MANAGER_UNKNOW = 0,
  134. LOCATE_MANAGER_READY = 1,
  135. LOCATE_MANAGER_SIFT = 2,
  136. LOCATE_MANAGER_CAR = 3,
  137. LOCATE_MANAGER_WHEEL = 4,
  138. LOCATE_MANAGER_FAULT = 5
  139. };
  140. bool Locate_manager_status_IsValid(int value);
  141. const Locate_manager_status Locate_manager_status_MIN = LOCATE_MANAGER_UNKNOW;
  142. const Locate_manager_status Locate_manager_status_MAX = LOCATE_MANAGER_FAULT;
  143. const int Locate_manager_status_ARRAYSIZE = Locate_manager_status_MAX + 1;
  144. const ::google::protobuf::EnumDescriptor* Locate_manager_status_descriptor();
  145. inline const ::std::string& Locate_manager_status_Name(Locate_manager_status value) {
  146. return ::google::protobuf::internal::NameOfEnum(
  147. Locate_manager_status_descriptor(), value);
  148. }
  149. inline bool Locate_manager_status_Parse(
  150. const ::std::string& name, Locate_manager_status* value) {
  151. return ::google::protobuf::internal::ParseNamedEnum<Locate_manager_status>(
  152. Locate_manager_status_descriptor(), name, value);
  153. }
  154. enum Wanji_manager_status {
  155. WANJI_MANAGER_UNKNOWN = 0,
  156. WANJI_MANAGER_READY = 1,
  157. WANJI_MANAGER_BUSY = 2,
  158. WANJI_MANAGER_ISSUED_SCAN = 3,
  159. WANJI_MANAGER_WAIT_SCAN = 4,
  160. WANJI_MANAGER_ISSUED_DETECT = 5,
  161. WANJI_MANAGER_WAIT_DETECT = 6,
  162. WANJI_MANAGER_FAULT = 10
  163. };
  164. bool Wanji_manager_status_IsValid(int value);
  165. const Wanji_manager_status Wanji_manager_status_MIN = WANJI_MANAGER_UNKNOWN;
  166. const Wanji_manager_status Wanji_manager_status_MAX = WANJI_MANAGER_FAULT;
  167. const int Wanji_manager_status_ARRAYSIZE = Wanji_manager_status_MAX + 1;
  168. const ::google::protobuf::EnumDescriptor* Wanji_manager_status_descriptor();
  169. inline const ::std::string& Wanji_manager_status_Name(Wanji_manager_status value) {
  170. return ::google::protobuf::internal::NameOfEnum(
  171. Wanji_manager_status_descriptor(), value);
  172. }
  173. inline bool Wanji_manager_status_Parse(
  174. const ::std::string& name, Wanji_manager_status* value) {
  175. return ::google::protobuf::internal::ParseNamedEnum<Wanji_manager_status>(
  176. Wanji_manager_status_descriptor(), name, value);
  177. }
  178. enum Wanji_lidar_device_status {
  179. WANJI_LIDAR_DEVICE_UNKNOWN = 0,
  180. WANJI_LIDAR_DEVICE_READY = 1,
  181. WANJI_LIDAR_DEVICE_DISCONNECT = 2,
  182. WANJI_LIDAR_DEVICE_BUSY = 3,
  183. WANJI_LIDAR_DEVICE_FAULT = 10
  184. };
  185. bool Wanji_lidar_device_status_IsValid(int value);
  186. const Wanji_lidar_device_status Wanji_lidar_device_status_MIN = WANJI_LIDAR_DEVICE_UNKNOWN;
  187. const Wanji_lidar_device_status Wanji_lidar_device_status_MAX = WANJI_LIDAR_DEVICE_FAULT;
  188. const int Wanji_lidar_device_status_ARRAYSIZE = Wanji_lidar_device_status_MAX + 1;
  189. const ::google::protobuf::EnumDescriptor* Wanji_lidar_device_status_descriptor();
  190. inline const ::std::string& Wanji_lidar_device_status_Name(Wanji_lidar_device_status value) {
  191. return ::google::protobuf::internal::NameOfEnum(
  192. Wanji_lidar_device_status_descriptor(), value);
  193. }
  194. inline bool Wanji_lidar_device_status_Parse(
  195. const ::std::string& name, Wanji_lidar_device_status* value) {
  196. return ::google::protobuf::internal::ParseNamedEnum<Wanji_lidar_device_status>(
  197. Wanji_lidar_device_status_descriptor(), name, value);
  198. }
  199. enum Region_worker_status {
  200. REGION_WORKER_UNKNOWN = 0,
  201. REGION_WORKER_READY = 1,
  202. REGION_WORKER_BUSY = 2,
  203. REGION_WORKER_FAULT = 10
  204. };
  205. bool Region_worker_status_IsValid(int value);
  206. const Region_worker_status Region_worker_status_MIN = REGION_WORKER_UNKNOWN;
  207. const Region_worker_status Region_worker_status_MAX = REGION_WORKER_FAULT;
  208. const int Region_worker_status_ARRAYSIZE = Region_worker_status_MAX + 1;
  209. const ::google::protobuf::EnumDescriptor* Region_worker_status_descriptor();
  210. inline const ::std::string& Region_worker_status_Name(Region_worker_status value) {
  211. return ::google::protobuf::internal::NameOfEnum(
  212. Region_worker_status_descriptor(), value);
  213. }
  214. inline bool Region_worker_status_Parse(
  215. const ::std::string& name, Region_worker_status* value) {
  216. return ::google::protobuf::internal::ParseNamedEnum<Region_worker_status>(
  217. Region_worker_status_descriptor(), name, value);
  218. }
  219. enum Ground_statu {
  220. Nothing = 0,
  221. Noise = 1,
  222. Car_correct = 2,
  223. Car_border_reached = 3
  224. };
  225. bool Ground_statu_IsValid(int value);
  226. const Ground_statu Ground_statu_MIN = Nothing;
  227. const Ground_statu Ground_statu_MAX = Car_border_reached;
  228. const int Ground_statu_ARRAYSIZE = Ground_statu_MAX + 1;
  229. const ::google::protobuf::EnumDescriptor* Ground_statu_descriptor();
  230. inline const ::std::string& Ground_statu_Name(Ground_statu value) {
  231. return ::google::protobuf::internal::NameOfEnum(
  232. Ground_statu_descriptor(), value);
  233. }
  234. inline bool Ground_statu_Parse(
  235. const ::std::string& name, Ground_statu* value) {
  236. return ::google::protobuf::internal::ParseNamedEnum<Ground_statu>(
  237. Ground_statu_descriptor(), name, value);
  238. }
  239. // ===================================================================
  240. class Measure_status_msg : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Measure_status_msg) */ {
  241. public:
  242. Measure_status_msg();
  243. virtual ~Measure_status_msg();
  244. Measure_status_msg(const Measure_status_msg& from);
  245. inline Measure_status_msg& operator=(const Measure_status_msg& from) {
  246. CopyFrom(from);
  247. return *this;
  248. }
  249. #if LANG_CXX11
  250. Measure_status_msg(Measure_status_msg&& from) noexcept
  251. : Measure_status_msg() {
  252. *this = ::std::move(from);
  253. }
  254. inline Measure_status_msg& operator=(Measure_status_msg&& from) noexcept {
  255. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  256. if (this != &from) InternalSwap(&from);
  257. } else {
  258. CopyFrom(from);
  259. }
  260. return *this;
  261. }
  262. #endif
  263. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  264. return _internal_metadata_.unknown_fields();
  265. }
  266. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  267. return _internal_metadata_.mutable_unknown_fields();
  268. }
  269. static const ::google::protobuf::Descriptor* descriptor();
  270. static const Measure_status_msg& default_instance();
  271. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  272. static inline const Measure_status_msg* internal_default_instance() {
  273. return reinterpret_cast<const Measure_status_msg*>(
  274. &_Measure_status_msg_default_instance_);
  275. }
  276. static constexpr int kIndexInFileMessages =
  277. 0;
  278. void Swap(Measure_status_msg* other);
  279. friend void swap(Measure_status_msg& a, Measure_status_msg& b) {
  280. a.Swap(&b);
  281. }
  282. // implements Message ----------------------------------------------
  283. inline Measure_status_msg* New() const final {
  284. return CreateMaybeMessage<Measure_status_msg>(NULL);
  285. }
  286. Measure_status_msg* New(::google::protobuf::Arena* arena) const final {
  287. return CreateMaybeMessage<Measure_status_msg>(arena);
  288. }
  289. void CopyFrom(const ::google::protobuf::Message& from) final;
  290. void MergeFrom(const ::google::protobuf::Message& from) final;
  291. void CopyFrom(const Measure_status_msg& from);
  292. void MergeFrom(const Measure_status_msg& from);
  293. void Clear() final;
  294. bool IsInitialized() const final;
  295. size_t ByteSizeLong() const final;
  296. bool MergePartialFromCodedStream(
  297. ::google::protobuf::io::CodedInputStream* input) final;
  298. void SerializeWithCachedSizes(
  299. ::google::protobuf::io::CodedOutputStream* output) const final;
  300. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  301. bool deterministic, ::google::protobuf::uint8* target) const final;
  302. int GetCachedSize() const final { return _cached_size_.Get(); }
  303. private:
  304. void SharedCtor();
  305. void SharedDtor();
  306. void SetCachedSize(int size) const final;
  307. void InternalSwap(Measure_status_msg* other);
  308. private:
  309. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  310. return NULL;
  311. }
  312. inline void* MaybeArenaPtr() const {
  313. return NULL;
  314. }
  315. public:
  316. ::google::protobuf::Metadata GetMetadata() const final;
  317. // nested types ----------------------------------------------------
  318. // accessors -------------------------------------------------------
  319. // repeated .message.Laser_statu laser_statu_vector = 4;
  320. int laser_statu_vector_size() const;
  321. void clear_laser_statu_vector();
  322. static const int kLaserStatuVectorFieldNumber = 4;
  323. ::message::Laser_statu laser_statu_vector(int index) const;
  324. void set_laser_statu_vector(int index, ::message::Laser_statu value);
  325. void add_laser_statu_vector(::message::Laser_statu value);
  326. const ::google::protobuf::RepeatedField<int>& laser_statu_vector() const;
  327. ::google::protobuf::RepeatedField<int>* mutable_laser_statu_vector();
  328. // required .message.Base_info base_info = 1;
  329. bool has_base_info() const;
  330. void clear_base_info();
  331. static const int kBaseInfoFieldNumber = 1;
  332. private:
  333. const ::message::Base_info& _internal_base_info() const;
  334. public:
  335. const ::message::Base_info& base_info() const;
  336. ::message::Base_info* release_base_info();
  337. ::message::Base_info* mutable_base_info();
  338. void set_allocated_base_info(::message::Base_info* base_info);
  339. // required .message.Error_manager error_manager = 6;
  340. bool has_error_manager() const;
  341. void clear_error_manager();
  342. static const int kErrorManagerFieldNumber = 6;
  343. private:
  344. const ::message::Error_manager& _internal_error_manager() const;
  345. public:
  346. const ::message::Error_manager& error_manager() const;
  347. ::message::Error_manager* release_error_manager();
  348. ::message::Error_manager* mutable_error_manager();
  349. void set_allocated_error_manager(::message::Error_manager* error_manager);
  350. // required int32 terminal_id = 2;
  351. bool has_terminal_id() const;
  352. void clear_terminal_id();
  353. static const int kTerminalIdFieldNumber = 2;
  354. ::google::protobuf::int32 terminal_id() const;
  355. void set_terminal_id(::google::protobuf::int32 value);
  356. // required .message.Laser_manager_status laser_manager_status = 3;
  357. bool has_laser_manager_status() const;
  358. void clear_laser_manager_status();
  359. static const int kLaserManagerStatusFieldNumber = 3;
  360. ::message::Laser_manager_status laser_manager_status() const;
  361. void set_laser_manager_status(::message::Laser_manager_status value);
  362. // required .message.Locate_manager_status locate_manager_status = 5;
  363. bool has_locate_manager_status() const;
  364. void clear_locate_manager_status();
  365. static const int kLocateManagerStatusFieldNumber = 5;
  366. ::message::Locate_manager_status locate_manager_status() const;
  367. void set_locate_manager_status(::message::Locate_manager_status value);
  368. // @@protoc_insertion_point(class_scope:message.Measure_status_msg)
  369. private:
  370. void set_has_base_info();
  371. void clear_has_base_info();
  372. void set_has_terminal_id();
  373. void clear_has_terminal_id();
  374. void set_has_laser_manager_status();
  375. void clear_has_laser_manager_status();
  376. void set_has_locate_manager_status();
  377. void clear_has_locate_manager_status();
  378. void set_has_error_manager();
  379. void clear_has_error_manager();
  380. // helper for ByteSizeLong()
  381. size_t RequiredFieldsByteSizeFallback() const;
  382. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  383. ::google::protobuf::internal::HasBits<1> _has_bits_;
  384. mutable ::google::protobuf::internal::CachedSize _cached_size_;
  385. ::google::protobuf::RepeatedField<int> laser_statu_vector_;
  386. ::message::Base_info* base_info_;
  387. ::message::Error_manager* error_manager_;
  388. ::google::protobuf::int32 terminal_id_;
  389. int laser_manager_status_;
  390. int locate_manager_status_;
  391. friend struct ::protobuf_measure_5fmessage_2eproto::TableStruct;
  392. };
  393. // -------------------------------------------------------------------
  394. class Measure_request_msg : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Measure_request_msg) */ {
  395. public:
  396. Measure_request_msg();
  397. virtual ~Measure_request_msg();
  398. Measure_request_msg(const Measure_request_msg& from);
  399. inline Measure_request_msg& operator=(const Measure_request_msg& from) {
  400. CopyFrom(from);
  401. return *this;
  402. }
  403. #if LANG_CXX11
  404. Measure_request_msg(Measure_request_msg&& from) noexcept
  405. : Measure_request_msg() {
  406. *this = ::std::move(from);
  407. }
  408. inline Measure_request_msg& operator=(Measure_request_msg&& from) noexcept {
  409. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  410. if (this != &from) InternalSwap(&from);
  411. } else {
  412. CopyFrom(from);
  413. }
  414. return *this;
  415. }
  416. #endif
  417. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  418. return _internal_metadata_.unknown_fields();
  419. }
  420. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  421. return _internal_metadata_.mutable_unknown_fields();
  422. }
  423. static const ::google::protobuf::Descriptor* descriptor();
  424. static const Measure_request_msg& default_instance();
  425. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  426. static inline const Measure_request_msg* internal_default_instance() {
  427. return reinterpret_cast<const Measure_request_msg*>(
  428. &_Measure_request_msg_default_instance_);
  429. }
  430. static constexpr int kIndexInFileMessages =
  431. 1;
  432. void Swap(Measure_request_msg* other);
  433. friend void swap(Measure_request_msg& a, Measure_request_msg& b) {
  434. a.Swap(&b);
  435. }
  436. // implements Message ----------------------------------------------
  437. inline Measure_request_msg* New() const final {
  438. return CreateMaybeMessage<Measure_request_msg>(NULL);
  439. }
  440. Measure_request_msg* New(::google::protobuf::Arena* arena) const final {
  441. return CreateMaybeMessage<Measure_request_msg>(arena);
  442. }
  443. void CopyFrom(const ::google::protobuf::Message& from) final;
  444. void MergeFrom(const ::google::protobuf::Message& from) final;
  445. void CopyFrom(const Measure_request_msg& from);
  446. void MergeFrom(const Measure_request_msg& from);
  447. void Clear() final;
  448. bool IsInitialized() const final;
  449. size_t ByteSizeLong() const final;
  450. bool MergePartialFromCodedStream(
  451. ::google::protobuf::io::CodedInputStream* input) final;
  452. void SerializeWithCachedSizes(
  453. ::google::protobuf::io::CodedOutputStream* output) const final;
  454. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  455. bool deterministic, ::google::protobuf::uint8* target) const final;
  456. int GetCachedSize() const final { return _cached_size_.Get(); }
  457. private:
  458. void SharedCtor();
  459. void SharedDtor();
  460. void SetCachedSize(int size) const final;
  461. void InternalSwap(Measure_request_msg* other);
  462. private:
  463. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  464. return NULL;
  465. }
  466. inline void* MaybeArenaPtr() const {
  467. return NULL;
  468. }
  469. public:
  470. ::google::protobuf::Metadata GetMetadata() const final;
  471. // nested types ----------------------------------------------------
  472. // accessors -------------------------------------------------------
  473. // required string command_key = 2;
  474. bool has_command_key() const;
  475. void clear_command_key();
  476. static const int kCommandKeyFieldNumber = 2;
  477. const ::std::string& command_key() const;
  478. void set_command_key(const ::std::string& value);
  479. #if LANG_CXX11
  480. void set_command_key(::std::string&& value);
  481. #endif
  482. void set_command_key(const char* value);
  483. void set_command_key(const char* value, size_t size);
  484. ::std::string* mutable_command_key();
  485. ::std::string* release_command_key();
  486. void set_allocated_command_key(::std::string* command_key);
  487. // required .message.Base_info base_info = 1;
  488. bool has_base_info() const;
  489. void clear_base_info();
  490. static const int kBaseInfoFieldNumber = 1;
  491. private:
  492. const ::message::Base_info& _internal_base_info() const;
  493. public:
  494. const ::message::Base_info& base_info() const;
  495. ::message::Base_info* release_base_info();
  496. ::message::Base_info* mutable_base_info();
  497. void set_allocated_base_info(::message::Base_info* base_info);
  498. // required int32 terminal_id = 3;
  499. bool has_terminal_id() const;
  500. void clear_terminal_id();
  501. static const int kTerminalIdFieldNumber = 3;
  502. ::google::protobuf::int32 terminal_id() const;
  503. void set_terminal_id(::google::protobuf::int32 value);
  504. // @@protoc_insertion_point(class_scope:message.Measure_request_msg)
  505. private:
  506. void set_has_base_info();
  507. void clear_has_base_info();
  508. void set_has_command_key();
  509. void clear_has_command_key();
  510. void set_has_terminal_id();
  511. void clear_has_terminal_id();
  512. // helper for ByteSizeLong()
  513. size_t RequiredFieldsByteSizeFallback() const;
  514. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  515. ::google::protobuf::internal::HasBits<1> _has_bits_;
  516. mutable ::google::protobuf::internal::CachedSize _cached_size_;
  517. ::google::protobuf::internal::ArenaStringPtr command_key_;
  518. ::message::Base_info* base_info_;
  519. ::google::protobuf::int32 terminal_id_;
  520. friend struct ::protobuf_measure_5fmessage_2eproto::TableStruct;
  521. };
  522. // -------------------------------------------------------------------
  523. class Measure_response_msg : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Measure_response_msg) */ {
  524. public:
  525. Measure_response_msg();
  526. virtual ~Measure_response_msg();
  527. Measure_response_msg(const Measure_response_msg& from);
  528. inline Measure_response_msg& operator=(const Measure_response_msg& from) {
  529. CopyFrom(from);
  530. return *this;
  531. }
  532. #if LANG_CXX11
  533. Measure_response_msg(Measure_response_msg&& from) noexcept
  534. : Measure_response_msg() {
  535. *this = ::std::move(from);
  536. }
  537. inline Measure_response_msg& operator=(Measure_response_msg&& from) noexcept {
  538. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  539. if (this != &from) InternalSwap(&from);
  540. } else {
  541. CopyFrom(from);
  542. }
  543. return *this;
  544. }
  545. #endif
  546. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  547. return _internal_metadata_.unknown_fields();
  548. }
  549. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  550. return _internal_metadata_.mutable_unknown_fields();
  551. }
  552. static const ::google::protobuf::Descriptor* descriptor();
  553. static const Measure_response_msg& default_instance();
  554. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  555. static inline const Measure_response_msg* internal_default_instance() {
  556. return reinterpret_cast<const Measure_response_msg*>(
  557. &_Measure_response_msg_default_instance_);
  558. }
  559. static constexpr int kIndexInFileMessages =
  560. 2;
  561. void Swap(Measure_response_msg* other);
  562. friend void swap(Measure_response_msg& a, Measure_response_msg& b) {
  563. a.Swap(&b);
  564. }
  565. // implements Message ----------------------------------------------
  566. inline Measure_response_msg* New() const final {
  567. return CreateMaybeMessage<Measure_response_msg>(NULL);
  568. }
  569. Measure_response_msg* New(::google::protobuf::Arena* arena) const final {
  570. return CreateMaybeMessage<Measure_response_msg>(arena);
  571. }
  572. void CopyFrom(const ::google::protobuf::Message& from) final;
  573. void MergeFrom(const ::google::protobuf::Message& from) final;
  574. void CopyFrom(const Measure_response_msg& from);
  575. void MergeFrom(const Measure_response_msg& from);
  576. void Clear() final;
  577. bool IsInitialized() const final;
  578. size_t ByteSizeLong() const final;
  579. bool MergePartialFromCodedStream(
  580. ::google::protobuf::io::CodedInputStream* input) final;
  581. void SerializeWithCachedSizes(
  582. ::google::protobuf::io::CodedOutputStream* output) const final;
  583. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  584. bool deterministic, ::google::protobuf::uint8* target) const final;
  585. int GetCachedSize() const final { return _cached_size_.Get(); }
  586. private:
  587. void SharedCtor();
  588. void SharedDtor();
  589. void SetCachedSize(int size) const final;
  590. void InternalSwap(Measure_response_msg* other);
  591. private:
  592. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  593. return NULL;
  594. }
  595. inline void* MaybeArenaPtr() const {
  596. return NULL;
  597. }
  598. public:
  599. ::google::protobuf::Metadata GetMetadata() const final;
  600. // nested types ----------------------------------------------------
  601. // accessors -------------------------------------------------------
  602. // required string command_key = 2;
  603. bool has_command_key() const;
  604. void clear_command_key();
  605. static const int kCommandKeyFieldNumber = 2;
  606. const ::std::string& command_key() const;
  607. void set_command_key(const ::std::string& value);
  608. #if LANG_CXX11
  609. void set_command_key(::std::string&& value);
  610. #endif
  611. void set_command_key(const char* value);
  612. void set_command_key(const char* value, size_t size);
  613. ::std::string* mutable_command_key();
  614. ::std::string* release_command_key();
  615. void set_allocated_command_key(::std::string* command_key);
  616. // required .message.Base_info base_info = 1;
  617. bool has_base_info() const;
  618. void clear_base_info();
  619. static const int kBaseInfoFieldNumber = 1;
  620. private:
  621. const ::message::Base_info& _internal_base_info() const;
  622. public:
  623. const ::message::Base_info& base_info() const;
  624. ::message::Base_info* release_base_info();
  625. ::message::Base_info* mutable_base_info();
  626. void set_allocated_base_info(::message::Base_info* base_info);
  627. // optional .message.Locate_information locate_information = 4;
  628. bool has_locate_information() const;
  629. void clear_locate_information();
  630. static const int kLocateInformationFieldNumber = 4;
  631. private:
  632. const ::message::Locate_information& _internal_locate_information() const;
  633. public:
  634. const ::message::Locate_information& locate_information() const;
  635. ::message::Locate_information* release_locate_information();
  636. ::message::Locate_information* mutable_locate_information();
  637. void set_allocated_locate_information(::message::Locate_information* locate_information);
  638. // required .message.Error_manager error_manager = 5;
  639. bool has_error_manager() const;
  640. void clear_error_manager();
  641. static const int kErrorManagerFieldNumber = 5;
  642. private:
  643. const ::message::Error_manager& _internal_error_manager() const;
  644. public:
  645. const ::message::Error_manager& error_manager() const;
  646. ::message::Error_manager* release_error_manager();
  647. ::message::Error_manager* mutable_error_manager();
  648. void set_allocated_error_manager(::message::Error_manager* error_manager);
  649. // required int32 terminal_id = 3;
  650. bool has_terminal_id() const;
  651. void clear_terminal_id();
  652. static const int kTerminalIdFieldNumber = 3;
  653. ::google::protobuf::int32 terminal_id() const;
  654. void set_terminal_id(::google::protobuf::int32 value);
  655. // @@protoc_insertion_point(class_scope:message.Measure_response_msg)
  656. private:
  657. void set_has_base_info();
  658. void clear_has_base_info();
  659. void set_has_command_key();
  660. void clear_has_command_key();
  661. void set_has_terminal_id();
  662. void clear_has_terminal_id();
  663. void set_has_locate_information();
  664. void clear_has_locate_information();
  665. void set_has_error_manager();
  666. void clear_has_error_manager();
  667. // helper for ByteSizeLong()
  668. size_t RequiredFieldsByteSizeFallback() const;
  669. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  670. ::google::protobuf::internal::HasBits<1> _has_bits_;
  671. mutable ::google::protobuf::internal::CachedSize _cached_size_;
  672. ::google::protobuf::internal::ArenaStringPtr command_key_;
  673. ::message::Base_info* base_info_;
  674. ::message::Locate_information* locate_information_;
  675. ::message::Error_manager* error_manager_;
  676. ::google::protobuf::int32 terminal_id_;
  677. friend struct ::protobuf_measure_5fmessage_2eproto::TableStruct;
  678. };
  679. // -------------------------------------------------------------------
  680. class Ground_detect_request_msg : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Ground_detect_request_msg) */ {
  681. public:
  682. Ground_detect_request_msg();
  683. virtual ~Ground_detect_request_msg();
  684. Ground_detect_request_msg(const Ground_detect_request_msg& from);
  685. inline Ground_detect_request_msg& operator=(const Ground_detect_request_msg& from) {
  686. CopyFrom(from);
  687. return *this;
  688. }
  689. #if LANG_CXX11
  690. Ground_detect_request_msg(Ground_detect_request_msg&& from) noexcept
  691. : Ground_detect_request_msg() {
  692. *this = ::std::move(from);
  693. }
  694. inline Ground_detect_request_msg& operator=(Ground_detect_request_msg&& from) noexcept {
  695. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  696. if (this != &from) InternalSwap(&from);
  697. } else {
  698. CopyFrom(from);
  699. }
  700. return *this;
  701. }
  702. #endif
  703. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  704. return _internal_metadata_.unknown_fields();
  705. }
  706. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  707. return _internal_metadata_.mutable_unknown_fields();
  708. }
  709. static const ::google::protobuf::Descriptor* descriptor();
  710. static const Ground_detect_request_msg& default_instance();
  711. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  712. static inline const Ground_detect_request_msg* internal_default_instance() {
  713. return reinterpret_cast<const Ground_detect_request_msg*>(
  714. &_Ground_detect_request_msg_default_instance_);
  715. }
  716. static constexpr int kIndexInFileMessages =
  717. 3;
  718. void Swap(Ground_detect_request_msg* other);
  719. friend void swap(Ground_detect_request_msg& a, Ground_detect_request_msg& b) {
  720. a.Swap(&b);
  721. }
  722. // implements Message ----------------------------------------------
  723. inline Ground_detect_request_msg* New() const final {
  724. return CreateMaybeMessage<Ground_detect_request_msg>(NULL);
  725. }
  726. Ground_detect_request_msg* New(::google::protobuf::Arena* arena) const final {
  727. return CreateMaybeMessage<Ground_detect_request_msg>(arena);
  728. }
  729. void CopyFrom(const ::google::protobuf::Message& from) final;
  730. void MergeFrom(const ::google::protobuf::Message& from) final;
  731. void CopyFrom(const Ground_detect_request_msg& from);
  732. void MergeFrom(const Ground_detect_request_msg& from);
  733. void Clear() final;
  734. bool IsInitialized() const final;
  735. size_t ByteSizeLong() const final;
  736. bool MergePartialFromCodedStream(
  737. ::google::protobuf::io::CodedInputStream* input) final;
  738. void SerializeWithCachedSizes(
  739. ::google::protobuf::io::CodedOutputStream* output) const final;
  740. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  741. bool deterministic, ::google::protobuf::uint8* target) const final;
  742. int GetCachedSize() const final { return _cached_size_.Get(); }
  743. private:
  744. void SharedCtor();
  745. void SharedDtor();
  746. void SetCachedSize(int size) const final;
  747. void InternalSwap(Ground_detect_request_msg* other);
  748. private:
  749. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  750. return NULL;
  751. }
  752. inline void* MaybeArenaPtr() const {
  753. return NULL;
  754. }
  755. public:
  756. ::google::protobuf::Metadata GetMetadata() const final;
  757. // nested types ----------------------------------------------------
  758. // accessors -------------------------------------------------------
  759. // required string command_key = 2;
  760. bool has_command_key() const;
  761. void clear_command_key();
  762. static const int kCommandKeyFieldNumber = 2;
  763. const ::std::string& command_key() const;
  764. void set_command_key(const ::std::string& value);
  765. #if LANG_CXX11
  766. void set_command_key(::std::string&& value);
  767. #endif
  768. void set_command_key(const char* value);
  769. void set_command_key(const char* value, size_t size);
  770. ::std::string* mutable_command_key();
  771. ::std::string* release_command_key();
  772. void set_allocated_command_key(::std::string* command_key);
  773. // required .message.Base_info base_info = 1;
  774. bool has_base_info() const;
  775. void clear_base_info();
  776. static const int kBaseInfoFieldNumber = 1;
  777. private:
  778. const ::message::Base_info& _internal_base_info() const;
  779. public:
  780. const ::message::Base_info& base_info() const;
  781. ::message::Base_info* release_base_info();
  782. ::message::Base_info* mutable_base_info();
  783. void set_allocated_base_info(::message::Base_info* base_info);
  784. // required int32 terminal_id = 3;
  785. bool has_terminal_id() const;
  786. void clear_terminal_id();
  787. static const int kTerminalIdFieldNumber = 3;
  788. ::google::protobuf::int32 terminal_id() const;
  789. void set_terminal_id(::google::protobuf::int32 value);
  790. // @@protoc_insertion_point(class_scope:message.Ground_detect_request_msg)
  791. private:
  792. void set_has_base_info();
  793. void clear_has_base_info();
  794. void set_has_command_key();
  795. void clear_has_command_key();
  796. void set_has_terminal_id();
  797. void clear_has_terminal_id();
  798. // helper for ByteSizeLong()
  799. size_t RequiredFieldsByteSizeFallback() const;
  800. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  801. ::google::protobuf::internal::HasBits<1> _has_bits_;
  802. mutable ::google::protobuf::internal::CachedSize _cached_size_;
  803. ::google::protobuf::internal::ArenaStringPtr command_key_;
  804. ::message::Base_info* base_info_;
  805. ::google::protobuf::int32 terminal_id_;
  806. friend struct ::protobuf_measure_5fmessage_2eproto::TableStruct;
  807. };
  808. // -------------------------------------------------------------------
  809. class Ground_detect_response_msg : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Ground_detect_response_msg) */ {
  810. public:
  811. Ground_detect_response_msg();
  812. virtual ~Ground_detect_response_msg();
  813. Ground_detect_response_msg(const Ground_detect_response_msg& from);
  814. inline Ground_detect_response_msg& operator=(const Ground_detect_response_msg& from) {
  815. CopyFrom(from);
  816. return *this;
  817. }
  818. #if LANG_CXX11
  819. Ground_detect_response_msg(Ground_detect_response_msg&& from) noexcept
  820. : Ground_detect_response_msg() {
  821. *this = ::std::move(from);
  822. }
  823. inline Ground_detect_response_msg& operator=(Ground_detect_response_msg&& from) noexcept {
  824. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  825. if (this != &from) InternalSwap(&from);
  826. } else {
  827. CopyFrom(from);
  828. }
  829. return *this;
  830. }
  831. #endif
  832. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  833. return _internal_metadata_.unknown_fields();
  834. }
  835. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  836. return _internal_metadata_.mutable_unknown_fields();
  837. }
  838. static const ::google::protobuf::Descriptor* descriptor();
  839. static const Ground_detect_response_msg& default_instance();
  840. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  841. static inline const Ground_detect_response_msg* internal_default_instance() {
  842. return reinterpret_cast<const Ground_detect_response_msg*>(
  843. &_Ground_detect_response_msg_default_instance_);
  844. }
  845. static constexpr int kIndexInFileMessages =
  846. 4;
  847. void Swap(Ground_detect_response_msg* other);
  848. friend void swap(Ground_detect_response_msg& a, Ground_detect_response_msg& b) {
  849. a.Swap(&b);
  850. }
  851. // implements Message ----------------------------------------------
  852. inline Ground_detect_response_msg* New() const final {
  853. return CreateMaybeMessage<Ground_detect_response_msg>(NULL);
  854. }
  855. Ground_detect_response_msg* New(::google::protobuf::Arena* arena) const final {
  856. return CreateMaybeMessage<Ground_detect_response_msg>(arena);
  857. }
  858. void CopyFrom(const ::google::protobuf::Message& from) final;
  859. void MergeFrom(const ::google::protobuf::Message& from) final;
  860. void CopyFrom(const Ground_detect_response_msg& from);
  861. void MergeFrom(const Ground_detect_response_msg& from);
  862. void Clear() final;
  863. bool IsInitialized() const final;
  864. size_t ByteSizeLong() const final;
  865. bool MergePartialFromCodedStream(
  866. ::google::protobuf::io::CodedInputStream* input) final;
  867. void SerializeWithCachedSizes(
  868. ::google::protobuf::io::CodedOutputStream* output) const final;
  869. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  870. bool deterministic, ::google::protobuf::uint8* target) const final;
  871. int GetCachedSize() const final { return _cached_size_.Get(); }
  872. private:
  873. void SharedCtor();
  874. void SharedDtor();
  875. void SetCachedSize(int size) const final;
  876. void InternalSwap(Ground_detect_response_msg* other);
  877. private:
  878. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  879. return NULL;
  880. }
  881. inline void* MaybeArenaPtr() const {
  882. return NULL;
  883. }
  884. public:
  885. ::google::protobuf::Metadata GetMetadata() const final;
  886. // nested types ----------------------------------------------------
  887. // accessors -------------------------------------------------------
  888. // required string command_key = 2;
  889. bool has_command_key() const;
  890. void clear_command_key();
  891. static const int kCommandKeyFieldNumber = 2;
  892. const ::std::string& command_key() const;
  893. void set_command_key(const ::std::string& value);
  894. #if LANG_CXX11
  895. void set_command_key(::std::string&& value);
  896. #endif
  897. void set_command_key(const char* value);
  898. void set_command_key(const char* value, size_t size);
  899. ::std::string* mutable_command_key();
  900. ::std::string* release_command_key();
  901. void set_allocated_command_key(::std::string* command_key);
  902. // required .message.Base_info base_info = 1;
  903. bool has_base_info() const;
  904. void clear_base_info();
  905. static const int kBaseInfoFieldNumber = 1;
  906. private:
  907. const ::message::Base_info& _internal_base_info() const;
  908. public:
  909. const ::message::Base_info& base_info() const;
  910. ::message::Base_info* release_base_info();
  911. ::message::Base_info* mutable_base_info();
  912. void set_allocated_base_info(::message::Base_info* base_info);
  913. // optional .message.Locate_information locate_information = 4;
  914. bool has_locate_information() const;
  915. void clear_locate_information();
  916. static const int kLocateInformationFieldNumber = 4;
  917. private:
  918. const ::message::Locate_information& _internal_locate_information() const;
  919. public:
  920. const ::message::Locate_information& locate_information() const;
  921. ::message::Locate_information* release_locate_information();
  922. ::message::Locate_information* mutable_locate_information();
  923. void set_allocated_locate_information(::message::Locate_information* locate_information);
  924. // required .message.Error_manager error_manager = 5;
  925. bool has_error_manager() const;
  926. void clear_error_manager();
  927. static const int kErrorManagerFieldNumber = 5;
  928. private:
  929. const ::message::Error_manager& _internal_error_manager() const;
  930. public:
  931. const ::message::Error_manager& error_manager() const;
  932. ::message::Error_manager* release_error_manager();
  933. ::message::Error_manager* mutable_error_manager();
  934. void set_allocated_error_manager(::message::Error_manager* error_manager);
  935. // required int32 terminal_id = 3;
  936. bool has_terminal_id() const;
  937. void clear_terminal_id();
  938. static const int kTerminalIdFieldNumber = 3;
  939. ::google::protobuf::int32 terminal_id() const;
  940. void set_terminal_id(::google::protobuf::int32 value);
  941. // @@protoc_insertion_point(class_scope:message.Ground_detect_response_msg)
  942. private:
  943. void set_has_base_info();
  944. void clear_has_base_info();
  945. void set_has_command_key();
  946. void clear_has_command_key();
  947. void set_has_terminal_id();
  948. void clear_has_terminal_id();
  949. void set_has_locate_information();
  950. void clear_has_locate_information();
  951. void set_has_error_manager();
  952. void clear_has_error_manager();
  953. // helper for ByteSizeLong()
  954. size_t RequiredFieldsByteSizeFallback() const;
  955. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  956. ::google::protobuf::internal::HasBits<1> _has_bits_;
  957. mutable ::google::protobuf::internal::CachedSize _cached_size_;
  958. ::google::protobuf::internal::ArenaStringPtr command_key_;
  959. ::message::Base_info* base_info_;
  960. ::message::Locate_information* locate_information_;
  961. ::message::Error_manager* error_manager_;
  962. ::google::protobuf::int32 terminal_id_;
  963. friend struct ::protobuf_measure_5fmessage_2eproto::TableStruct;
  964. };
  965. // -------------------------------------------------------------------
  966. class Ground_status_msg : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Ground_status_msg) */ {
  967. public:
  968. Ground_status_msg();
  969. virtual ~Ground_status_msg();
  970. Ground_status_msg(const Ground_status_msg& from);
  971. inline Ground_status_msg& operator=(const Ground_status_msg& from) {
  972. CopyFrom(from);
  973. return *this;
  974. }
  975. #if LANG_CXX11
  976. Ground_status_msg(Ground_status_msg&& from) noexcept
  977. : Ground_status_msg() {
  978. *this = ::std::move(from);
  979. }
  980. inline Ground_status_msg& operator=(Ground_status_msg&& from) noexcept {
  981. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  982. if (this != &from) InternalSwap(&from);
  983. } else {
  984. CopyFrom(from);
  985. }
  986. return *this;
  987. }
  988. #endif
  989. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  990. return _internal_metadata_.unknown_fields();
  991. }
  992. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  993. return _internal_metadata_.mutable_unknown_fields();
  994. }
  995. static const ::google::protobuf::Descriptor* descriptor();
  996. static const Ground_status_msg& default_instance();
  997. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  998. static inline const Ground_status_msg* internal_default_instance() {
  999. return reinterpret_cast<const Ground_status_msg*>(
  1000. &_Ground_status_msg_default_instance_);
  1001. }
  1002. static constexpr int kIndexInFileMessages =
  1003. 5;
  1004. void Swap(Ground_status_msg* other);
  1005. friend void swap(Ground_status_msg& a, Ground_status_msg& b) {
  1006. a.Swap(&b);
  1007. }
  1008. // implements Message ----------------------------------------------
  1009. inline Ground_status_msg* New() const final {
  1010. return CreateMaybeMessage<Ground_status_msg>(NULL);
  1011. }
  1012. Ground_status_msg* New(::google::protobuf::Arena* arena) const final {
  1013. return CreateMaybeMessage<Ground_status_msg>(arena);
  1014. }
  1015. void CopyFrom(const ::google::protobuf::Message& from) final;
  1016. void MergeFrom(const ::google::protobuf::Message& from) final;
  1017. void CopyFrom(const Ground_status_msg& from);
  1018. void MergeFrom(const Ground_status_msg& from);
  1019. void Clear() final;
  1020. bool IsInitialized() const final;
  1021. size_t ByteSizeLong() const final;
  1022. bool MergePartialFromCodedStream(
  1023. ::google::protobuf::io::CodedInputStream* input) final;
  1024. void SerializeWithCachedSizes(
  1025. ::google::protobuf::io::CodedOutputStream* output) const final;
  1026. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  1027. bool deterministic, ::google::protobuf::uint8* target) const final;
  1028. int GetCachedSize() const final { return _cached_size_.Get(); }
  1029. private:
  1030. void SharedCtor();
  1031. void SharedDtor();
  1032. void SetCachedSize(int size) const final;
  1033. void InternalSwap(Ground_status_msg* other);
  1034. private:
  1035. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  1036. return NULL;
  1037. }
  1038. inline void* MaybeArenaPtr() const {
  1039. return NULL;
  1040. }
  1041. public:
  1042. ::google::protobuf::Metadata GetMetadata() const final;
  1043. // nested types ----------------------------------------------------
  1044. // accessors -------------------------------------------------------
  1045. // repeated .message.Wanji_lidar_device_status wanji_lidar_device_status = 4;
  1046. int wanji_lidar_device_status_size() const;
  1047. void clear_wanji_lidar_device_status();
  1048. static const int kWanjiLidarDeviceStatusFieldNumber = 4;
  1049. ::message::Wanji_lidar_device_status wanji_lidar_device_status(int index) const;
  1050. void set_wanji_lidar_device_status(int index, ::message::Wanji_lidar_device_status value);
  1051. void add_wanji_lidar_device_status(::message::Wanji_lidar_device_status value);
  1052. const ::google::protobuf::RepeatedField<int>& wanji_lidar_device_status() const;
  1053. ::google::protobuf::RepeatedField<int>* mutable_wanji_lidar_device_status();
  1054. // repeated .message.Cloud_coordinate cloud = 10;
  1055. int cloud_size() const;
  1056. void clear_cloud();
  1057. static const int kCloudFieldNumber = 10;
  1058. ::message::Cloud_coordinate* mutable_cloud(int index);
  1059. ::google::protobuf::RepeatedPtrField< ::message::Cloud_coordinate >*
  1060. mutable_cloud();
  1061. const ::message::Cloud_coordinate& cloud(int index) const;
  1062. ::message::Cloud_coordinate* add_cloud();
  1063. const ::google::protobuf::RepeatedPtrField< ::message::Cloud_coordinate >&
  1064. cloud() const;
  1065. // required .message.Base_info base_info = 1;
  1066. bool has_base_info() const;
  1067. void clear_base_info();
  1068. static const int kBaseInfoFieldNumber = 1;
  1069. private:
  1070. const ::message::Base_info& _internal_base_info() const;
  1071. public:
  1072. const ::message::Base_info& base_info() const;
  1073. ::message::Base_info* release_base_info();
  1074. ::message::Base_info* mutable_base_info();
  1075. void set_allocated_base_info(::message::Base_info* base_info);
  1076. // required .message.Locate_information locate_information_realtime = 6;
  1077. bool has_locate_information_realtime() const;
  1078. void clear_locate_information_realtime();
  1079. static const int kLocateInformationRealtimeFieldNumber = 6;
  1080. private:
  1081. const ::message::Locate_information& _internal_locate_information_realtime() const;
  1082. public:
  1083. const ::message::Locate_information& locate_information_realtime() const;
  1084. ::message::Locate_information* release_locate_information_realtime();
  1085. ::message::Locate_information* mutable_locate_information_realtime();
  1086. void set_allocated_locate_information_realtime(::message::Locate_information* locate_information_realtime);
  1087. // required .message.Error_manager error_manager = 9;
  1088. bool has_error_manager() const;
  1089. void clear_error_manager();
  1090. static const int kErrorManagerFieldNumber = 9;
  1091. private:
  1092. const ::message::Error_manager& _internal_error_manager() const;
  1093. public:
  1094. const ::message::Error_manager& error_manager() const;
  1095. ::message::Error_manager* release_error_manager();
  1096. ::message::Error_manager* mutable_error_manager();
  1097. void set_allocated_error_manager(::message::Error_manager* error_manager);
  1098. // required int32 terminal_id = 2;
  1099. bool has_terminal_id() const;
  1100. void clear_terminal_id();
  1101. static const int kTerminalIdFieldNumber = 2;
  1102. ::google::protobuf::int32 terminal_id() const;
  1103. void set_terminal_id(::google::protobuf::int32 value);
  1104. // required .message.Wanji_manager_status wanji_manager_status = 3;
  1105. bool has_wanji_manager_status() const;
  1106. void clear_wanji_manager_status();
  1107. static const int kWanjiManagerStatusFieldNumber = 3;
  1108. ::message::Wanji_manager_status wanji_manager_status() const;
  1109. void set_wanji_manager_status(::message::Wanji_manager_status value);
  1110. // required .message.Region_worker_status region_worker_status = 5;
  1111. bool has_region_worker_status() const;
  1112. void clear_region_worker_status();
  1113. static const int kRegionWorkerStatusFieldNumber = 5;
  1114. ::message::Region_worker_status region_worker_status() const;
  1115. void set_region_worker_status(::message::Region_worker_status value);
  1116. // required .message.Ground_statu ground_status = 7;
  1117. bool has_ground_status() const;
  1118. void clear_ground_status();
  1119. static const int kGroundStatusFieldNumber = 7;
  1120. ::message::Ground_statu ground_status() const;
  1121. void set_ground_status(::message::Ground_statu value);
  1122. // required int32 border_status = 8;
  1123. bool has_border_status() const;
  1124. void clear_border_status();
  1125. static const int kBorderStatusFieldNumber = 8;
  1126. ::google::protobuf::int32 border_status() const;
  1127. void set_border_status(::google::protobuf::int32 value);
  1128. // @@protoc_insertion_point(class_scope:message.Ground_status_msg)
  1129. private:
  1130. void set_has_base_info();
  1131. void clear_has_base_info();
  1132. void set_has_terminal_id();
  1133. void clear_has_terminal_id();
  1134. void set_has_wanji_manager_status();
  1135. void clear_has_wanji_manager_status();
  1136. void set_has_region_worker_status();
  1137. void clear_has_region_worker_status();
  1138. void set_has_locate_information_realtime();
  1139. void clear_has_locate_information_realtime();
  1140. void set_has_ground_status();
  1141. void clear_has_ground_status();
  1142. void set_has_border_status();
  1143. void clear_has_border_status();
  1144. void set_has_error_manager();
  1145. void clear_has_error_manager();
  1146. // helper for ByteSizeLong()
  1147. size_t RequiredFieldsByteSizeFallback() const;
  1148. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  1149. ::google::protobuf::internal::HasBits<1> _has_bits_;
  1150. mutable ::google::protobuf::internal::CachedSize _cached_size_;
  1151. ::google::protobuf::RepeatedField<int> wanji_lidar_device_status_;
  1152. ::google::protobuf::RepeatedPtrField< ::message::Cloud_coordinate > cloud_;
  1153. ::message::Base_info* base_info_;
  1154. ::message::Locate_information* locate_information_realtime_;
  1155. ::message::Error_manager* error_manager_;
  1156. ::google::protobuf::int32 terminal_id_;
  1157. int wanji_manager_status_;
  1158. int region_worker_status_;
  1159. int ground_status_;
  1160. ::google::protobuf::int32 border_status_;
  1161. friend struct ::protobuf_measure_5fmessage_2eproto::TableStruct;
  1162. };
  1163. // -------------------------------------------------------------------
  1164. class Cloud_coordinate : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Cloud_coordinate) */ {
  1165. public:
  1166. Cloud_coordinate();
  1167. virtual ~Cloud_coordinate();
  1168. Cloud_coordinate(const Cloud_coordinate& from);
  1169. inline Cloud_coordinate& operator=(const Cloud_coordinate& from) {
  1170. CopyFrom(from);
  1171. return *this;
  1172. }
  1173. #if LANG_CXX11
  1174. Cloud_coordinate(Cloud_coordinate&& from) noexcept
  1175. : Cloud_coordinate() {
  1176. *this = ::std::move(from);
  1177. }
  1178. inline Cloud_coordinate& operator=(Cloud_coordinate&& from) noexcept {
  1179. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  1180. if (this != &from) InternalSwap(&from);
  1181. } else {
  1182. CopyFrom(from);
  1183. }
  1184. return *this;
  1185. }
  1186. #endif
  1187. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  1188. return _internal_metadata_.unknown_fields();
  1189. }
  1190. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  1191. return _internal_metadata_.mutable_unknown_fields();
  1192. }
  1193. static const ::google::protobuf::Descriptor* descriptor();
  1194. static const Cloud_coordinate& default_instance();
  1195. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  1196. static inline const Cloud_coordinate* internal_default_instance() {
  1197. return reinterpret_cast<const Cloud_coordinate*>(
  1198. &_Cloud_coordinate_default_instance_);
  1199. }
  1200. static constexpr int kIndexInFileMessages =
  1201. 6;
  1202. void Swap(Cloud_coordinate* other);
  1203. friend void swap(Cloud_coordinate& a, Cloud_coordinate& b) {
  1204. a.Swap(&b);
  1205. }
  1206. // implements Message ----------------------------------------------
  1207. inline Cloud_coordinate* New() const final {
  1208. return CreateMaybeMessage<Cloud_coordinate>(NULL);
  1209. }
  1210. Cloud_coordinate* New(::google::protobuf::Arena* arena) const final {
  1211. return CreateMaybeMessage<Cloud_coordinate>(arena);
  1212. }
  1213. void CopyFrom(const ::google::protobuf::Message& from) final;
  1214. void MergeFrom(const ::google::protobuf::Message& from) final;
  1215. void CopyFrom(const Cloud_coordinate& from);
  1216. void MergeFrom(const Cloud_coordinate& from);
  1217. void Clear() final;
  1218. bool IsInitialized() const final;
  1219. size_t ByteSizeLong() const final;
  1220. bool MergePartialFromCodedStream(
  1221. ::google::protobuf::io::CodedInputStream* input) final;
  1222. void SerializeWithCachedSizes(
  1223. ::google::protobuf::io::CodedOutputStream* output) const final;
  1224. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  1225. bool deterministic, ::google::protobuf::uint8* target) const final;
  1226. int GetCachedSize() const final { return _cached_size_.Get(); }
  1227. private:
  1228. void SharedCtor();
  1229. void SharedDtor();
  1230. void SetCachedSize(int size) const final;
  1231. void InternalSwap(Cloud_coordinate* other);
  1232. private:
  1233. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  1234. return NULL;
  1235. }
  1236. inline void* MaybeArenaPtr() const {
  1237. return NULL;
  1238. }
  1239. public:
  1240. ::google::protobuf::Metadata GetMetadata() const final;
  1241. // nested types ----------------------------------------------------
  1242. // accessors -------------------------------------------------------
  1243. // required float x = 1;
  1244. bool has_x() const;
  1245. void clear_x();
  1246. static const int kXFieldNumber = 1;
  1247. float x() const;
  1248. void set_x(float value);
  1249. // required float y = 2;
  1250. bool has_y() const;
  1251. void clear_y();
  1252. static const int kYFieldNumber = 2;
  1253. float y() const;
  1254. void set_y(float value);
  1255. // required float z = 3;
  1256. bool has_z() const;
  1257. void clear_z();
  1258. static const int kZFieldNumber = 3;
  1259. float z() const;
  1260. void set_z(float value);
  1261. // @@protoc_insertion_point(class_scope:message.Cloud_coordinate)
  1262. private:
  1263. void set_has_x();
  1264. void clear_has_x();
  1265. void set_has_y();
  1266. void clear_has_y();
  1267. void set_has_z();
  1268. void clear_has_z();
  1269. // helper for ByteSizeLong()
  1270. size_t RequiredFieldsByteSizeFallback() const;
  1271. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  1272. ::google::protobuf::internal::HasBits<1> _has_bits_;
  1273. mutable ::google::protobuf::internal::CachedSize _cached_size_;
  1274. float x_;
  1275. float y_;
  1276. float z_;
  1277. friend struct ::protobuf_measure_5fmessage_2eproto::TableStruct;
  1278. };
  1279. // -------------------------------------------------------------------
  1280. class Cloud_type : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Cloud_type) */ {
  1281. public:
  1282. Cloud_type();
  1283. virtual ~Cloud_type();
  1284. Cloud_type(const Cloud_type& from);
  1285. inline Cloud_type& operator=(const Cloud_type& from) {
  1286. CopyFrom(from);
  1287. return *this;
  1288. }
  1289. #if LANG_CXX11
  1290. Cloud_type(Cloud_type&& from) noexcept
  1291. : Cloud_type() {
  1292. *this = ::std::move(from);
  1293. }
  1294. inline Cloud_type& operator=(Cloud_type&& from) noexcept {
  1295. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  1296. if (this != &from) InternalSwap(&from);
  1297. } else {
  1298. CopyFrom(from);
  1299. }
  1300. return *this;
  1301. }
  1302. #endif
  1303. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  1304. return _internal_metadata_.unknown_fields();
  1305. }
  1306. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  1307. return _internal_metadata_.mutable_unknown_fields();
  1308. }
  1309. static const ::google::protobuf::Descriptor* descriptor();
  1310. static const Cloud_type& default_instance();
  1311. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  1312. static inline const Cloud_type* internal_default_instance() {
  1313. return reinterpret_cast<const Cloud_type*>(
  1314. &_Cloud_type_default_instance_);
  1315. }
  1316. static constexpr int kIndexInFileMessages =
  1317. 7;
  1318. void Swap(Cloud_type* other);
  1319. friend void swap(Cloud_type& a, Cloud_type& b) {
  1320. a.Swap(&b);
  1321. }
  1322. // implements Message ----------------------------------------------
  1323. inline Cloud_type* New() const final {
  1324. return CreateMaybeMessage<Cloud_type>(NULL);
  1325. }
  1326. Cloud_type* New(::google::protobuf::Arena* arena) const final {
  1327. return CreateMaybeMessage<Cloud_type>(arena);
  1328. }
  1329. void CopyFrom(const ::google::protobuf::Message& from) final;
  1330. void MergeFrom(const ::google::protobuf::Message& from) final;
  1331. void CopyFrom(const Cloud_type& from);
  1332. void MergeFrom(const Cloud_type& from);
  1333. void Clear() final;
  1334. bool IsInitialized() const final;
  1335. size_t ByteSizeLong() const final;
  1336. bool MergePartialFromCodedStream(
  1337. ::google::protobuf::io::CodedInputStream* input) final;
  1338. void SerializeWithCachedSizes(
  1339. ::google::protobuf::io::CodedOutputStream* output) const final;
  1340. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  1341. bool deterministic, ::google::protobuf::uint8* target) const final;
  1342. int GetCachedSize() const final { return _cached_size_.Get(); }
  1343. private:
  1344. void SharedCtor();
  1345. void SharedDtor();
  1346. void SetCachedSize(int size) const final;
  1347. void InternalSwap(Cloud_type* other);
  1348. private:
  1349. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  1350. return NULL;
  1351. }
  1352. inline void* MaybeArenaPtr() const {
  1353. return NULL;
  1354. }
  1355. public:
  1356. ::google::protobuf::Metadata GetMetadata() const final;
  1357. // nested types ----------------------------------------------------
  1358. // accessors -------------------------------------------------------
  1359. // required int32 type = 1;
  1360. bool has_type() const;
  1361. void clear_type();
  1362. static const int kTypeFieldNumber = 1;
  1363. ::google::protobuf::int32 type() const;
  1364. void set_type(::google::protobuf::int32 value);
  1365. // @@protoc_insertion_point(class_scope:message.Cloud_type)
  1366. private:
  1367. void set_has_type();
  1368. void clear_has_type();
  1369. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  1370. ::google::protobuf::internal::HasBits<1> _has_bits_;
  1371. mutable ::google::protobuf::internal::CachedSize _cached_size_;
  1372. ::google::protobuf::int32 type_;
  1373. friend struct ::protobuf_measure_5fmessage_2eproto::TableStruct;
  1374. };
  1375. // -------------------------------------------------------------------
  1376. class Locate_sift_request_msg : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Locate_sift_request_msg) */ {
  1377. public:
  1378. Locate_sift_request_msg();
  1379. virtual ~Locate_sift_request_msg();
  1380. Locate_sift_request_msg(const Locate_sift_request_msg& from);
  1381. inline Locate_sift_request_msg& operator=(const Locate_sift_request_msg& from) {
  1382. CopyFrom(from);
  1383. return *this;
  1384. }
  1385. #if LANG_CXX11
  1386. Locate_sift_request_msg(Locate_sift_request_msg&& from) noexcept
  1387. : Locate_sift_request_msg() {
  1388. *this = ::std::move(from);
  1389. }
  1390. inline Locate_sift_request_msg& operator=(Locate_sift_request_msg&& from) noexcept {
  1391. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  1392. if (this != &from) InternalSwap(&from);
  1393. } else {
  1394. CopyFrom(from);
  1395. }
  1396. return *this;
  1397. }
  1398. #endif
  1399. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  1400. return _internal_metadata_.unknown_fields();
  1401. }
  1402. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  1403. return _internal_metadata_.mutable_unknown_fields();
  1404. }
  1405. static const ::google::protobuf::Descriptor* descriptor();
  1406. static const Locate_sift_request_msg& default_instance();
  1407. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  1408. static inline const Locate_sift_request_msg* internal_default_instance() {
  1409. return reinterpret_cast<const Locate_sift_request_msg*>(
  1410. &_Locate_sift_request_msg_default_instance_);
  1411. }
  1412. static constexpr int kIndexInFileMessages =
  1413. 8;
  1414. void Swap(Locate_sift_request_msg* other);
  1415. friend void swap(Locate_sift_request_msg& a, Locate_sift_request_msg& b) {
  1416. a.Swap(&b);
  1417. }
  1418. // implements Message ----------------------------------------------
  1419. inline Locate_sift_request_msg* New() const final {
  1420. return CreateMaybeMessage<Locate_sift_request_msg>(NULL);
  1421. }
  1422. Locate_sift_request_msg* New(::google::protobuf::Arena* arena) const final {
  1423. return CreateMaybeMessage<Locate_sift_request_msg>(arena);
  1424. }
  1425. void CopyFrom(const ::google::protobuf::Message& from) final;
  1426. void MergeFrom(const ::google::protobuf::Message& from) final;
  1427. void CopyFrom(const Locate_sift_request_msg& from);
  1428. void MergeFrom(const Locate_sift_request_msg& from);
  1429. void Clear() final;
  1430. bool IsInitialized() const final;
  1431. size_t ByteSizeLong() const final;
  1432. bool MergePartialFromCodedStream(
  1433. ::google::protobuf::io::CodedInputStream* input) final;
  1434. void SerializeWithCachedSizes(
  1435. ::google::protobuf::io::CodedOutputStream* output) const final;
  1436. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  1437. bool deterministic, ::google::protobuf::uint8* target) const final;
  1438. int GetCachedSize() const final { return _cached_size_.Get(); }
  1439. private:
  1440. void SharedCtor();
  1441. void SharedDtor();
  1442. void SetCachedSize(int size) const final;
  1443. void InternalSwap(Locate_sift_request_msg* other);
  1444. private:
  1445. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  1446. return NULL;
  1447. }
  1448. inline void* MaybeArenaPtr() const {
  1449. return NULL;
  1450. }
  1451. public:
  1452. ::google::protobuf::Metadata GetMetadata() const final;
  1453. // nested types ----------------------------------------------------
  1454. // accessors -------------------------------------------------------
  1455. // repeated .message.Cloud_coordinate cloud_coordinates = 5;
  1456. int cloud_coordinates_size() const;
  1457. void clear_cloud_coordinates();
  1458. static const int kCloudCoordinatesFieldNumber = 5;
  1459. ::message::Cloud_coordinate* mutable_cloud_coordinates(int index);
  1460. ::google::protobuf::RepeatedPtrField< ::message::Cloud_coordinate >*
  1461. mutable_cloud_coordinates();
  1462. const ::message::Cloud_coordinate& cloud_coordinates(int index) const;
  1463. ::message::Cloud_coordinate* add_cloud_coordinates();
  1464. const ::google::protobuf::RepeatedPtrField< ::message::Cloud_coordinate >&
  1465. cloud_coordinates() const;
  1466. // required string command_key = 2;
  1467. bool has_command_key() const;
  1468. void clear_command_key();
  1469. static const int kCommandKeyFieldNumber = 2;
  1470. const ::std::string& command_key() const;
  1471. void set_command_key(const ::std::string& value);
  1472. #if LANG_CXX11
  1473. void set_command_key(::std::string&& value);
  1474. #endif
  1475. void set_command_key(const char* value);
  1476. void set_command_key(const char* value, size_t size);
  1477. ::std::string* mutable_command_key();
  1478. ::std::string* release_command_key();
  1479. void set_allocated_command_key(::std::string* command_key);
  1480. // required .message.Base_info base_info = 1;
  1481. bool has_base_info() const;
  1482. void clear_base_info();
  1483. static const int kBaseInfoFieldNumber = 1;
  1484. private:
  1485. const ::message::Base_info& _internal_base_info() const;
  1486. public:
  1487. const ::message::Base_info& base_info() const;
  1488. ::message::Base_info* release_base_info();
  1489. ::message::Base_info* mutable_base_info();
  1490. void set_allocated_base_info(::message::Base_info* base_info);
  1491. // required int32 terminal_id = 3;
  1492. bool has_terminal_id() const;
  1493. void clear_terminal_id();
  1494. static const int kTerminalIdFieldNumber = 3;
  1495. ::google::protobuf::int32 terminal_id() const;
  1496. void set_terminal_id(::google::protobuf::int32 value);
  1497. // required int32 lidar_id = 4;
  1498. bool has_lidar_id() const;
  1499. void clear_lidar_id();
  1500. static const int kLidarIdFieldNumber = 4;
  1501. ::google::protobuf::int32 lidar_id() const;
  1502. void set_lidar_id(::google::protobuf::int32 value);
  1503. // @@protoc_insertion_point(class_scope:message.Locate_sift_request_msg)
  1504. private:
  1505. void set_has_base_info();
  1506. void clear_has_base_info();
  1507. void set_has_command_key();
  1508. void clear_has_command_key();
  1509. void set_has_terminal_id();
  1510. void clear_has_terminal_id();
  1511. void set_has_lidar_id();
  1512. void clear_has_lidar_id();
  1513. // helper for ByteSizeLong()
  1514. size_t RequiredFieldsByteSizeFallback() const;
  1515. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  1516. ::google::protobuf::internal::HasBits<1> _has_bits_;
  1517. mutable ::google::protobuf::internal::CachedSize _cached_size_;
  1518. ::google::protobuf::RepeatedPtrField< ::message::Cloud_coordinate > cloud_coordinates_;
  1519. ::google::protobuf::internal::ArenaStringPtr command_key_;
  1520. ::message::Base_info* base_info_;
  1521. ::google::protobuf::int32 terminal_id_;
  1522. ::google::protobuf::int32 lidar_id_;
  1523. friend struct ::protobuf_measure_5fmessage_2eproto::TableStruct;
  1524. };
  1525. // -------------------------------------------------------------------
  1526. class Locate_sift_response_msg : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Locate_sift_response_msg) */ {
  1527. public:
  1528. Locate_sift_response_msg();
  1529. virtual ~Locate_sift_response_msg();
  1530. Locate_sift_response_msg(const Locate_sift_response_msg& from);
  1531. inline Locate_sift_response_msg& operator=(const Locate_sift_response_msg& from) {
  1532. CopyFrom(from);
  1533. return *this;
  1534. }
  1535. #if LANG_CXX11
  1536. Locate_sift_response_msg(Locate_sift_response_msg&& from) noexcept
  1537. : Locate_sift_response_msg() {
  1538. *this = ::std::move(from);
  1539. }
  1540. inline Locate_sift_response_msg& operator=(Locate_sift_response_msg&& from) noexcept {
  1541. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  1542. if (this != &from) InternalSwap(&from);
  1543. } else {
  1544. CopyFrom(from);
  1545. }
  1546. return *this;
  1547. }
  1548. #endif
  1549. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  1550. return _internal_metadata_.unknown_fields();
  1551. }
  1552. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  1553. return _internal_metadata_.mutable_unknown_fields();
  1554. }
  1555. static const ::google::protobuf::Descriptor* descriptor();
  1556. static const Locate_sift_response_msg& default_instance();
  1557. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  1558. static inline const Locate_sift_response_msg* internal_default_instance() {
  1559. return reinterpret_cast<const Locate_sift_response_msg*>(
  1560. &_Locate_sift_response_msg_default_instance_);
  1561. }
  1562. static constexpr int kIndexInFileMessages =
  1563. 9;
  1564. void Swap(Locate_sift_response_msg* other);
  1565. friend void swap(Locate_sift_response_msg& a, Locate_sift_response_msg& b) {
  1566. a.Swap(&b);
  1567. }
  1568. // implements Message ----------------------------------------------
  1569. inline Locate_sift_response_msg* New() const final {
  1570. return CreateMaybeMessage<Locate_sift_response_msg>(NULL);
  1571. }
  1572. Locate_sift_response_msg* New(::google::protobuf::Arena* arena) const final {
  1573. return CreateMaybeMessage<Locate_sift_response_msg>(arena);
  1574. }
  1575. void CopyFrom(const ::google::protobuf::Message& from) final;
  1576. void MergeFrom(const ::google::protobuf::Message& from) final;
  1577. void CopyFrom(const Locate_sift_response_msg& from);
  1578. void MergeFrom(const Locate_sift_response_msg& from);
  1579. void Clear() final;
  1580. bool IsInitialized() const final;
  1581. size_t ByteSizeLong() const final;
  1582. bool MergePartialFromCodedStream(
  1583. ::google::protobuf::io::CodedInputStream* input) final;
  1584. void SerializeWithCachedSizes(
  1585. ::google::protobuf::io::CodedOutputStream* output) const final;
  1586. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  1587. bool deterministic, ::google::protobuf::uint8* target) const final;
  1588. int GetCachedSize() const final { return _cached_size_.Get(); }
  1589. private:
  1590. void SharedCtor();
  1591. void SharedDtor();
  1592. void SetCachedSize(int size) const final;
  1593. void InternalSwap(Locate_sift_response_msg* other);
  1594. private:
  1595. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  1596. return NULL;
  1597. }
  1598. inline void* MaybeArenaPtr() const {
  1599. return NULL;
  1600. }
  1601. public:
  1602. ::google::protobuf::Metadata GetMetadata() const final;
  1603. // nested types ----------------------------------------------------
  1604. // accessors -------------------------------------------------------
  1605. // repeated .message.Cloud_type cloud_type = 5;
  1606. int cloud_type_size() const;
  1607. void clear_cloud_type();
  1608. static const int kCloudTypeFieldNumber = 5;
  1609. ::message::Cloud_type* mutable_cloud_type(int index);
  1610. ::google::protobuf::RepeatedPtrField< ::message::Cloud_type >*
  1611. mutable_cloud_type();
  1612. const ::message::Cloud_type& cloud_type(int index) const;
  1613. ::message::Cloud_type* add_cloud_type();
  1614. const ::google::protobuf::RepeatedPtrField< ::message::Cloud_type >&
  1615. cloud_type() const;
  1616. // required string command_key = 2;
  1617. bool has_command_key() const;
  1618. void clear_command_key();
  1619. static const int kCommandKeyFieldNumber = 2;
  1620. const ::std::string& command_key() const;
  1621. void set_command_key(const ::std::string& value);
  1622. #if LANG_CXX11
  1623. void set_command_key(::std::string&& value);
  1624. #endif
  1625. void set_command_key(const char* value);
  1626. void set_command_key(const char* value, size_t size);
  1627. ::std::string* mutable_command_key();
  1628. ::std::string* release_command_key();
  1629. void set_allocated_command_key(::std::string* command_key);
  1630. // required .message.Base_info base_info = 1;
  1631. bool has_base_info() const;
  1632. void clear_base_info();
  1633. static const int kBaseInfoFieldNumber = 1;
  1634. private:
  1635. const ::message::Base_info& _internal_base_info() const;
  1636. public:
  1637. const ::message::Base_info& base_info() const;
  1638. ::message::Base_info* release_base_info();
  1639. ::message::Base_info* mutable_base_info();
  1640. void set_allocated_base_info(::message::Base_info* base_info);
  1641. // required .message.Error_manager error_manager = 6;
  1642. bool has_error_manager() const;
  1643. void clear_error_manager();
  1644. static const int kErrorManagerFieldNumber = 6;
  1645. private:
  1646. const ::message::Error_manager& _internal_error_manager() const;
  1647. public:
  1648. const ::message::Error_manager& error_manager() const;
  1649. ::message::Error_manager* release_error_manager();
  1650. ::message::Error_manager* mutable_error_manager();
  1651. void set_allocated_error_manager(::message::Error_manager* error_manager);
  1652. // required int32 terminal_id = 3;
  1653. bool has_terminal_id() const;
  1654. void clear_terminal_id();
  1655. static const int kTerminalIdFieldNumber = 3;
  1656. ::google::protobuf::int32 terminal_id() const;
  1657. void set_terminal_id(::google::protobuf::int32 value);
  1658. // required int32 lidar_id = 4;
  1659. bool has_lidar_id() const;
  1660. void clear_lidar_id();
  1661. static const int kLidarIdFieldNumber = 4;
  1662. ::google::protobuf::int32 lidar_id() const;
  1663. void set_lidar_id(::google::protobuf::int32 value);
  1664. // @@protoc_insertion_point(class_scope:message.Locate_sift_response_msg)
  1665. private:
  1666. void set_has_base_info();
  1667. void clear_has_base_info();
  1668. void set_has_command_key();
  1669. void clear_has_command_key();
  1670. void set_has_terminal_id();
  1671. void clear_has_terminal_id();
  1672. void set_has_lidar_id();
  1673. void clear_has_lidar_id();
  1674. void set_has_error_manager();
  1675. void clear_has_error_manager();
  1676. // helper for ByteSizeLong()
  1677. size_t RequiredFieldsByteSizeFallback() const;
  1678. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  1679. ::google::protobuf::internal::HasBits<1> _has_bits_;
  1680. mutable ::google::protobuf::internal::CachedSize _cached_size_;
  1681. ::google::protobuf::RepeatedPtrField< ::message::Cloud_type > cloud_type_;
  1682. ::google::protobuf::internal::ArenaStringPtr command_key_;
  1683. ::message::Base_info* base_info_;
  1684. ::message::Error_manager* error_manager_;
  1685. ::google::protobuf::int32 terminal_id_;
  1686. ::google::protobuf::int32 lidar_id_;
  1687. friend struct ::protobuf_measure_5fmessage_2eproto::TableStruct;
  1688. };
  1689. // ===================================================================
  1690. // ===================================================================
  1691. #ifdef __GNUC__
  1692. #pragma GCC diagnostic push
  1693. #pragma GCC diagnostic ignored "-Wstrict-aliasing"
  1694. #endif // __GNUC__
  1695. // Measure_status_msg
  1696. // required .message.Base_info base_info = 1;
  1697. inline bool Measure_status_msg::has_base_info() const {
  1698. return (_has_bits_[0] & 0x00000001u) != 0;
  1699. }
  1700. inline void Measure_status_msg::set_has_base_info() {
  1701. _has_bits_[0] |= 0x00000001u;
  1702. }
  1703. inline void Measure_status_msg::clear_has_base_info() {
  1704. _has_bits_[0] &= ~0x00000001u;
  1705. }
  1706. inline const ::message::Base_info& Measure_status_msg::_internal_base_info() const {
  1707. return *base_info_;
  1708. }
  1709. inline const ::message::Base_info& Measure_status_msg::base_info() const {
  1710. const ::message::Base_info* p = base_info_;
  1711. // @@protoc_insertion_point(field_get:message.Measure_status_msg.base_info)
  1712. return p != NULL ? *p : *reinterpret_cast<const ::message::Base_info*>(
  1713. &::message::_Base_info_default_instance_);
  1714. }
  1715. inline ::message::Base_info* Measure_status_msg::release_base_info() {
  1716. // @@protoc_insertion_point(field_release:message.Measure_status_msg.base_info)
  1717. clear_has_base_info();
  1718. ::message::Base_info* temp = base_info_;
  1719. base_info_ = NULL;
  1720. return temp;
  1721. }
  1722. inline ::message::Base_info* Measure_status_msg::mutable_base_info() {
  1723. set_has_base_info();
  1724. if (base_info_ == NULL) {
  1725. auto* p = CreateMaybeMessage<::message::Base_info>(GetArenaNoVirtual());
  1726. base_info_ = p;
  1727. }
  1728. // @@protoc_insertion_point(field_mutable:message.Measure_status_msg.base_info)
  1729. return base_info_;
  1730. }
  1731. inline void Measure_status_msg::set_allocated_base_info(::message::Base_info* base_info) {
  1732. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  1733. if (message_arena == NULL) {
  1734. delete reinterpret_cast< ::google::protobuf::MessageLite*>(base_info_);
  1735. }
  1736. if (base_info) {
  1737. ::google::protobuf::Arena* submessage_arena = NULL;
  1738. if (message_arena != submessage_arena) {
  1739. base_info = ::google::protobuf::internal::GetOwnedMessage(
  1740. message_arena, base_info, submessage_arena);
  1741. }
  1742. set_has_base_info();
  1743. } else {
  1744. clear_has_base_info();
  1745. }
  1746. base_info_ = base_info;
  1747. // @@protoc_insertion_point(field_set_allocated:message.Measure_status_msg.base_info)
  1748. }
  1749. // required int32 terminal_id = 2;
  1750. inline bool Measure_status_msg::has_terminal_id() const {
  1751. return (_has_bits_[0] & 0x00000004u) != 0;
  1752. }
  1753. inline void Measure_status_msg::set_has_terminal_id() {
  1754. _has_bits_[0] |= 0x00000004u;
  1755. }
  1756. inline void Measure_status_msg::clear_has_terminal_id() {
  1757. _has_bits_[0] &= ~0x00000004u;
  1758. }
  1759. inline void Measure_status_msg::clear_terminal_id() {
  1760. terminal_id_ = 0;
  1761. clear_has_terminal_id();
  1762. }
  1763. inline ::google::protobuf::int32 Measure_status_msg::terminal_id() const {
  1764. // @@protoc_insertion_point(field_get:message.Measure_status_msg.terminal_id)
  1765. return terminal_id_;
  1766. }
  1767. inline void Measure_status_msg::set_terminal_id(::google::protobuf::int32 value) {
  1768. set_has_terminal_id();
  1769. terminal_id_ = value;
  1770. // @@protoc_insertion_point(field_set:message.Measure_status_msg.terminal_id)
  1771. }
  1772. // required .message.Laser_manager_status laser_manager_status = 3;
  1773. inline bool Measure_status_msg::has_laser_manager_status() const {
  1774. return (_has_bits_[0] & 0x00000008u) != 0;
  1775. }
  1776. inline void Measure_status_msg::set_has_laser_manager_status() {
  1777. _has_bits_[0] |= 0x00000008u;
  1778. }
  1779. inline void Measure_status_msg::clear_has_laser_manager_status() {
  1780. _has_bits_[0] &= ~0x00000008u;
  1781. }
  1782. inline void Measure_status_msg::clear_laser_manager_status() {
  1783. laser_manager_status_ = 0;
  1784. clear_has_laser_manager_status();
  1785. }
  1786. inline ::message::Laser_manager_status Measure_status_msg::laser_manager_status() const {
  1787. // @@protoc_insertion_point(field_get:message.Measure_status_msg.laser_manager_status)
  1788. return static_cast< ::message::Laser_manager_status >(laser_manager_status_);
  1789. }
  1790. inline void Measure_status_msg::set_laser_manager_status(::message::Laser_manager_status value) {
  1791. assert(::message::Laser_manager_status_IsValid(value));
  1792. set_has_laser_manager_status();
  1793. laser_manager_status_ = value;
  1794. // @@protoc_insertion_point(field_set:message.Measure_status_msg.laser_manager_status)
  1795. }
  1796. // repeated .message.Laser_statu laser_statu_vector = 4;
  1797. inline int Measure_status_msg::laser_statu_vector_size() const {
  1798. return laser_statu_vector_.size();
  1799. }
  1800. inline void Measure_status_msg::clear_laser_statu_vector() {
  1801. laser_statu_vector_.Clear();
  1802. }
  1803. inline ::message::Laser_statu Measure_status_msg::laser_statu_vector(int index) const {
  1804. // @@protoc_insertion_point(field_get:message.Measure_status_msg.laser_statu_vector)
  1805. return static_cast< ::message::Laser_statu >(laser_statu_vector_.Get(index));
  1806. }
  1807. inline void Measure_status_msg::set_laser_statu_vector(int index, ::message::Laser_statu value) {
  1808. assert(::message::Laser_statu_IsValid(value));
  1809. laser_statu_vector_.Set(index, value);
  1810. // @@protoc_insertion_point(field_set:message.Measure_status_msg.laser_statu_vector)
  1811. }
  1812. inline void Measure_status_msg::add_laser_statu_vector(::message::Laser_statu value) {
  1813. assert(::message::Laser_statu_IsValid(value));
  1814. laser_statu_vector_.Add(value);
  1815. // @@protoc_insertion_point(field_add:message.Measure_status_msg.laser_statu_vector)
  1816. }
  1817. inline const ::google::protobuf::RepeatedField<int>&
  1818. Measure_status_msg::laser_statu_vector() const {
  1819. // @@protoc_insertion_point(field_list:message.Measure_status_msg.laser_statu_vector)
  1820. return laser_statu_vector_;
  1821. }
  1822. inline ::google::protobuf::RepeatedField<int>*
  1823. Measure_status_msg::mutable_laser_statu_vector() {
  1824. // @@protoc_insertion_point(field_mutable_list:message.Measure_status_msg.laser_statu_vector)
  1825. return &laser_statu_vector_;
  1826. }
  1827. // required .message.Locate_manager_status locate_manager_status = 5;
  1828. inline bool Measure_status_msg::has_locate_manager_status() const {
  1829. return (_has_bits_[0] & 0x00000010u) != 0;
  1830. }
  1831. inline void Measure_status_msg::set_has_locate_manager_status() {
  1832. _has_bits_[0] |= 0x00000010u;
  1833. }
  1834. inline void Measure_status_msg::clear_has_locate_manager_status() {
  1835. _has_bits_[0] &= ~0x00000010u;
  1836. }
  1837. inline void Measure_status_msg::clear_locate_manager_status() {
  1838. locate_manager_status_ = 0;
  1839. clear_has_locate_manager_status();
  1840. }
  1841. inline ::message::Locate_manager_status Measure_status_msg::locate_manager_status() const {
  1842. // @@protoc_insertion_point(field_get:message.Measure_status_msg.locate_manager_status)
  1843. return static_cast< ::message::Locate_manager_status >(locate_manager_status_);
  1844. }
  1845. inline void Measure_status_msg::set_locate_manager_status(::message::Locate_manager_status value) {
  1846. assert(::message::Locate_manager_status_IsValid(value));
  1847. set_has_locate_manager_status();
  1848. locate_manager_status_ = value;
  1849. // @@protoc_insertion_point(field_set:message.Measure_status_msg.locate_manager_status)
  1850. }
  1851. // required .message.Error_manager error_manager = 6;
  1852. inline bool Measure_status_msg::has_error_manager() const {
  1853. return (_has_bits_[0] & 0x00000002u) != 0;
  1854. }
  1855. inline void Measure_status_msg::set_has_error_manager() {
  1856. _has_bits_[0] |= 0x00000002u;
  1857. }
  1858. inline void Measure_status_msg::clear_has_error_manager() {
  1859. _has_bits_[0] &= ~0x00000002u;
  1860. }
  1861. inline const ::message::Error_manager& Measure_status_msg::_internal_error_manager() const {
  1862. return *error_manager_;
  1863. }
  1864. inline const ::message::Error_manager& Measure_status_msg::error_manager() const {
  1865. const ::message::Error_manager* p = error_manager_;
  1866. // @@protoc_insertion_point(field_get:message.Measure_status_msg.error_manager)
  1867. return p != NULL ? *p : *reinterpret_cast<const ::message::Error_manager*>(
  1868. &::message::_Error_manager_default_instance_);
  1869. }
  1870. inline ::message::Error_manager* Measure_status_msg::release_error_manager() {
  1871. // @@protoc_insertion_point(field_release:message.Measure_status_msg.error_manager)
  1872. clear_has_error_manager();
  1873. ::message::Error_manager* temp = error_manager_;
  1874. error_manager_ = NULL;
  1875. return temp;
  1876. }
  1877. inline ::message::Error_manager* Measure_status_msg::mutable_error_manager() {
  1878. set_has_error_manager();
  1879. if (error_manager_ == NULL) {
  1880. auto* p = CreateMaybeMessage<::message::Error_manager>(GetArenaNoVirtual());
  1881. error_manager_ = p;
  1882. }
  1883. // @@protoc_insertion_point(field_mutable:message.Measure_status_msg.error_manager)
  1884. return error_manager_;
  1885. }
  1886. inline void Measure_status_msg::set_allocated_error_manager(::message::Error_manager* error_manager) {
  1887. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  1888. if (message_arena == NULL) {
  1889. delete reinterpret_cast< ::google::protobuf::MessageLite*>(error_manager_);
  1890. }
  1891. if (error_manager) {
  1892. ::google::protobuf::Arena* submessage_arena = NULL;
  1893. if (message_arena != submessage_arena) {
  1894. error_manager = ::google::protobuf::internal::GetOwnedMessage(
  1895. message_arena, error_manager, submessage_arena);
  1896. }
  1897. set_has_error_manager();
  1898. } else {
  1899. clear_has_error_manager();
  1900. }
  1901. error_manager_ = error_manager;
  1902. // @@protoc_insertion_point(field_set_allocated:message.Measure_status_msg.error_manager)
  1903. }
  1904. // -------------------------------------------------------------------
  1905. // Measure_request_msg
  1906. // required .message.Base_info base_info = 1;
  1907. inline bool Measure_request_msg::has_base_info() const {
  1908. return (_has_bits_[0] & 0x00000002u) != 0;
  1909. }
  1910. inline void Measure_request_msg::set_has_base_info() {
  1911. _has_bits_[0] |= 0x00000002u;
  1912. }
  1913. inline void Measure_request_msg::clear_has_base_info() {
  1914. _has_bits_[0] &= ~0x00000002u;
  1915. }
  1916. inline const ::message::Base_info& Measure_request_msg::_internal_base_info() const {
  1917. return *base_info_;
  1918. }
  1919. inline const ::message::Base_info& Measure_request_msg::base_info() const {
  1920. const ::message::Base_info* p = base_info_;
  1921. // @@protoc_insertion_point(field_get:message.Measure_request_msg.base_info)
  1922. return p != NULL ? *p : *reinterpret_cast<const ::message::Base_info*>(
  1923. &::message::_Base_info_default_instance_);
  1924. }
  1925. inline ::message::Base_info* Measure_request_msg::release_base_info() {
  1926. // @@protoc_insertion_point(field_release:message.Measure_request_msg.base_info)
  1927. clear_has_base_info();
  1928. ::message::Base_info* temp = base_info_;
  1929. base_info_ = NULL;
  1930. return temp;
  1931. }
  1932. inline ::message::Base_info* Measure_request_msg::mutable_base_info() {
  1933. set_has_base_info();
  1934. if (base_info_ == NULL) {
  1935. auto* p = CreateMaybeMessage<::message::Base_info>(GetArenaNoVirtual());
  1936. base_info_ = p;
  1937. }
  1938. // @@protoc_insertion_point(field_mutable:message.Measure_request_msg.base_info)
  1939. return base_info_;
  1940. }
  1941. inline void Measure_request_msg::set_allocated_base_info(::message::Base_info* base_info) {
  1942. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  1943. if (message_arena == NULL) {
  1944. delete reinterpret_cast< ::google::protobuf::MessageLite*>(base_info_);
  1945. }
  1946. if (base_info) {
  1947. ::google::protobuf::Arena* submessage_arena = NULL;
  1948. if (message_arena != submessage_arena) {
  1949. base_info = ::google::protobuf::internal::GetOwnedMessage(
  1950. message_arena, base_info, submessage_arena);
  1951. }
  1952. set_has_base_info();
  1953. } else {
  1954. clear_has_base_info();
  1955. }
  1956. base_info_ = base_info;
  1957. // @@protoc_insertion_point(field_set_allocated:message.Measure_request_msg.base_info)
  1958. }
  1959. // required string command_key = 2;
  1960. inline bool Measure_request_msg::has_command_key() const {
  1961. return (_has_bits_[0] & 0x00000001u) != 0;
  1962. }
  1963. inline void Measure_request_msg::set_has_command_key() {
  1964. _has_bits_[0] |= 0x00000001u;
  1965. }
  1966. inline void Measure_request_msg::clear_has_command_key() {
  1967. _has_bits_[0] &= ~0x00000001u;
  1968. }
  1969. inline void Measure_request_msg::clear_command_key() {
  1970. command_key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1971. clear_has_command_key();
  1972. }
  1973. inline const ::std::string& Measure_request_msg::command_key() const {
  1974. // @@protoc_insertion_point(field_get:message.Measure_request_msg.command_key)
  1975. return command_key_.GetNoArena();
  1976. }
  1977. inline void Measure_request_msg::set_command_key(const ::std::string& value) {
  1978. set_has_command_key();
  1979. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  1980. // @@protoc_insertion_point(field_set:message.Measure_request_msg.command_key)
  1981. }
  1982. #if LANG_CXX11
  1983. inline void Measure_request_msg::set_command_key(::std::string&& value) {
  1984. set_has_command_key();
  1985. command_key_.SetNoArena(
  1986. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  1987. // @@protoc_insertion_point(field_set_rvalue:message.Measure_request_msg.command_key)
  1988. }
  1989. #endif
  1990. inline void Measure_request_msg::set_command_key(const char* value) {
  1991. GOOGLE_DCHECK(value != NULL);
  1992. set_has_command_key();
  1993. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  1994. // @@protoc_insertion_point(field_set_char:message.Measure_request_msg.command_key)
  1995. }
  1996. inline void Measure_request_msg::set_command_key(const char* value, size_t size) {
  1997. set_has_command_key();
  1998. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  1999. ::std::string(reinterpret_cast<const char*>(value), size));
  2000. // @@protoc_insertion_point(field_set_pointer:message.Measure_request_msg.command_key)
  2001. }
  2002. inline ::std::string* Measure_request_msg::mutable_command_key() {
  2003. set_has_command_key();
  2004. // @@protoc_insertion_point(field_mutable:message.Measure_request_msg.command_key)
  2005. return command_key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2006. }
  2007. inline ::std::string* Measure_request_msg::release_command_key() {
  2008. // @@protoc_insertion_point(field_release:message.Measure_request_msg.command_key)
  2009. if (!has_command_key()) {
  2010. return NULL;
  2011. }
  2012. clear_has_command_key();
  2013. return command_key_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2014. }
  2015. inline void Measure_request_msg::set_allocated_command_key(::std::string* command_key) {
  2016. if (command_key != NULL) {
  2017. set_has_command_key();
  2018. } else {
  2019. clear_has_command_key();
  2020. }
  2021. command_key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), command_key);
  2022. // @@protoc_insertion_point(field_set_allocated:message.Measure_request_msg.command_key)
  2023. }
  2024. // required int32 terminal_id = 3;
  2025. inline bool Measure_request_msg::has_terminal_id() const {
  2026. return (_has_bits_[0] & 0x00000004u) != 0;
  2027. }
  2028. inline void Measure_request_msg::set_has_terminal_id() {
  2029. _has_bits_[0] |= 0x00000004u;
  2030. }
  2031. inline void Measure_request_msg::clear_has_terminal_id() {
  2032. _has_bits_[0] &= ~0x00000004u;
  2033. }
  2034. inline void Measure_request_msg::clear_terminal_id() {
  2035. terminal_id_ = 0;
  2036. clear_has_terminal_id();
  2037. }
  2038. inline ::google::protobuf::int32 Measure_request_msg::terminal_id() const {
  2039. // @@protoc_insertion_point(field_get:message.Measure_request_msg.terminal_id)
  2040. return terminal_id_;
  2041. }
  2042. inline void Measure_request_msg::set_terminal_id(::google::protobuf::int32 value) {
  2043. set_has_terminal_id();
  2044. terminal_id_ = value;
  2045. // @@protoc_insertion_point(field_set:message.Measure_request_msg.terminal_id)
  2046. }
  2047. // -------------------------------------------------------------------
  2048. // Measure_response_msg
  2049. // required .message.Base_info base_info = 1;
  2050. inline bool Measure_response_msg::has_base_info() const {
  2051. return (_has_bits_[0] & 0x00000002u) != 0;
  2052. }
  2053. inline void Measure_response_msg::set_has_base_info() {
  2054. _has_bits_[0] |= 0x00000002u;
  2055. }
  2056. inline void Measure_response_msg::clear_has_base_info() {
  2057. _has_bits_[0] &= ~0x00000002u;
  2058. }
  2059. inline const ::message::Base_info& Measure_response_msg::_internal_base_info() const {
  2060. return *base_info_;
  2061. }
  2062. inline const ::message::Base_info& Measure_response_msg::base_info() const {
  2063. const ::message::Base_info* p = base_info_;
  2064. // @@protoc_insertion_point(field_get:message.Measure_response_msg.base_info)
  2065. return p != NULL ? *p : *reinterpret_cast<const ::message::Base_info*>(
  2066. &::message::_Base_info_default_instance_);
  2067. }
  2068. inline ::message::Base_info* Measure_response_msg::release_base_info() {
  2069. // @@protoc_insertion_point(field_release:message.Measure_response_msg.base_info)
  2070. clear_has_base_info();
  2071. ::message::Base_info* temp = base_info_;
  2072. base_info_ = NULL;
  2073. return temp;
  2074. }
  2075. inline ::message::Base_info* Measure_response_msg::mutable_base_info() {
  2076. set_has_base_info();
  2077. if (base_info_ == NULL) {
  2078. auto* p = CreateMaybeMessage<::message::Base_info>(GetArenaNoVirtual());
  2079. base_info_ = p;
  2080. }
  2081. // @@protoc_insertion_point(field_mutable:message.Measure_response_msg.base_info)
  2082. return base_info_;
  2083. }
  2084. inline void Measure_response_msg::set_allocated_base_info(::message::Base_info* base_info) {
  2085. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  2086. if (message_arena == NULL) {
  2087. delete reinterpret_cast< ::google::protobuf::MessageLite*>(base_info_);
  2088. }
  2089. if (base_info) {
  2090. ::google::protobuf::Arena* submessage_arena = NULL;
  2091. if (message_arena != submessage_arena) {
  2092. base_info = ::google::protobuf::internal::GetOwnedMessage(
  2093. message_arena, base_info, submessage_arena);
  2094. }
  2095. set_has_base_info();
  2096. } else {
  2097. clear_has_base_info();
  2098. }
  2099. base_info_ = base_info;
  2100. // @@protoc_insertion_point(field_set_allocated:message.Measure_response_msg.base_info)
  2101. }
  2102. // required string command_key = 2;
  2103. inline bool Measure_response_msg::has_command_key() const {
  2104. return (_has_bits_[0] & 0x00000001u) != 0;
  2105. }
  2106. inline void Measure_response_msg::set_has_command_key() {
  2107. _has_bits_[0] |= 0x00000001u;
  2108. }
  2109. inline void Measure_response_msg::clear_has_command_key() {
  2110. _has_bits_[0] &= ~0x00000001u;
  2111. }
  2112. inline void Measure_response_msg::clear_command_key() {
  2113. command_key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2114. clear_has_command_key();
  2115. }
  2116. inline const ::std::string& Measure_response_msg::command_key() const {
  2117. // @@protoc_insertion_point(field_get:message.Measure_response_msg.command_key)
  2118. return command_key_.GetNoArena();
  2119. }
  2120. inline void Measure_response_msg::set_command_key(const ::std::string& value) {
  2121. set_has_command_key();
  2122. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  2123. // @@protoc_insertion_point(field_set:message.Measure_response_msg.command_key)
  2124. }
  2125. #if LANG_CXX11
  2126. inline void Measure_response_msg::set_command_key(::std::string&& value) {
  2127. set_has_command_key();
  2128. command_key_.SetNoArena(
  2129. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  2130. // @@protoc_insertion_point(field_set_rvalue:message.Measure_response_msg.command_key)
  2131. }
  2132. #endif
  2133. inline void Measure_response_msg::set_command_key(const char* value) {
  2134. GOOGLE_DCHECK(value != NULL);
  2135. set_has_command_key();
  2136. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  2137. // @@protoc_insertion_point(field_set_char:message.Measure_response_msg.command_key)
  2138. }
  2139. inline void Measure_response_msg::set_command_key(const char* value, size_t size) {
  2140. set_has_command_key();
  2141. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  2142. ::std::string(reinterpret_cast<const char*>(value), size));
  2143. // @@protoc_insertion_point(field_set_pointer:message.Measure_response_msg.command_key)
  2144. }
  2145. inline ::std::string* Measure_response_msg::mutable_command_key() {
  2146. set_has_command_key();
  2147. // @@protoc_insertion_point(field_mutable:message.Measure_response_msg.command_key)
  2148. return command_key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2149. }
  2150. inline ::std::string* Measure_response_msg::release_command_key() {
  2151. // @@protoc_insertion_point(field_release:message.Measure_response_msg.command_key)
  2152. if (!has_command_key()) {
  2153. return NULL;
  2154. }
  2155. clear_has_command_key();
  2156. return command_key_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2157. }
  2158. inline void Measure_response_msg::set_allocated_command_key(::std::string* command_key) {
  2159. if (command_key != NULL) {
  2160. set_has_command_key();
  2161. } else {
  2162. clear_has_command_key();
  2163. }
  2164. command_key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), command_key);
  2165. // @@protoc_insertion_point(field_set_allocated:message.Measure_response_msg.command_key)
  2166. }
  2167. // required int32 terminal_id = 3;
  2168. inline bool Measure_response_msg::has_terminal_id() const {
  2169. return (_has_bits_[0] & 0x00000010u) != 0;
  2170. }
  2171. inline void Measure_response_msg::set_has_terminal_id() {
  2172. _has_bits_[0] |= 0x00000010u;
  2173. }
  2174. inline void Measure_response_msg::clear_has_terminal_id() {
  2175. _has_bits_[0] &= ~0x00000010u;
  2176. }
  2177. inline void Measure_response_msg::clear_terminal_id() {
  2178. terminal_id_ = 0;
  2179. clear_has_terminal_id();
  2180. }
  2181. inline ::google::protobuf::int32 Measure_response_msg::terminal_id() const {
  2182. // @@protoc_insertion_point(field_get:message.Measure_response_msg.terminal_id)
  2183. return terminal_id_;
  2184. }
  2185. inline void Measure_response_msg::set_terminal_id(::google::protobuf::int32 value) {
  2186. set_has_terminal_id();
  2187. terminal_id_ = value;
  2188. // @@protoc_insertion_point(field_set:message.Measure_response_msg.terminal_id)
  2189. }
  2190. // optional .message.Locate_information locate_information = 4;
  2191. inline bool Measure_response_msg::has_locate_information() const {
  2192. return (_has_bits_[0] & 0x00000004u) != 0;
  2193. }
  2194. inline void Measure_response_msg::set_has_locate_information() {
  2195. _has_bits_[0] |= 0x00000004u;
  2196. }
  2197. inline void Measure_response_msg::clear_has_locate_information() {
  2198. _has_bits_[0] &= ~0x00000004u;
  2199. }
  2200. inline const ::message::Locate_information& Measure_response_msg::_internal_locate_information() const {
  2201. return *locate_information_;
  2202. }
  2203. inline const ::message::Locate_information& Measure_response_msg::locate_information() const {
  2204. const ::message::Locate_information* p = locate_information_;
  2205. // @@protoc_insertion_point(field_get:message.Measure_response_msg.locate_information)
  2206. return p != NULL ? *p : *reinterpret_cast<const ::message::Locate_information*>(
  2207. &::message::_Locate_information_default_instance_);
  2208. }
  2209. inline ::message::Locate_information* Measure_response_msg::release_locate_information() {
  2210. // @@protoc_insertion_point(field_release:message.Measure_response_msg.locate_information)
  2211. clear_has_locate_information();
  2212. ::message::Locate_information* temp = locate_information_;
  2213. locate_information_ = NULL;
  2214. return temp;
  2215. }
  2216. inline ::message::Locate_information* Measure_response_msg::mutable_locate_information() {
  2217. set_has_locate_information();
  2218. if (locate_information_ == NULL) {
  2219. auto* p = CreateMaybeMessage<::message::Locate_information>(GetArenaNoVirtual());
  2220. locate_information_ = p;
  2221. }
  2222. // @@protoc_insertion_point(field_mutable:message.Measure_response_msg.locate_information)
  2223. return locate_information_;
  2224. }
  2225. inline void Measure_response_msg::set_allocated_locate_information(::message::Locate_information* locate_information) {
  2226. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  2227. if (message_arena == NULL) {
  2228. delete reinterpret_cast< ::google::protobuf::MessageLite*>(locate_information_);
  2229. }
  2230. if (locate_information) {
  2231. ::google::protobuf::Arena* submessage_arena = NULL;
  2232. if (message_arena != submessage_arena) {
  2233. locate_information = ::google::protobuf::internal::GetOwnedMessage(
  2234. message_arena, locate_information, submessage_arena);
  2235. }
  2236. set_has_locate_information();
  2237. } else {
  2238. clear_has_locate_information();
  2239. }
  2240. locate_information_ = locate_information;
  2241. // @@protoc_insertion_point(field_set_allocated:message.Measure_response_msg.locate_information)
  2242. }
  2243. // required .message.Error_manager error_manager = 5;
  2244. inline bool Measure_response_msg::has_error_manager() const {
  2245. return (_has_bits_[0] & 0x00000008u) != 0;
  2246. }
  2247. inline void Measure_response_msg::set_has_error_manager() {
  2248. _has_bits_[0] |= 0x00000008u;
  2249. }
  2250. inline void Measure_response_msg::clear_has_error_manager() {
  2251. _has_bits_[0] &= ~0x00000008u;
  2252. }
  2253. inline const ::message::Error_manager& Measure_response_msg::_internal_error_manager() const {
  2254. return *error_manager_;
  2255. }
  2256. inline const ::message::Error_manager& Measure_response_msg::error_manager() const {
  2257. const ::message::Error_manager* p = error_manager_;
  2258. // @@protoc_insertion_point(field_get:message.Measure_response_msg.error_manager)
  2259. return p != NULL ? *p : *reinterpret_cast<const ::message::Error_manager*>(
  2260. &::message::_Error_manager_default_instance_);
  2261. }
  2262. inline ::message::Error_manager* Measure_response_msg::release_error_manager() {
  2263. // @@protoc_insertion_point(field_release:message.Measure_response_msg.error_manager)
  2264. clear_has_error_manager();
  2265. ::message::Error_manager* temp = error_manager_;
  2266. error_manager_ = NULL;
  2267. return temp;
  2268. }
  2269. inline ::message::Error_manager* Measure_response_msg::mutable_error_manager() {
  2270. set_has_error_manager();
  2271. if (error_manager_ == NULL) {
  2272. auto* p = CreateMaybeMessage<::message::Error_manager>(GetArenaNoVirtual());
  2273. error_manager_ = p;
  2274. }
  2275. // @@protoc_insertion_point(field_mutable:message.Measure_response_msg.error_manager)
  2276. return error_manager_;
  2277. }
  2278. inline void Measure_response_msg::set_allocated_error_manager(::message::Error_manager* error_manager) {
  2279. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  2280. if (message_arena == NULL) {
  2281. delete reinterpret_cast< ::google::protobuf::MessageLite*>(error_manager_);
  2282. }
  2283. if (error_manager) {
  2284. ::google::protobuf::Arena* submessage_arena = NULL;
  2285. if (message_arena != submessage_arena) {
  2286. error_manager = ::google::protobuf::internal::GetOwnedMessage(
  2287. message_arena, error_manager, submessage_arena);
  2288. }
  2289. set_has_error_manager();
  2290. } else {
  2291. clear_has_error_manager();
  2292. }
  2293. error_manager_ = error_manager;
  2294. // @@protoc_insertion_point(field_set_allocated:message.Measure_response_msg.error_manager)
  2295. }
  2296. // -------------------------------------------------------------------
  2297. // Ground_detect_request_msg
  2298. // required .message.Base_info base_info = 1;
  2299. inline bool Ground_detect_request_msg::has_base_info() const {
  2300. return (_has_bits_[0] & 0x00000002u) != 0;
  2301. }
  2302. inline void Ground_detect_request_msg::set_has_base_info() {
  2303. _has_bits_[0] |= 0x00000002u;
  2304. }
  2305. inline void Ground_detect_request_msg::clear_has_base_info() {
  2306. _has_bits_[0] &= ~0x00000002u;
  2307. }
  2308. inline const ::message::Base_info& Ground_detect_request_msg::_internal_base_info() const {
  2309. return *base_info_;
  2310. }
  2311. inline const ::message::Base_info& Ground_detect_request_msg::base_info() const {
  2312. const ::message::Base_info* p = base_info_;
  2313. // @@protoc_insertion_point(field_get:message.Ground_detect_request_msg.base_info)
  2314. return p != NULL ? *p : *reinterpret_cast<const ::message::Base_info*>(
  2315. &::message::_Base_info_default_instance_);
  2316. }
  2317. inline ::message::Base_info* Ground_detect_request_msg::release_base_info() {
  2318. // @@protoc_insertion_point(field_release:message.Ground_detect_request_msg.base_info)
  2319. clear_has_base_info();
  2320. ::message::Base_info* temp = base_info_;
  2321. base_info_ = NULL;
  2322. return temp;
  2323. }
  2324. inline ::message::Base_info* Ground_detect_request_msg::mutable_base_info() {
  2325. set_has_base_info();
  2326. if (base_info_ == NULL) {
  2327. auto* p = CreateMaybeMessage<::message::Base_info>(GetArenaNoVirtual());
  2328. base_info_ = p;
  2329. }
  2330. // @@protoc_insertion_point(field_mutable:message.Ground_detect_request_msg.base_info)
  2331. return base_info_;
  2332. }
  2333. inline void Ground_detect_request_msg::set_allocated_base_info(::message::Base_info* base_info) {
  2334. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  2335. if (message_arena == NULL) {
  2336. delete reinterpret_cast< ::google::protobuf::MessageLite*>(base_info_);
  2337. }
  2338. if (base_info) {
  2339. ::google::protobuf::Arena* submessage_arena = NULL;
  2340. if (message_arena != submessage_arena) {
  2341. base_info = ::google::protobuf::internal::GetOwnedMessage(
  2342. message_arena, base_info, submessage_arena);
  2343. }
  2344. set_has_base_info();
  2345. } else {
  2346. clear_has_base_info();
  2347. }
  2348. base_info_ = base_info;
  2349. // @@protoc_insertion_point(field_set_allocated:message.Ground_detect_request_msg.base_info)
  2350. }
  2351. // required string command_key = 2;
  2352. inline bool Ground_detect_request_msg::has_command_key() const {
  2353. return (_has_bits_[0] & 0x00000001u) != 0;
  2354. }
  2355. inline void Ground_detect_request_msg::set_has_command_key() {
  2356. _has_bits_[0] |= 0x00000001u;
  2357. }
  2358. inline void Ground_detect_request_msg::clear_has_command_key() {
  2359. _has_bits_[0] &= ~0x00000001u;
  2360. }
  2361. inline void Ground_detect_request_msg::clear_command_key() {
  2362. command_key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2363. clear_has_command_key();
  2364. }
  2365. inline const ::std::string& Ground_detect_request_msg::command_key() const {
  2366. // @@protoc_insertion_point(field_get:message.Ground_detect_request_msg.command_key)
  2367. return command_key_.GetNoArena();
  2368. }
  2369. inline void Ground_detect_request_msg::set_command_key(const ::std::string& value) {
  2370. set_has_command_key();
  2371. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  2372. // @@protoc_insertion_point(field_set:message.Ground_detect_request_msg.command_key)
  2373. }
  2374. #if LANG_CXX11
  2375. inline void Ground_detect_request_msg::set_command_key(::std::string&& value) {
  2376. set_has_command_key();
  2377. command_key_.SetNoArena(
  2378. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  2379. // @@protoc_insertion_point(field_set_rvalue:message.Ground_detect_request_msg.command_key)
  2380. }
  2381. #endif
  2382. inline void Ground_detect_request_msg::set_command_key(const char* value) {
  2383. GOOGLE_DCHECK(value != NULL);
  2384. set_has_command_key();
  2385. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  2386. // @@protoc_insertion_point(field_set_char:message.Ground_detect_request_msg.command_key)
  2387. }
  2388. inline void Ground_detect_request_msg::set_command_key(const char* value, size_t size) {
  2389. set_has_command_key();
  2390. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  2391. ::std::string(reinterpret_cast<const char*>(value), size));
  2392. // @@protoc_insertion_point(field_set_pointer:message.Ground_detect_request_msg.command_key)
  2393. }
  2394. inline ::std::string* Ground_detect_request_msg::mutable_command_key() {
  2395. set_has_command_key();
  2396. // @@protoc_insertion_point(field_mutable:message.Ground_detect_request_msg.command_key)
  2397. return command_key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2398. }
  2399. inline ::std::string* Ground_detect_request_msg::release_command_key() {
  2400. // @@protoc_insertion_point(field_release:message.Ground_detect_request_msg.command_key)
  2401. if (!has_command_key()) {
  2402. return NULL;
  2403. }
  2404. clear_has_command_key();
  2405. return command_key_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2406. }
  2407. inline void Ground_detect_request_msg::set_allocated_command_key(::std::string* command_key) {
  2408. if (command_key != NULL) {
  2409. set_has_command_key();
  2410. } else {
  2411. clear_has_command_key();
  2412. }
  2413. command_key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), command_key);
  2414. // @@protoc_insertion_point(field_set_allocated:message.Ground_detect_request_msg.command_key)
  2415. }
  2416. // required int32 terminal_id = 3;
  2417. inline bool Ground_detect_request_msg::has_terminal_id() const {
  2418. return (_has_bits_[0] & 0x00000004u) != 0;
  2419. }
  2420. inline void Ground_detect_request_msg::set_has_terminal_id() {
  2421. _has_bits_[0] |= 0x00000004u;
  2422. }
  2423. inline void Ground_detect_request_msg::clear_has_terminal_id() {
  2424. _has_bits_[0] &= ~0x00000004u;
  2425. }
  2426. inline void Ground_detect_request_msg::clear_terminal_id() {
  2427. terminal_id_ = 0;
  2428. clear_has_terminal_id();
  2429. }
  2430. inline ::google::protobuf::int32 Ground_detect_request_msg::terminal_id() const {
  2431. // @@protoc_insertion_point(field_get:message.Ground_detect_request_msg.terminal_id)
  2432. return terminal_id_;
  2433. }
  2434. inline void Ground_detect_request_msg::set_terminal_id(::google::protobuf::int32 value) {
  2435. set_has_terminal_id();
  2436. terminal_id_ = value;
  2437. // @@protoc_insertion_point(field_set:message.Ground_detect_request_msg.terminal_id)
  2438. }
  2439. // -------------------------------------------------------------------
  2440. // Ground_detect_response_msg
  2441. // required .message.Base_info base_info = 1;
  2442. inline bool Ground_detect_response_msg::has_base_info() const {
  2443. return (_has_bits_[0] & 0x00000002u) != 0;
  2444. }
  2445. inline void Ground_detect_response_msg::set_has_base_info() {
  2446. _has_bits_[0] |= 0x00000002u;
  2447. }
  2448. inline void Ground_detect_response_msg::clear_has_base_info() {
  2449. _has_bits_[0] &= ~0x00000002u;
  2450. }
  2451. inline const ::message::Base_info& Ground_detect_response_msg::_internal_base_info() const {
  2452. return *base_info_;
  2453. }
  2454. inline const ::message::Base_info& Ground_detect_response_msg::base_info() const {
  2455. const ::message::Base_info* p = base_info_;
  2456. // @@protoc_insertion_point(field_get:message.Ground_detect_response_msg.base_info)
  2457. return p != NULL ? *p : *reinterpret_cast<const ::message::Base_info*>(
  2458. &::message::_Base_info_default_instance_);
  2459. }
  2460. inline ::message::Base_info* Ground_detect_response_msg::release_base_info() {
  2461. // @@protoc_insertion_point(field_release:message.Ground_detect_response_msg.base_info)
  2462. clear_has_base_info();
  2463. ::message::Base_info* temp = base_info_;
  2464. base_info_ = NULL;
  2465. return temp;
  2466. }
  2467. inline ::message::Base_info* Ground_detect_response_msg::mutable_base_info() {
  2468. set_has_base_info();
  2469. if (base_info_ == NULL) {
  2470. auto* p = CreateMaybeMessage<::message::Base_info>(GetArenaNoVirtual());
  2471. base_info_ = p;
  2472. }
  2473. // @@protoc_insertion_point(field_mutable:message.Ground_detect_response_msg.base_info)
  2474. return base_info_;
  2475. }
  2476. inline void Ground_detect_response_msg::set_allocated_base_info(::message::Base_info* base_info) {
  2477. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  2478. if (message_arena == NULL) {
  2479. delete reinterpret_cast< ::google::protobuf::MessageLite*>(base_info_);
  2480. }
  2481. if (base_info) {
  2482. ::google::protobuf::Arena* submessage_arena = NULL;
  2483. if (message_arena != submessage_arena) {
  2484. base_info = ::google::protobuf::internal::GetOwnedMessage(
  2485. message_arena, base_info, submessage_arena);
  2486. }
  2487. set_has_base_info();
  2488. } else {
  2489. clear_has_base_info();
  2490. }
  2491. base_info_ = base_info;
  2492. // @@protoc_insertion_point(field_set_allocated:message.Ground_detect_response_msg.base_info)
  2493. }
  2494. // required string command_key = 2;
  2495. inline bool Ground_detect_response_msg::has_command_key() const {
  2496. return (_has_bits_[0] & 0x00000001u) != 0;
  2497. }
  2498. inline void Ground_detect_response_msg::set_has_command_key() {
  2499. _has_bits_[0] |= 0x00000001u;
  2500. }
  2501. inline void Ground_detect_response_msg::clear_has_command_key() {
  2502. _has_bits_[0] &= ~0x00000001u;
  2503. }
  2504. inline void Ground_detect_response_msg::clear_command_key() {
  2505. command_key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2506. clear_has_command_key();
  2507. }
  2508. inline const ::std::string& Ground_detect_response_msg::command_key() const {
  2509. // @@protoc_insertion_point(field_get:message.Ground_detect_response_msg.command_key)
  2510. return command_key_.GetNoArena();
  2511. }
  2512. inline void Ground_detect_response_msg::set_command_key(const ::std::string& value) {
  2513. set_has_command_key();
  2514. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  2515. // @@protoc_insertion_point(field_set:message.Ground_detect_response_msg.command_key)
  2516. }
  2517. #if LANG_CXX11
  2518. inline void Ground_detect_response_msg::set_command_key(::std::string&& value) {
  2519. set_has_command_key();
  2520. command_key_.SetNoArena(
  2521. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  2522. // @@protoc_insertion_point(field_set_rvalue:message.Ground_detect_response_msg.command_key)
  2523. }
  2524. #endif
  2525. inline void Ground_detect_response_msg::set_command_key(const char* value) {
  2526. GOOGLE_DCHECK(value != NULL);
  2527. set_has_command_key();
  2528. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  2529. // @@protoc_insertion_point(field_set_char:message.Ground_detect_response_msg.command_key)
  2530. }
  2531. inline void Ground_detect_response_msg::set_command_key(const char* value, size_t size) {
  2532. set_has_command_key();
  2533. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  2534. ::std::string(reinterpret_cast<const char*>(value), size));
  2535. // @@protoc_insertion_point(field_set_pointer:message.Ground_detect_response_msg.command_key)
  2536. }
  2537. inline ::std::string* Ground_detect_response_msg::mutable_command_key() {
  2538. set_has_command_key();
  2539. // @@protoc_insertion_point(field_mutable:message.Ground_detect_response_msg.command_key)
  2540. return command_key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2541. }
  2542. inline ::std::string* Ground_detect_response_msg::release_command_key() {
  2543. // @@protoc_insertion_point(field_release:message.Ground_detect_response_msg.command_key)
  2544. if (!has_command_key()) {
  2545. return NULL;
  2546. }
  2547. clear_has_command_key();
  2548. return command_key_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2549. }
  2550. inline void Ground_detect_response_msg::set_allocated_command_key(::std::string* command_key) {
  2551. if (command_key != NULL) {
  2552. set_has_command_key();
  2553. } else {
  2554. clear_has_command_key();
  2555. }
  2556. command_key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), command_key);
  2557. // @@protoc_insertion_point(field_set_allocated:message.Ground_detect_response_msg.command_key)
  2558. }
  2559. // required int32 terminal_id = 3;
  2560. inline bool Ground_detect_response_msg::has_terminal_id() const {
  2561. return (_has_bits_[0] & 0x00000010u) != 0;
  2562. }
  2563. inline void Ground_detect_response_msg::set_has_terminal_id() {
  2564. _has_bits_[0] |= 0x00000010u;
  2565. }
  2566. inline void Ground_detect_response_msg::clear_has_terminal_id() {
  2567. _has_bits_[0] &= ~0x00000010u;
  2568. }
  2569. inline void Ground_detect_response_msg::clear_terminal_id() {
  2570. terminal_id_ = 0;
  2571. clear_has_terminal_id();
  2572. }
  2573. inline ::google::protobuf::int32 Ground_detect_response_msg::terminal_id() const {
  2574. // @@protoc_insertion_point(field_get:message.Ground_detect_response_msg.terminal_id)
  2575. return terminal_id_;
  2576. }
  2577. inline void Ground_detect_response_msg::set_terminal_id(::google::protobuf::int32 value) {
  2578. set_has_terminal_id();
  2579. terminal_id_ = value;
  2580. // @@protoc_insertion_point(field_set:message.Ground_detect_response_msg.terminal_id)
  2581. }
  2582. // optional .message.Locate_information locate_information = 4;
  2583. inline bool Ground_detect_response_msg::has_locate_information() const {
  2584. return (_has_bits_[0] & 0x00000004u) != 0;
  2585. }
  2586. inline void Ground_detect_response_msg::set_has_locate_information() {
  2587. _has_bits_[0] |= 0x00000004u;
  2588. }
  2589. inline void Ground_detect_response_msg::clear_has_locate_information() {
  2590. _has_bits_[0] &= ~0x00000004u;
  2591. }
  2592. inline const ::message::Locate_information& Ground_detect_response_msg::_internal_locate_information() const {
  2593. return *locate_information_;
  2594. }
  2595. inline const ::message::Locate_information& Ground_detect_response_msg::locate_information() const {
  2596. const ::message::Locate_information* p = locate_information_;
  2597. // @@protoc_insertion_point(field_get:message.Ground_detect_response_msg.locate_information)
  2598. return p != NULL ? *p : *reinterpret_cast<const ::message::Locate_information*>(
  2599. &::message::_Locate_information_default_instance_);
  2600. }
  2601. inline ::message::Locate_information* Ground_detect_response_msg::release_locate_information() {
  2602. // @@protoc_insertion_point(field_release:message.Ground_detect_response_msg.locate_information)
  2603. clear_has_locate_information();
  2604. ::message::Locate_information* temp = locate_information_;
  2605. locate_information_ = NULL;
  2606. return temp;
  2607. }
  2608. inline ::message::Locate_information* Ground_detect_response_msg::mutable_locate_information() {
  2609. set_has_locate_information();
  2610. if (locate_information_ == NULL) {
  2611. auto* p = CreateMaybeMessage<::message::Locate_information>(GetArenaNoVirtual());
  2612. locate_information_ = p;
  2613. }
  2614. // @@protoc_insertion_point(field_mutable:message.Ground_detect_response_msg.locate_information)
  2615. return locate_information_;
  2616. }
  2617. inline void Ground_detect_response_msg::set_allocated_locate_information(::message::Locate_information* locate_information) {
  2618. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  2619. if (message_arena == NULL) {
  2620. delete reinterpret_cast< ::google::protobuf::MessageLite*>(locate_information_);
  2621. }
  2622. if (locate_information) {
  2623. ::google::protobuf::Arena* submessage_arena = NULL;
  2624. if (message_arena != submessage_arena) {
  2625. locate_information = ::google::protobuf::internal::GetOwnedMessage(
  2626. message_arena, locate_information, submessage_arena);
  2627. }
  2628. set_has_locate_information();
  2629. } else {
  2630. clear_has_locate_information();
  2631. }
  2632. locate_information_ = locate_information;
  2633. // @@protoc_insertion_point(field_set_allocated:message.Ground_detect_response_msg.locate_information)
  2634. }
  2635. // required .message.Error_manager error_manager = 5;
  2636. inline bool Ground_detect_response_msg::has_error_manager() const {
  2637. return (_has_bits_[0] & 0x00000008u) != 0;
  2638. }
  2639. inline void Ground_detect_response_msg::set_has_error_manager() {
  2640. _has_bits_[0] |= 0x00000008u;
  2641. }
  2642. inline void Ground_detect_response_msg::clear_has_error_manager() {
  2643. _has_bits_[0] &= ~0x00000008u;
  2644. }
  2645. inline const ::message::Error_manager& Ground_detect_response_msg::_internal_error_manager() const {
  2646. return *error_manager_;
  2647. }
  2648. inline const ::message::Error_manager& Ground_detect_response_msg::error_manager() const {
  2649. const ::message::Error_manager* p = error_manager_;
  2650. // @@protoc_insertion_point(field_get:message.Ground_detect_response_msg.error_manager)
  2651. return p != NULL ? *p : *reinterpret_cast<const ::message::Error_manager*>(
  2652. &::message::_Error_manager_default_instance_);
  2653. }
  2654. inline ::message::Error_manager* Ground_detect_response_msg::release_error_manager() {
  2655. // @@protoc_insertion_point(field_release:message.Ground_detect_response_msg.error_manager)
  2656. clear_has_error_manager();
  2657. ::message::Error_manager* temp = error_manager_;
  2658. error_manager_ = NULL;
  2659. return temp;
  2660. }
  2661. inline ::message::Error_manager* Ground_detect_response_msg::mutable_error_manager() {
  2662. set_has_error_manager();
  2663. if (error_manager_ == NULL) {
  2664. auto* p = CreateMaybeMessage<::message::Error_manager>(GetArenaNoVirtual());
  2665. error_manager_ = p;
  2666. }
  2667. // @@protoc_insertion_point(field_mutable:message.Ground_detect_response_msg.error_manager)
  2668. return error_manager_;
  2669. }
  2670. inline void Ground_detect_response_msg::set_allocated_error_manager(::message::Error_manager* error_manager) {
  2671. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  2672. if (message_arena == NULL) {
  2673. delete reinterpret_cast< ::google::protobuf::MessageLite*>(error_manager_);
  2674. }
  2675. if (error_manager) {
  2676. ::google::protobuf::Arena* submessage_arena = NULL;
  2677. if (message_arena != submessage_arena) {
  2678. error_manager = ::google::protobuf::internal::GetOwnedMessage(
  2679. message_arena, error_manager, submessage_arena);
  2680. }
  2681. set_has_error_manager();
  2682. } else {
  2683. clear_has_error_manager();
  2684. }
  2685. error_manager_ = error_manager;
  2686. // @@protoc_insertion_point(field_set_allocated:message.Ground_detect_response_msg.error_manager)
  2687. }
  2688. // -------------------------------------------------------------------
  2689. // Ground_status_msg
  2690. // required .message.Base_info base_info = 1;
  2691. inline bool Ground_status_msg::has_base_info() const {
  2692. return (_has_bits_[0] & 0x00000001u) != 0;
  2693. }
  2694. inline void Ground_status_msg::set_has_base_info() {
  2695. _has_bits_[0] |= 0x00000001u;
  2696. }
  2697. inline void Ground_status_msg::clear_has_base_info() {
  2698. _has_bits_[0] &= ~0x00000001u;
  2699. }
  2700. inline const ::message::Base_info& Ground_status_msg::_internal_base_info() const {
  2701. return *base_info_;
  2702. }
  2703. inline const ::message::Base_info& Ground_status_msg::base_info() const {
  2704. const ::message::Base_info* p = base_info_;
  2705. // @@protoc_insertion_point(field_get:message.Ground_status_msg.base_info)
  2706. return p != NULL ? *p : *reinterpret_cast<const ::message::Base_info*>(
  2707. &::message::_Base_info_default_instance_);
  2708. }
  2709. inline ::message::Base_info* Ground_status_msg::release_base_info() {
  2710. // @@protoc_insertion_point(field_release:message.Ground_status_msg.base_info)
  2711. clear_has_base_info();
  2712. ::message::Base_info* temp = base_info_;
  2713. base_info_ = NULL;
  2714. return temp;
  2715. }
  2716. inline ::message::Base_info* Ground_status_msg::mutable_base_info() {
  2717. set_has_base_info();
  2718. if (base_info_ == NULL) {
  2719. auto* p = CreateMaybeMessage<::message::Base_info>(GetArenaNoVirtual());
  2720. base_info_ = p;
  2721. }
  2722. // @@protoc_insertion_point(field_mutable:message.Ground_status_msg.base_info)
  2723. return base_info_;
  2724. }
  2725. inline void Ground_status_msg::set_allocated_base_info(::message::Base_info* base_info) {
  2726. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  2727. if (message_arena == NULL) {
  2728. delete reinterpret_cast< ::google::protobuf::MessageLite*>(base_info_);
  2729. }
  2730. if (base_info) {
  2731. ::google::protobuf::Arena* submessage_arena = NULL;
  2732. if (message_arena != submessage_arena) {
  2733. base_info = ::google::protobuf::internal::GetOwnedMessage(
  2734. message_arena, base_info, submessage_arena);
  2735. }
  2736. set_has_base_info();
  2737. } else {
  2738. clear_has_base_info();
  2739. }
  2740. base_info_ = base_info;
  2741. // @@protoc_insertion_point(field_set_allocated:message.Ground_status_msg.base_info)
  2742. }
  2743. // required int32 terminal_id = 2;
  2744. inline bool Ground_status_msg::has_terminal_id() const {
  2745. return (_has_bits_[0] & 0x00000008u) != 0;
  2746. }
  2747. inline void Ground_status_msg::set_has_terminal_id() {
  2748. _has_bits_[0] |= 0x00000008u;
  2749. }
  2750. inline void Ground_status_msg::clear_has_terminal_id() {
  2751. _has_bits_[0] &= ~0x00000008u;
  2752. }
  2753. inline void Ground_status_msg::clear_terminal_id() {
  2754. terminal_id_ = 0;
  2755. clear_has_terminal_id();
  2756. }
  2757. inline ::google::protobuf::int32 Ground_status_msg::terminal_id() const {
  2758. // @@protoc_insertion_point(field_get:message.Ground_status_msg.terminal_id)
  2759. return terminal_id_;
  2760. }
  2761. inline void Ground_status_msg::set_terminal_id(::google::protobuf::int32 value) {
  2762. set_has_terminal_id();
  2763. terminal_id_ = value;
  2764. // @@protoc_insertion_point(field_set:message.Ground_status_msg.terminal_id)
  2765. }
  2766. // required .message.Wanji_manager_status wanji_manager_status = 3;
  2767. inline bool Ground_status_msg::has_wanji_manager_status() const {
  2768. return (_has_bits_[0] & 0x00000010u) != 0;
  2769. }
  2770. inline void Ground_status_msg::set_has_wanji_manager_status() {
  2771. _has_bits_[0] |= 0x00000010u;
  2772. }
  2773. inline void Ground_status_msg::clear_has_wanji_manager_status() {
  2774. _has_bits_[0] &= ~0x00000010u;
  2775. }
  2776. inline void Ground_status_msg::clear_wanji_manager_status() {
  2777. wanji_manager_status_ = 0;
  2778. clear_has_wanji_manager_status();
  2779. }
  2780. inline ::message::Wanji_manager_status Ground_status_msg::wanji_manager_status() const {
  2781. // @@protoc_insertion_point(field_get:message.Ground_status_msg.wanji_manager_status)
  2782. return static_cast< ::message::Wanji_manager_status >(wanji_manager_status_);
  2783. }
  2784. inline void Ground_status_msg::set_wanji_manager_status(::message::Wanji_manager_status value) {
  2785. assert(::message::Wanji_manager_status_IsValid(value));
  2786. set_has_wanji_manager_status();
  2787. wanji_manager_status_ = value;
  2788. // @@protoc_insertion_point(field_set:message.Ground_status_msg.wanji_manager_status)
  2789. }
  2790. // repeated .message.Wanji_lidar_device_status wanji_lidar_device_status = 4;
  2791. inline int Ground_status_msg::wanji_lidar_device_status_size() const {
  2792. return wanji_lidar_device_status_.size();
  2793. }
  2794. inline void Ground_status_msg::clear_wanji_lidar_device_status() {
  2795. wanji_lidar_device_status_.Clear();
  2796. }
  2797. inline ::message::Wanji_lidar_device_status Ground_status_msg::wanji_lidar_device_status(int index) const {
  2798. // @@protoc_insertion_point(field_get:message.Ground_status_msg.wanji_lidar_device_status)
  2799. return static_cast< ::message::Wanji_lidar_device_status >(wanji_lidar_device_status_.Get(index));
  2800. }
  2801. inline void Ground_status_msg::set_wanji_lidar_device_status(int index, ::message::Wanji_lidar_device_status value) {
  2802. assert(::message::Wanji_lidar_device_status_IsValid(value));
  2803. wanji_lidar_device_status_.Set(index, value);
  2804. // @@protoc_insertion_point(field_set:message.Ground_status_msg.wanji_lidar_device_status)
  2805. }
  2806. inline void Ground_status_msg::add_wanji_lidar_device_status(::message::Wanji_lidar_device_status value) {
  2807. assert(::message::Wanji_lidar_device_status_IsValid(value));
  2808. wanji_lidar_device_status_.Add(value);
  2809. // @@protoc_insertion_point(field_add:message.Ground_status_msg.wanji_lidar_device_status)
  2810. }
  2811. inline const ::google::protobuf::RepeatedField<int>&
  2812. Ground_status_msg::wanji_lidar_device_status() const {
  2813. // @@protoc_insertion_point(field_list:message.Ground_status_msg.wanji_lidar_device_status)
  2814. return wanji_lidar_device_status_;
  2815. }
  2816. inline ::google::protobuf::RepeatedField<int>*
  2817. Ground_status_msg::mutable_wanji_lidar_device_status() {
  2818. // @@protoc_insertion_point(field_mutable_list:message.Ground_status_msg.wanji_lidar_device_status)
  2819. return &wanji_lidar_device_status_;
  2820. }
  2821. // required .message.Region_worker_status region_worker_status = 5;
  2822. inline bool Ground_status_msg::has_region_worker_status() const {
  2823. return (_has_bits_[0] & 0x00000020u) != 0;
  2824. }
  2825. inline void Ground_status_msg::set_has_region_worker_status() {
  2826. _has_bits_[0] |= 0x00000020u;
  2827. }
  2828. inline void Ground_status_msg::clear_has_region_worker_status() {
  2829. _has_bits_[0] &= ~0x00000020u;
  2830. }
  2831. inline void Ground_status_msg::clear_region_worker_status() {
  2832. region_worker_status_ = 0;
  2833. clear_has_region_worker_status();
  2834. }
  2835. inline ::message::Region_worker_status Ground_status_msg::region_worker_status() const {
  2836. // @@protoc_insertion_point(field_get:message.Ground_status_msg.region_worker_status)
  2837. return static_cast< ::message::Region_worker_status >(region_worker_status_);
  2838. }
  2839. inline void Ground_status_msg::set_region_worker_status(::message::Region_worker_status value) {
  2840. assert(::message::Region_worker_status_IsValid(value));
  2841. set_has_region_worker_status();
  2842. region_worker_status_ = value;
  2843. // @@protoc_insertion_point(field_set:message.Ground_status_msg.region_worker_status)
  2844. }
  2845. // required .message.Locate_information locate_information_realtime = 6;
  2846. inline bool Ground_status_msg::has_locate_information_realtime() const {
  2847. return (_has_bits_[0] & 0x00000002u) != 0;
  2848. }
  2849. inline void Ground_status_msg::set_has_locate_information_realtime() {
  2850. _has_bits_[0] |= 0x00000002u;
  2851. }
  2852. inline void Ground_status_msg::clear_has_locate_information_realtime() {
  2853. _has_bits_[0] &= ~0x00000002u;
  2854. }
  2855. inline const ::message::Locate_information& Ground_status_msg::_internal_locate_information_realtime() const {
  2856. return *locate_information_realtime_;
  2857. }
  2858. inline const ::message::Locate_information& Ground_status_msg::locate_information_realtime() const {
  2859. const ::message::Locate_information* p = locate_information_realtime_;
  2860. // @@protoc_insertion_point(field_get:message.Ground_status_msg.locate_information_realtime)
  2861. return p != NULL ? *p : *reinterpret_cast<const ::message::Locate_information*>(
  2862. &::message::_Locate_information_default_instance_);
  2863. }
  2864. inline ::message::Locate_information* Ground_status_msg::release_locate_information_realtime() {
  2865. // @@protoc_insertion_point(field_release:message.Ground_status_msg.locate_information_realtime)
  2866. clear_has_locate_information_realtime();
  2867. ::message::Locate_information* temp = locate_information_realtime_;
  2868. locate_information_realtime_ = NULL;
  2869. return temp;
  2870. }
  2871. inline ::message::Locate_information* Ground_status_msg::mutable_locate_information_realtime() {
  2872. set_has_locate_information_realtime();
  2873. if (locate_information_realtime_ == NULL) {
  2874. auto* p = CreateMaybeMessage<::message::Locate_information>(GetArenaNoVirtual());
  2875. locate_information_realtime_ = p;
  2876. }
  2877. // @@protoc_insertion_point(field_mutable:message.Ground_status_msg.locate_information_realtime)
  2878. return locate_information_realtime_;
  2879. }
  2880. inline void Ground_status_msg::set_allocated_locate_information_realtime(::message::Locate_information* locate_information_realtime) {
  2881. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  2882. if (message_arena == NULL) {
  2883. delete reinterpret_cast< ::google::protobuf::MessageLite*>(locate_information_realtime_);
  2884. }
  2885. if (locate_information_realtime) {
  2886. ::google::protobuf::Arena* submessage_arena = NULL;
  2887. if (message_arena != submessage_arena) {
  2888. locate_information_realtime = ::google::protobuf::internal::GetOwnedMessage(
  2889. message_arena, locate_information_realtime, submessage_arena);
  2890. }
  2891. set_has_locate_information_realtime();
  2892. } else {
  2893. clear_has_locate_information_realtime();
  2894. }
  2895. locate_information_realtime_ = locate_information_realtime;
  2896. // @@protoc_insertion_point(field_set_allocated:message.Ground_status_msg.locate_information_realtime)
  2897. }
  2898. // required .message.Ground_statu ground_status = 7;
  2899. inline bool Ground_status_msg::has_ground_status() const {
  2900. return (_has_bits_[0] & 0x00000040u) != 0;
  2901. }
  2902. inline void Ground_status_msg::set_has_ground_status() {
  2903. _has_bits_[0] |= 0x00000040u;
  2904. }
  2905. inline void Ground_status_msg::clear_has_ground_status() {
  2906. _has_bits_[0] &= ~0x00000040u;
  2907. }
  2908. inline void Ground_status_msg::clear_ground_status() {
  2909. ground_status_ = 0;
  2910. clear_has_ground_status();
  2911. }
  2912. inline ::message::Ground_statu Ground_status_msg::ground_status() const {
  2913. // @@protoc_insertion_point(field_get:message.Ground_status_msg.ground_status)
  2914. return static_cast< ::message::Ground_statu >(ground_status_);
  2915. }
  2916. inline void Ground_status_msg::set_ground_status(::message::Ground_statu value) {
  2917. assert(::message::Ground_statu_IsValid(value));
  2918. set_has_ground_status();
  2919. ground_status_ = value;
  2920. // @@protoc_insertion_point(field_set:message.Ground_status_msg.ground_status)
  2921. }
  2922. // required int32 border_status = 8;
  2923. inline bool Ground_status_msg::has_border_status() const {
  2924. return (_has_bits_[0] & 0x00000080u) != 0;
  2925. }
  2926. inline void Ground_status_msg::set_has_border_status() {
  2927. _has_bits_[0] |= 0x00000080u;
  2928. }
  2929. inline void Ground_status_msg::clear_has_border_status() {
  2930. _has_bits_[0] &= ~0x00000080u;
  2931. }
  2932. inline void Ground_status_msg::clear_border_status() {
  2933. border_status_ = 0;
  2934. clear_has_border_status();
  2935. }
  2936. inline ::google::protobuf::int32 Ground_status_msg::border_status() const {
  2937. // @@protoc_insertion_point(field_get:message.Ground_status_msg.border_status)
  2938. return border_status_;
  2939. }
  2940. inline void Ground_status_msg::set_border_status(::google::protobuf::int32 value) {
  2941. set_has_border_status();
  2942. border_status_ = value;
  2943. // @@protoc_insertion_point(field_set:message.Ground_status_msg.border_status)
  2944. }
  2945. // required .message.Error_manager error_manager = 9;
  2946. inline bool Ground_status_msg::has_error_manager() const {
  2947. return (_has_bits_[0] & 0x00000004u) != 0;
  2948. }
  2949. inline void Ground_status_msg::set_has_error_manager() {
  2950. _has_bits_[0] |= 0x00000004u;
  2951. }
  2952. inline void Ground_status_msg::clear_has_error_manager() {
  2953. _has_bits_[0] &= ~0x00000004u;
  2954. }
  2955. inline const ::message::Error_manager& Ground_status_msg::_internal_error_manager() const {
  2956. return *error_manager_;
  2957. }
  2958. inline const ::message::Error_manager& Ground_status_msg::error_manager() const {
  2959. const ::message::Error_manager* p = error_manager_;
  2960. // @@protoc_insertion_point(field_get:message.Ground_status_msg.error_manager)
  2961. return p != NULL ? *p : *reinterpret_cast<const ::message::Error_manager*>(
  2962. &::message::_Error_manager_default_instance_);
  2963. }
  2964. inline ::message::Error_manager* Ground_status_msg::release_error_manager() {
  2965. // @@protoc_insertion_point(field_release:message.Ground_status_msg.error_manager)
  2966. clear_has_error_manager();
  2967. ::message::Error_manager* temp = error_manager_;
  2968. error_manager_ = NULL;
  2969. return temp;
  2970. }
  2971. inline ::message::Error_manager* Ground_status_msg::mutable_error_manager() {
  2972. set_has_error_manager();
  2973. if (error_manager_ == NULL) {
  2974. auto* p = CreateMaybeMessage<::message::Error_manager>(GetArenaNoVirtual());
  2975. error_manager_ = p;
  2976. }
  2977. // @@protoc_insertion_point(field_mutable:message.Ground_status_msg.error_manager)
  2978. return error_manager_;
  2979. }
  2980. inline void Ground_status_msg::set_allocated_error_manager(::message::Error_manager* error_manager) {
  2981. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  2982. if (message_arena == NULL) {
  2983. delete reinterpret_cast< ::google::protobuf::MessageLite*>(error_manager_);
  2984. }
  2985. if (error_manager) {
  2986. ::google::protobuf::Arena* submessage_arena = NULL;
  2987. if (message_arena != submessage_arena) {
  2988. error_manager = ::google::protobuf::internal::GetOwnedMessage(
  2989. message_arena, error_manager, submessage_arena);
  2990. }
  2991. set_has_error_manager();
  2992. } else {
  2993. clear_has_error_manager();
  2994. }
  2995. error_manager_ = error_manager;
  2996. // @@protoc_insertion_point(field_set_allocated:message.Ground_status_msg.error_manager)
  2997. }
  2998. // repeated .message.Cloud_coordinate cloud = 10;
  2999. inline int Ground_status_msg::cloud_size() const {
  3000. return cloud_.size();
  3001. }
  3002. inline void Ground_status_msg::clear_cloud() {
  3003. cloud_.Clear();
  3004. }
  3005. inline ::message::Cloud_coordinate* Ground_status_msg::mutable_cloud(int index) {
  3006. // @@protoc_insertion_point(field_mutable:message.Ground_status_msg.cloud)
  3007. return cloud_.Mutable(index);
  3008. }
  3009. inline ::google::protobuf::RepeatedPtrField< ::message::Cloud_coordinate >*
  3010. Ground_status_msg::mutable_cloud() {
  3011. // @@protoc_insertion_point(field_mutable_list:message.Ground_status_msg.cloud)
  3012. return &cloud_;
  3013. }
  3014. inline const ::message::Cloud_coordinate& Ground_status_msg::cloud(int index) const {
  3015. // @@protoc_insertion_point(field_get:message.Ground_status_msg.cloud)
  3016. return cloud_.Get(index);
  3017. }
  3018. inline ::message::Cloud_coordinate* Ground_status_msg::add_cloud() {
  3019. // @@protoc_insertion_point(field_add:message.Ground_status_msg.cloud)
  3020. return cloud_.Add();
  3021. }
  3022. inline const ::google::protobuf::RepeatedPtrField< ::message::Cloud_coordinate >&
  3023. Ground_status_msg::cloud() const {
  3024. // @@protoc_insertion_point(field_list:message.Ground_status_msg.cloud)
  3025. return cloud_;
  3026. }
  3027. // -------------------------------------------------------------------
  3028. // Cloud_coordinate
  3029. // required float x = 1;
  3030. inline bool Cloud_coordinate::has_x() const {
  3031. return (_has_bits_[0] & 0x00000001u) != 0;
  3032. }
  3033. inline void Cloud_coordinate::set_has_x() {
  3034. _has_bits_[0] |= 0x00000001u;
  3035. }
  3036. inline void Cloud_coordinate::clear_has_x() {
  3037. _has_bits_[0] &= ~0x00000001u;
  3038. }
  3039. inline void Cloud_coordinate::clear_x() {
  3040. x_ = 0;
  3041. clear_has_x();
  3042. }
  3043. inline float Cloud_coordinate::x() const {
  3044. // @@protoc_insertion_point(field_get:message.Cloud_coordinate.x)
  3045. return x_;
  3046. }
  3047. inline void Cloud_coordinate::set_x(float value) {
  3048. set_has_x();
  3049. x_ = value;
  3050. // @@protoc_insertion_point(field_set:message.Cloud_coordinate.x)
  3051. }
  3052. // required float y = 2;
  3053. inline bool Cloud_coordinate::has_y() const {
  3054. return (_has_bits_[0] & 0x00000002u) != 0;
  3055. }
  3056. inline void Cloud_coordinate::set_has_y() {
  3057. _has_bits_[0] |= 0x00000002u;
  3058. }
  3059. inline void Cloud_coordinate::clear_has_y() {
  3060. _has_bits_[0] &= ~0x00000002u;
  3061. }
  3062. inline void Cloud_coordinate::clear_y() {
  3063. y_ = 0;
  3064. clear_has_y();
  3065. }
  3066. inline float Cloud_coordinate::y() const {
  3067. // @@protoc_insertion_point(field_get:message.Cloud_coordinate.y)
  3068. return y_;
  3069. }
  3070. inline void Cloud_coordinate::set_y(float value) {
  3071. set_has_y();
  3072. y_ = value;
  3073. // @@protoc_insertion_point(field_set:message.Cloud_coordinate.y)
  3074. }
  3075. // required float z = 3;
  3076. inline bool Cloud_coordinate::has_z() const {
  3077. return (_has_bits_[0] & 0x00000004u) != 0;
  3078. }
  3079. inline void Cloud_coordinate::set_has_z() {
  3080. _has_bits_[0] |= 0x00000004u;
  3081. }
  3082. inline void Cloud_coordinate::clear_has_z() {
  3083. _has_bits_[0] &= ~0x00000004u;
  3084. }
  3085. inline void Cloud_coordinate::clear_z() {
  3086. z_ = 0;
  3087. clear_has_z();
  3088. }
  3089. inline float Cloud_coordinate::z() const {
  3090. // @@protoc_insertion_point(field_get:message.Cloud_coordinate.z)
  3091. return z_;
  3092. }
  3093. inline void Cloud_coordinate::set_z(float value) {
  3094. set_has_z();
  3095. z_ = value;
  3096. // @@protoc_insertion_point(field_set:message.Cloud_coordinate.z)
  3097. }
  3098. // -------------------------------------------------------------------
  3099. // Cloud_type
  3100. // required int32 type = 1;
  3101. inline bool Cloud_type::has_type() const {
  3102. return (_has_bits_[0] & 0x00000001u) != 0;
  3103. }
  3104. inline void Cloud_type::set_has_type() {
  3105. _has_bits_[0] |= 0x00000001u;
  3106. }
  3107. inline void Cloud_type::clear_has_type() {
  3108. _has_bits_[0] &= ~0x00000001u;
  3109. }
  3110. inline void Cloud_type::clear_type() {
  3111. type_ = 0;
  3112. clear_has_type();
  3113. }
  3114. inline ::google::protobuf::int32 Cloud_type::type() const {
  3115. // @@protoc_insertion_point(field_get:message.Cloud_type.type)
  3116. return type_;
  3117. }
  3118. inline void Cloud_type::set_type(::google::protobuf::int32 value) {
  3119. set_has_type();
  3120. type_ = value;
  3121. // @@protoc_insertion_point(field_set:message.Cloud_type.type)
  3122. }
  3123. // -------------------------------------------------------------------
  3124. // Locate_sift_request_msg
  3125. // required .message.Base_info base_info = 1;
  3126. inline bool Locate_sift_request_msg::has_base_info() const {
  3127. return (_has_bits_[0] & 0x00000002u) != 0;
  3128. }
  3129. inline void Locate_sift_request_msg::set_has_base_info() {
  3130. _has_bits_[0] |= 0x00000002u;
  3131. }
  3132. inline void Locate_sift_request_msg::clear_has_base_info() {
  3133. _has_bits_[0] &= ~0x00000002u;
  3134. }
  3135. inline const ::message::Base_info& Locate_sift_request_msg::_internal_base_info() const {
  3136. return *base_info_;
  3137. }
  3138. inline const ::message::Base_info& Locate_sift_request_msg::base_info() const {
  3139. const ::message::Base_info* p = base_info_;
  3140. // @@protoc_insertion_point(field_get:message.Locate_sift_request_msg.base_info)
  3141. return p != NULL ? *p : *reinterpret_cast<const ::message::Base_info*>(
  3142. &::message::_Base_info_default_instance_);
  3143. }
  3144. inline ::message::Base_info* Locate_sift_request_msg::release_base_info() {
  3145. // @@protoc_insertion_point(field_release:message.Locate_sift_request_msg.base_info)
  3146. clear_has_base_info();
  3147. ::message::Base_info* temp = base_info_;
  3148. base_info_ = NULL;
  3149. return temp;
  3150. }
  3151. inline ::message::Base_info* Locate_sift_request_msg::mutable_base_info() {
  3152. set_has_base_info();
  3153. if (base_info_ == NULL) {
  3154. auto* p = CreateMaybeMessage<::message::Base_info>(GetArenaNoVirtual());
  3155. base_info_ = p;
  3156. }
  3157. // @@protoc_insertion_point(field_mutable:message.Locate_sift_request_msg.base_info)
  3158. return base_info_;
  3159. }
  3160. inline void Locate_sift_request_msg::set_allocated_base_info(::message::Base_info* base_info) {
  3161. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  3162. if (message_arena == NULL) {
  3163. delete reinterpret_cast< ::google::protobuf::MessageLite*>(base_info_);
  3164. }
  3165. if (base_info) {
  3166. ::google::protobuf::Arena* submessage_arena = NULL;
  3167. if (message_arena != submessage_arena) {
  3168. base_info = ::google::protobuf::internal::GetOwnedMessage(
  3169. message_arena, base_info, submessage_arena);
  3170. }
  3171. set_has_base_info();
  3172. } else {
  3173. clear_has_base_info();
  3174. }
  3175. base_info_ = base_info;
  3176. // @@protoc_insertion_point(field_set_allocated:message.Locate_sift_request_msg.base_info)
  3177. }
  3178. // required string command_key = 2;
  3179. inline bool Locate_sift_request_msg::has_command_key() const {
  3180. return (_has_bits_[0] & 0x00000001u) != 0;
  3181. }
  3182. inline void Locate_sift_request_msg::set_has_command_key() {
  3183. _has_bits_[0] |= 0x00000001u;
  3184. }
  3185. inline void Locate_sift_request_msg::clear_has_command_key() {
  3186. _has_bits_[0] &= ~0x00000001u;
  3187. }
  3188. inline void Locate_sift_request_msg::clear_command_key() {
  3189. command_key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3190. clear_has_command_key();
  3191. }
  3192. inline const ::std::string& Locate_sift_request_msg::command_key() const {
  3193. // @@protoc_insertion_point(field_get:message.Locate_sift_request_msg.command_key)
  3194. return command_key_.GetNoArena();
  3195. }
  3196. inline void Locate_sift_request_msg::set_command_key(const ::std::string& value) {
  3197. set_has_command_key();
  3198. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  3199. // @@protoc_insertion_point(field_set:message.Locate_sift_request_msg.command_key)
  3200. }
  3201. #if LANG_CXX11
  3202. inline void Locate_sift_request_msg::set_command_key(::std::string&& value) {
  3203. set_has_command_key();
  3204. command_key_.SetNoArena(
  3205. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  3206. // @@protoc_insertion_point(field_set_rvalue:message.Locate_sift_request_msg.command_key)
  3207. }
  3208. #endif
  3209. inline void Locate_sift_request_msg::set_command_key(const char* value) {
  3210. GOOGLE_DCHECK(value != NULL);
  3211. set_has_command_key();
  3212. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  3213. // @@protoc_insertion_point(field_set_char:message.Locate_sift_request_msg.command_key)
  3214. }
  3215. inline void Locate_sift_request_msg::set_command_key(const char* value, size_t size) {
  3216. set_has_command_key();
  3217. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  3218. ::std::string(reinterpret_cast<const char*>(value), size));
  3219. // @@protoc_insertion_point(field_set_pointer:message.Locate_sift_request_msg.command_key)
  3220. }
  3221. inline ::std::string* Locate_sift_request_msg::mutable_command_key() {
  3222. set_has_command_key();
  3223. // @@protoc_insertion_point(field_mutable:message.Locate_sift_request_msg.command_key)
  3224. return command_key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3225. }
  3226. inline ::std::string* Locate_sift_request_msg::release_command_key() {
  3227. // @@protoc_insertion_point(field_release:message.Locate_sift_request_msg.command_key)
  3228. if (!has_command_key()) {
  3229. return NULL;
  3230. }
  3231. clear_has_command_key();
  3232. return command_key_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3233. }
  3234. inline void Locate_sift_request_msg::set_allocated_command_key(::std::string* command_key) {
  3235. if (command_key != NULL) {
  3236. set_has_command_key();
  3237. } else {
  3238. clear_has_command_key();
  3239. }
  3240. command_key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), command_key);
  3241. // @@protoc_insertion_point(field_set_allocated:message.Locate_sift_request_msg.command_key)
  3242. }
  3243. // required int32 terminal_id = 3;
  3244. inline bool Locate_sift_request_msg::has_terminal_id() const {
  3245. return (_has_bits_[0] & 0x00000004u) != 0;
  3246. }
  3247. inline void Locate_sift_request_msg::set_has_terminal_id() {
  3248. _has_bits_[0] |= 0x00000004u;
  3249. }
  3250. inline void Locate_sift_request_msg::clear_has_terminal_id() {
  3251. _has_bits_[0] &= ~0x00000004u;
  3252. }
  3253. inline void Locate_sift_request_msg::clear_terminal_id() {
  3254. terminal_id_ = 0;
  3255. clear_has_terminal_id();
  3256. }
  3257. inline ::google::protobuf::int32 Locate_sift_request_msg::terminal_id() const {
  3258. // @@protoc_insertion_point(field_get:message.Locate_sift_request_msg.terminal_id)
  3259. return terminal_id_;
  3260. }
  3261. inline void Locate_sift_request_msg::set_terminal_id(::google::protobuf::int32 value) {
  3262. set_has_terminal_id();
  3263. terminal_id_ = value;
  3264. // @@protoc_insertion_point(field_set:message.Locate_sift_request_msg.terminal_id)
  3265. }
  3266. // required int32 lidar_id = 4;
  3267. inline bool Locate_sift_request_msg::has_lidar_id() const {
  3268. return (_has_bits_[0] & 0x00000008u) != 0;
  3269. }
  3270. inline void Locate_sift_request_msg::set_has_lidar_id() {
  3271. _has_bits_[0] |= 0x00000008u;
  3272. }
  3273. inline void Locate_sift_request_msg::clear_has_lidar_id() {
  3274. _has_bits_[0] &= ~0x00000008u;
  3275. }
  3276. inline void Locate_sift_request_msg::clear_lidar_id() {
  3277. lidar_id_ = 0;
  3278. clear_has_lidar_id();
  3279. }
  3280. inline ::google::protobuf::int32 Locate_sift_request_msg::lidar_id() const {
  3281. // @@protoc_insertion_point(field_get:message.Locate_sift_request_msg.lidar_id)
  3282. return lidar_id_;
  3283. }
  3284. inline void Locate_sift_request_msg::set_lidar_id(::google::protobuf::int32 value) {
  3285. set_has_lidar_id();
  3286. lidar_id_ = value;
  3287. // @@protoc_insertion_point(field_set:message.Locate_sift_request_msg.lidar_id)
  3288. }
  3289. // repeated .message.Cloud_coordinate cloud_coordinates = 5;
  3290. inline int Locate_sift_request_msg::cloud_coordinates_size() const {
  3291. return cloud_coordinates_.size();
  3292. }
  3293. inline void Locate_sift_request_msg::clear_cloud_coordinates() {
  3294. cloud_coordinates_.Clear();
  3295. }
  3296. inline ::message::Cloud_coordinate* Locate_sift_request_msg::mutable_cloud_coordinates(int index) {
  3297. // @@protoc_insertion_point(field_mutable:message.Locate_sift_request_msg.cloud_coordinates)
  3298. return cloud_coordinates_.Mutable(index);
  3299. }
  3300. inline ::google::protobuf::RepeatedPtrField< ::message::Cloud_coordinate >*
  3301. Locate_sift_request_msg::mutable_cloud_coordinates() {
  3302. // @@protoc_insertion_point(field_mutable_list:message.Locate_sift_request_msg.cloud_coordinates)
  3303. return &cloud_coordinates_;
  3304. }
  3305. inline const ::message::Cloud_coordinate& Locate_sift_request_msg::cloud_coordinates(int index) const {
  3306. // @@protoc_insertion_point(field_get:message.Locate_sift_request_msg.cloud_coordinates)
  3307. return cloud_coordinates_.Get(index);
  3308. }
  3309. inline ::message::Cloud_coordinate* Locate_sift_request_msg::add_cloud_coordinates() {
  3310. // @@protoc_insertion_point(field_add:message.Locate_sift_request_msg.cloud_coordinates)
  3311. return cloud_coordinates_.Add();
  3312. }
  3313. inline const ::google::protobuf::RepeatedPtrField< ::message::Cloud_coordinate >&
  3314. Locate_sift_request_msg::cloud_coordinates() const {
  3315. // @@protoc_insertion_point(field_list:message.Locate_sift_request_msg.cloud_coordinates)
  3316. return cloud_coordinates_;
  3317. }
  3318. // -------------------------------------------------------------------
  3319. // Locate_sift_response_msg
  3320. // required .message.Base_info base_info = 1;
  3321. inline bool Locate_sift_response_msg::has_base_info() const {
  3322. return (_has_bits_[0] & 0x00000002u) != 0;
  3323. }
  3324. inline void Locate_sift_response_msg::set_has_base_info() {
  3325. _has_bits_[0] |= 0x00000002u;
  3326. }
  3327. inline void Locate_sift_response_msg::clear_has_base_info() {
  3328. _has_bits_[0] &= ~0x00000002u;
  3329. }
  3330. inline const ::message::Base_info& Locate_sift_response_msg::_internal_base_info() const {
  3331. return *base_info_;
  3332. }
  3333. inline const ::message::Base_info& Locate_sift_response_msg::base_info() const {
  3334. const ::message::Base_info* p = base_info_;
  3335. // @@protoc_insertion_point(field_get:message.Locate_sift_response_msg.base_info)
  3336. return p != NULL ? *p : *reinterpret_cast<const ::message::Base_info*>(
  3337. &::message::_Base_info_default_instance_);
  3338. }
  3339. inline ::message::Base_info* Locate_sift_response_msg::release_base_info() {
  3340. // @@protoc_insertion_point(field_release:message.Locate_sift_response_msg.base_info)
  3341. clear_has_base_info();
  3342. ::message::Base_info* temp = base_info_;
  3343. base_info_ = NULL;
  3344. return temp;
  3345. }
  3346. inline ::message::Base_info* Locate_sift_response_msg::mutable_base_info() {
  3347. set_has_base_info();
  3348. if (base_info_ == NULL) {
  3349. auto* p = CreateMaybeMessage<::message::Base_info>(GetArenaNoVirtual());
  3350. base_info_ = p;
  3351. }
  3352. // @@protoc_insertion_point(field_mutable:message.Locate_sift_response_msg.base_info)
  3353. return base_info_;
  3354. }
  3355. inline void Locate_sift_response_msg::set_allocated_base_info(::message::Base_info* base_info) {
  3356. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  3357. if (message_arena == NULL) {
  3358. delete reinterpret_cast< ::google::protobuf::MessageLite*>(base_info_);
  3359. }
  3360. if (base_info) {
  3361. ::google::protobuf::Arena* submessage_arena = NULL;
  3362. if (message_arena != submessage_arena) {
  3363. base_info = ::google::protobuf::internal::GetOwnedMessage(
  3364. message_arena, base_info, submessage_arena);
  3365. }
  3366. set_has_base_info();
  3367. } else {
  3368. clear_has_base_info();
  3369. }
  3370. base_info_ = base_info;
  3371. // @@protoc_insertion_point(field_set_allocated:message.Locate_sift_response_msg.base_info)
  3372. }
  3373. // required string command_key = 2;
  3374. inline bool Locate_sift_response_msg::has_command_key() const {
  3375. return (_has_bits_[0] & 0x00000001u) != 0;
  3376. }
  3377. inline void Locate_sift_response_msg::set_has_command_key() {
  3378. _has_bits_[0] |= 0x00000001u;
  3379. }
  3380. inline void Locate_sift_response_msg::clear_has_command_key() {
  3381. _has_bits_[0] &= ~0x00000001u;
  3382. }
  3383. inline void Locate_sift_response_msg::clear_command_key() {
  3384. command_key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3385. clear_has_command_key();
  3386. }
  3387. inline const ::std::string& Locate_sift_response_msg::command_key() const {
  3388. // @@protoc_insertion_point(field_get:message.Locate_sift_response_msg.command_key)
  3389. return command_key_.GetNoArena();
  3390. }
  3391. inline void Locate_sift_response_msg::set_command_key(const ::std::string& value) {
  3392. set_has_command_key();
  3393. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  3394. // @@protoc_insertion_point(field_set:message.Locate_sift_response_msg.command_key)
  3395. }
  3396. #if LANG_CXX11
  3397. inline void Locate_sift_response_msg::set_command_key(::std::string&& value) {
  3398. set_has_command_key();
  3399. command_key_.SetNoArena(
  3400. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  3401. // @@protoc_insertion_point(field_set_rvalue:message.Locate_sift_response_msg.command_key)
  3402. }
  3403. #endif
  3404. inline void Locate_sift_response_msg::set_command_key(const char* value) {
  3405. GOOGLE_DCHECK(value != NULL);
  3406. set_has_command_key();
  3407. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  3408. // @@protoc_insertion_point(field_set_char:message.Locate_sift_response_msg.command_key)
  3409. }
  3410. inline void Locate_sift_response_msg::set_command_key(const char* value, size_t size) {
  3411. set_has_command_key();
  3412. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  3413. ::std::string(reinterpret_cast<const char*>(value), size));
  3414. // @@protoc_insertion_point(field_set_pointer:message.Locate_sift_response_msg.command_key)
  3415. }
  3416. inline ::std::string* Locate_sift_response_msg::mutable_command_key() {
  3417. set_has_command_key();
  3418. // @@protoc_insertion_point(field_mutable:message.Locate_sift_response_msg.command_key)
  3419. return command_key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3420. }
  3421. inline ::std::string* Locate_sift_response_msg::release_command_key() {
  3422. // @@protoc_insertion_point(field_release:message.Locate_sift_response_msg.command_key)
  3423. if (!has_command_key()) {
  3424. return NULL;
  3425. }
  3426. clear_has_command_key();
  3427. return command_key_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3428. }
  3429. inline void Locate_sift_response_msg::set_allocated_command_key(::std::string* command_key) {
  3430. if (command_key != NULL) {
  3431. set_has_command_key();
  3432. } else {
  3433. clear_has_command_key();
  3434. }
  3435. command_key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), command_key);
  3436. // @@protoc_insertion_point(field_set_allocated:message.Locate_sift_response_msg.command_key)
  3437. }
  3438. // required int32 terminal_id = 3;
  3439. inline bool Locate_sift_response_msg::has_terminal_id() const {
  3440. return (_has_bits_[0] & 0x00000008u) != 0;
  3441. }
  3442. inline void Locate_sift_response_msg::set_has_terminal_id() {
  3443. _has_bits_[0] |= 0x00000008u;
  3444. }
  3445. inline void Locate_sift_response_msg::clear_has_terminal_id() {
  3446. _has_bits_[0] &= ~0x00000008u;
  3447. }
  3448. inline void Locate_sift_response_msg::clear_terminal_id() {
  3449. terminal_id_ = 0;
  3450. clear_has_terminal_id();
  3451. }
  3452. inline ::google::protobuf::int32 Locate_sift_response_msg::terminal_id() const {
  3453. // @@protoc_insertion_point(field_get:message.Locate_sift_response_msg.terminal_id)
  3454. return terminal_id_;
  3455. }
  3456. inline void Locate_sift_response_msg::set_terminal_id(::google::protobuf::int32 value) {
  3457. set_has_terminal_id();
  3458. terminal_id_ = value;
  3459. // @@protoc_insertion_point(field_set:message.Locate_sift_response_msg.terminal_id)
  3460. }
  3461. // required int32 lidar_id = 4;
  3462. inline bool Locate_sift_response_msg::has_lidar_id() const {
  3463. return (_has_bits_[0] & 0x00000010u) != 0;
  3464. }
  3465. inline void Locate_sift_response_msg::set_has_lidar_id() {
  3466. _has_bits_[0] |= 0x00000010u;
  3467. }
  3468. inline void Locate_sift_response_msg::clear_has_lidar_id() {
  3469. _has_bits_[0] &= ~0x00000010u;
  3470. }
  3471. inline void Locate_sift_response_msg::clear_lidar_id() {
  3472. lidar_id_ = 0;
  3473. clear_has_lidar_id();
  3474. }
  3475. inline ::google::protobuf::int32 Locate_sift_response_msg::lidar_id() const {
  3476. // @@protoc_insertion_point(field_get:message.Locate_sift_response_msg.lidar_id)
  3477. return lidar_id_;
  3478. }
  3479. inline void Locate_sift_response_msg::set_lidar_id(::google::protobuf::int32 value) {
  3480. set_has_lidar_id();
  3481. lidar_id_ = value;
  3482. // @@protoc_insertion_point(field_set:message.Locate_sift_response_msg.lidar_id)
  3483. }
  3484. // repeated .message.Cloud_type cloud_type = 5;
  3485. inline int Locate_sift_response_msg::cloud_type_size() const {
  3486. return cloud_type_.size();
  3487. }
  3488. inline void Locate_sift_response_msg::clear_cloud_type() {
  3489. cloud_type_.Clear();
  3490. }
  3491. inline ::message::Cloud_type* Locate_sift_response_msg::mutable_cloud_type(int index) {
  3492. // @@protoc_insertion_point(field_mutable:message.Locate_sift_response_msg.cloud_type)
  3493. return cloud_type_.Mutable(index);
  3494. }
  3495. inline ::google::protobuf::RepeatedPtrField< ::message::Cloud_type >*
  3496. Locate_sift_response_msg::mutable_cloud_type() {
  3497. // @@protoc_insertion_point(field_mutable_list:message.Locate_sift_response_msg.cloud_type)
  3498. return &cloud_type_;
  3499. }
  3500. inline const ::message::Cloud_type& Locate_sift_response_msg::cloud_type(int index) const {
  3501. // @@protoc_insertion_point(field_get:message.Locate_sift_response_msg.cloud_type)
  3502. return cloud_type_.Get(index);
  3503. }
  3504. inline ::message::Cloud_type* Locate_sift_response_msg::add_cloud_type() {
  3505. // @@protoc_insertion_point(field_add:message.Locate_sift_response_msg.cloud_type)
  3506. return cloud_type_.Add();
  3507. }
  3508. inline const ::google::protobuf::RepeatedPtrField< ::message::Cloud_type >&
  3509. Locate_sift_response_msg::cloud_type() const {
  3510. // @@protoc_insertion_point(field_list:message.Locate_sift_response_msg.cloud_type)
  3511. return cloud_type_;
  3512. }
  3513. // required .message.Error_manager error_manager = 6;
  3514. inline bool Locate_sift_response_msg::has_error_manager() const {
  3515. return (_has_bits_[0] & 0x00000004u) != 0;
  3516. }
  3517. inline void Locate_sift_response_msg::set_has_error_manager() {
  3518. _has_bits_[0] |= 0x00000004u;
  3519. }
  3520. inline void Locate_sift_response_msg::clear_has_error_manager() {
  3521. _has_bits_[0] &= ~0x00000004u;
  3522. }
  3523. inline const ::message::Error_manager& Locate_sift_response_msg::_internal_error_manager() const {
  3524. return *error_manager_;
  3525. }
  3526. inline const ::message::Error_manager& Locate_sift_response_msg::error_manager() const {
  3527. const ::message::Error_manager* p = error_manager_;
  3528. // @@protoc_insertion_point(field_get:message.Locate_sift_response_msg.error_manager)
  3529. return p != NULL ? *p : *reinterpret_cast<const ::message::Error_manager*>(
  3530. &::message::_Error_manager_default_instance_);
  3531. }
  3532. inline ::message::Error_manager* Locate_sift_response_msg::release_error_manager() {
  3533. // @@protoc_insertion_point(field_release:message.Locate_sift_response_msg.error_manager)
  3534. clear_has_error_manager();
  3535. ::message::Error_manager* temp = error_manager_;
  3536. error_manager_ = NULL;
  3537. return temp;
  3538. }
  3539. inline ::message::Error_manager* Locate_sift_response_msg::mutable_error_manager() {
  3540. set_has_error_manager();
  3541. if (error_manager_ == NULL) {
  3542. auto* p = CreateMaybeMessage<::message::Error_manager>(GetArenaNoVirtual());
  3543. error_manager_ = p;
  3544. }
  3545. // @@protoc_insertion_point(field_mutable:message.Locate_sift_response_msg.error_manager)
  3546. return error_manager_;
  3547. }
  3548. inline void Locate_sift_response_msg::set_allocated_error_manager(::message::Error_manager* error_manager) {
  3549. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  3550. if (message_arena == NULL) {
  3551. delete reinterpret_cast< ::google::protobuf::MessageLite*>(error_manager_);
  3552. }
  3553. if (error_manager) {
  3554. ::google::protobuf::Arena* submessage_arena = NULL;
  3555. if (message_arena != submessage_arena) {
  3556. error_manager = ::google::protobuf::internal::GetOwnedMessage(
  3557. message_arena, error_manager, submessage_arena);
  3558. }
  3559. set_has_error_manager();
  3560. } else {
  3561. clear_has_error_manager();
  3562. }
  3563. error_manager_ = error_manager;
  3564. // @@protoc_insertion_point(field_set_allocated:message.Locate_sift_response_msg.error_manager)
  3565. }
  3566. #ifdef __GNUC__
  3567. #pragma GCC diagnostic pop
  3568. #endif // __GNUC__
  3569. // -------------------------------------------------------------------
  3570. // -------------------------------------------------------------------
  3571. // -------------------------------------------------------------------
  3572. // -------------------------------------------------------------------
  3573. // -------------------------------------------------------------------
  3574. // -------------------------------------------------------------------
  3575. // -------------------------------------------------------------------
  3576. // -------------------------------------------------------------------
  3577. // -------------------------------------------------------------------
  3578. // @@protoc_insertion_point(namespace_scope)
  3579. } // namespace message
  3580. namespace google {
  3581. namespace protobuf {
  3582. template <> struct is_proto_enum< ::message::Laser_manager_status> : ::std::true_type {};
  3583. template <>
  3584. inline const EnumDescriptor* GetEnumDescriptor< ::message::Laser_manager_status>() {
  3585. return ::message::Laser_manager_status_descriptor();
  3586. }
  3587. template <> struct is_proto_enum< ::message::Laser_statu> : ::std::true_type {};
  3588. template <>
  3589. inline const EnumDescriptor* GetEnumDescriptor< ::message::Laser_statu>() {
  3590. return ::message::Laser_statu_descriptor();
  3591. }
  3592. template <> struct is_proto_enum< ::message::Locate_manager_status> : ::std::true_type {};
  3593. template <>
  3594. inline const EnumDescriptor* GetEnumDescriptor< ::message::Locate_manager_status>() {
  3595. return ::message::Locate_manager_status_descriptor();
  3596. }
  3597. template <> struct is_proto_enum< ::message::Wanji_manager_status> : ::std::true_type {};
  3598. template <>
  3599. inline const EnumDescriptor* GetEnumDescriptor< ::message::Wanji_manager_status>() {
  3600. return ::message::Wanji_manager_status_descriptor();
  3601. }
  3602. template <> struct is_proto_enum< ::message::Wanji_lidar_device_status> : ::std::true_type {};
  3603. template <>
  3604. inline const EnumDescriptor* GetEnumDescriptor< ::message::Wanji_lidar_device_status>() {
  3605. return ::message::Wanji_lidar_device_status_descriptor();
  3606. }
  3607. template <> struct is_proto_enum< ::message::Region_worker_status> : ::std::true_type {};
  3608. template <>
  3609. inline const EnumDescriptor* GetEnumDescriptor< ::message::Region_worker_status>() {
  3610. return ::message::Region_worker_status_descriptor();
  3611. }
  3612. template <> struct is_proto_enum< ::message::Ground_statu> : ::std::true_type {};
  3613. template <>
  3614. inline const EnumDescriptor* GetEnumDescriptor< ::message::Ground_statu>() {
  3615. return ::message::Ground_statu_descriptor();
  3616. }
  3617. } // namespace protobuf
  3618. } // namespace google
  3619. // @@protoc_insertion_point(global_scope)
  3620. #endif // PROTOBUF_INCLUDED_measure_5fmessage_2eproto