dispatch_message.pb.h 205 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100
  1. // Generated by the protocol buffer compiler. DO NOT EDIT!
  2. // source: dispatch_message.proto
  3. #ifndef PROTOBUF_INCLUDED_dispatch_5fmessage_2eproto
  4. #define PROTOBUF_INCLUDED_dispatch_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_dispatch_5fmessage_2eproto
  32. namespace protobuf_dispatch_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[8];
  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_dispatch_5fmessage_2eproto
  44. namespace message {
  45. class Carrier_data;
  46. class Carrier_dataDefaultTypeInternal;
  47. extern Carrier_dataDefaultTypeInternal _Carrier_data_default_instance_;
  48. class Catcher_data;
  49. class Catcher_dataDefaultTypeInternal;
  50. extern Catcher_dataDefaultTypeInternal _Catcher_data_default_instance_;
  51. class Dispatch_manager_data_msg;
  52. class Dispatch_manager_data_msgDefaultTypeInternal;
  53. extern Dispatch_manager_data_msgDefaultTypeInternal _Dispatch_manager_data_msg_default_instance_;
  54. class Dispatch_manager_status_msg;
  55. class Dispatch_manager_status_msgDefaultTypeInternal;
  56. extern Dispatch_manager_status_msgDefaultTypeInternal _Dispatch_manager_status_msg_default_instance_;
  57. class Dispatch_request_msg;
  58. class Dispatch_request_msgDefaultTypeInternal;
  59. extern Dispatch_request_msgDefaultTypeInternal _Dispatch_request_msg_default_instance_;
  60. class Dispatch_response_msg;
  61. class Dispatch_response_msgDefaultTypeInternal;
  62. extern Dispatch_response_msgDefaultTypeInternal _Dispatch_response_msg_default_instance_;
  63. class Dispatch_terminal_status_msg;
  64. class Dispatch_terminal_status_msgDefaultTypeInternal;
  65. extern Dispatch_terminal_status_msgDefaultTypeInternal _Dispatch_terminal_status_msg_default_instance_;
  66. class Passageway_data;
  67. class Passageway_dataDefaultTypeInternal;
  68. extern Passageway_dataDefaultTypeInternal _Passageway_data_default_instance_;
  69. } // namespace message
  70. namespace google {
  71. namespace protobuf {
  72. template<> ::message::Carrier_data* Arena::CreateMaybeMessage<::message::Carrier_data>(Arena*);
  73. template<> ::message::Catcher_data* Arena::CreateMaybeMessage<::message::Catcher_data>(Arena*);
  74. template<> ::message::Dispatch_manager_data_msg* Arena::CreateMaybeMessage<::message::Dispatch_manager_data_msg>(Arena*);
  75. template<> ::message::Dispatch_manager_status_msg* Arena::CreateMaybeMessage<::message::Dispatch_manager_status_msg>(Arena*);
  76. template<> ::message::Dispatch_request_msg* Arena::CreateMaybeMessage<::message::Dispatch_request_msg>(Arena*);
  77. template<> ::message::Dispatch_response_msg* Arena::CreateMaybeMessage<::message::Dispatch_response_msg>(Arena*);
  78. template<> ::message::Dispatch_terminal_status_msg* Arena::CreateMaybeMessage<::message::Dispatch_terminal_status_msg>(Arena*);
  79. template<> ::message::Passageway_data* Arena::CreateMaybeMessage<::message::Passageway_data>(Arena*);
  80. } // namespace protobuf
  81. } // namespace google
  82. namespace message {
  83. enum Terminal_status {
  84. E_TERMINAL_UNKNOW = 0,
  85. E_TERMINAL_READY = 1,
  86. E_TERMINAL_STORE = 2,
  87. E_TERMINAL_PICKUP = 3,
  88. E_TERMINAL_FAULT = 10
  89. };
  90. bool Terminal_status_IsValid(int value);
  91. const Terminal_status Terminal_status_MIN = E_TERMINAL_UNKNOW;
  92. const Terminal_status Terminal_status_MAX = E_TERMINAL_FAULT;
  93. const int Terminal_status_ARRAYSIZE = Terminal_status_MAX + 1;
  94. const ::google::protobuf::EnumDescriptor* Terminal_status_descriptor();
  95. inline const ::std::string& Terminal_status_Name(Terminal_status value) {
  96. return ::google::protobuf::internal::NameOfEnum(
  97. Terminal_status_descriptor(), value);
  98. }
  99. inline bool Terminal_status_Parse(
  100. const ::std::string& name, Terminal_status* value) {
  101. return ::google::protobuf::internal::ParseNamedEnum<Terminal_status>(
  102. Terminal_status_descriptor(), name, value);
  103. }
  104. enum Passageway_direction {
  105. E_INLET = 0,
  106. E_OUTLET = 1,
  107. E_BILATERAL = 2
  108. };
  109. bool Passageway_direction_IsValid(int value);
  110. const Passageway_direction Passageway_direction_MIN = E_INLET;
  111. const Passageway_direction Passageway_direction_MAX = E_BILATERAL;
  112. const int Passageway_direction_ARRAYSIZE = Passageway_direction_MAX + 1;
  113. const ::google::protobuf::EnumDescriptor* Passageway_direction_descriptor();
  114. inline const ::std::string& Passageway_direction_Name(Passageway_direction value) {
  115. return ::google::protobuf::internal::NameOfEnum(
  116. Passageway_direction_descriptor(), value);
  117. }
  118. inline bool Passageway_direction_Parse(
  119. const ::std::string& name, Passageway_direction* value) {
  120. return ::google::protobuf::internal::ParseNamedEnum<Passageway_direction>(
  121. Passageway_direction_descriptor(), name, value);
  122. }
  123. enum Dispatch_motion_direction {
  124. E_STORE_CAR = 0,
  125. E_PICKUP_CAR = 1
  126. };
  127. bool Dispatch_motion_direction_IsValid(int value);
  128. const Dispatch_motion_direction Dispatch_motion_direction_MIN = E_STORE_CAR;
  129. const Dispatch_motion_direction Dispatch_motion_direction_MAX = E_PICKUP_CAR;
  130. const int Dispatch_motion_direction_ARRAYSIZE = Dispatch_motion_direction_MAX + 1;
  131. const ::google::protobuf::EnumDescriptor* Dispatch_motion_direction_descriptor();
  132. inline const ::std::string& Dispatch_motion_direction_Name(Dispatch_motion_direction value) {
  133. return ::google::protobuf::internal::NameOfEnum(
  134. Dispatch_motion_direction_descriptor(), value);
  135. }
  136. inline bool Dispatch_motion_direction_Parse(
  137. const ::std::string& name, Dispatch_motion_direction* value) {
  138. return ::google::protobuf::internal::ParseNamedEnum<Dispatch_motion_direction>(
  139. Dispatch_motion_direction_descriptor(), name, value);
  140. }
  141. enum Dispatch_manager_status {
  142. E_DISPATCH_MANAGER_UNKNOW = 0,
  143. E_DISPATCH_MANAGER_READY = 1,
  144. E_DISPATCH_MANAGER_STORE = 2,
  145. E_DISPATCH_MANAGER_PICKUP = 3,
  146. E_DISPATCH_MANAGER_FAULT = 100
  147. };
  148. bool Dispatch_manager_status_IsValid(int value);
  149. const Dispatch_manager_status Dispatch_manager_status_MIN = E_DISPATCH_MANAGER_UNKNOW;
  150. const Dispatch_manager_status Dispatch_manager_status_MAX = E_DISPATCH_MANAGER_FAULT;
  151. const int Dispatch_manager_status_ARRAYSIZE = Dispatch_manager_status_MAX + 1;
  152. const ::google::protobuf::EnumDescriptor* Dispatch_manager_status_descriptor();
  153. inline const ::std::string& Dispatch_manager_status_Name(Dispatch_manager_status value) {
  154. return ::google::protobuf::internal::NameOfEnum(
  155. Dispatch_manager_status_descriptor(), value);
  156. }
  157. inline bool Dispatch_manager_status_Parse(
  158. const ::std::string& name, Dispatch_manager_status* value) {
  159. return ::google::protobuf::internal::ParseNamedEnum<Dispatch_manager_status>(
  160. Dispatch_manager_status_descriptor(), name, value);
  161. }
  162. enum Dispatch_device_status {
  163. DISPATCH_DEVICE_UNKNOW = 0,
  164. DISPATCH_DEVICE_READY = 1,
  165. DISPATCH_DEVICE_BUSY = 2,
  166. DISPATCH_DEVICE_ONE_LEVEL_OVER = 3,
  167. DISPATCH_DEVICE_ONE_LEVEL_WORK = 4,
  168. DISPATCH_DEVICE_TWO_LEVEL_OVER = 5,
  169. DISPATCH_DEVICE_TWO_LEVEL_WORK = 6,
  170. DISPATCH_DEVICE_THREE_LEVEL_OVER = 7,
  171. DISPATCH_DEVICE_THREE_LEVEL_WORK = 8,
  172. DISPATCH_DEVICE_FAULT = 100,
  173. DISPATCH_DEVICE_DISCONNECT = 101
  174. };
  175. bool Dispatch_device_status_IsValid(int value);
  176. const Dispatch_device_status Dispatch_device_status_MIN = DISPATCH_DEVICE_UNKNOW;
  177. const Dispatch_device_status Dispatch_device_status_MAX = DISPATCH_DEVICE_DISCONNECT;
  178. const int Dispatch_device_status_ARRAYSIZE = Dispatch_device_status_MAX + 1;
  179. const ::google::protobuf::EnumDescriptor* Dispatch_device_status_descriptor();
  180. inline const ::std::string& Dispatch_device_status_Name(Dispatch_device_status value) {
  181. return ::google::protobuf::internal::NameOfEnum(
  182. Dispatch_device_status_descriptor(), value);
  183. }
  184. inline bool Dispatch_device_status_Parse(
  185. const ::std::string& name, Dispatch_device_status* value) {
  186. return ::google::protobuf::internal::ParseNamedEnum<Dispatch_device_status>(
  187. Dispatch_device_status_descriptor(), name, value);
  188. }
  189. enum Dispatch_task_level {
  190. DISPATCH_TASK_ONE_LEVEL = 1,
  191. DISPATCH_TASK_TWO_LEVEL = 2,
  192. DISPATCH_TASK_THREE_LEVEL = 3
  193. };
  194. bool Dispatch_task_level_IsValid(int value);
  195. const Dispatch_task_level Dispatch_task_level_MIN = DISPATCH_TASK_ONE_LEVEL;
  196. const Dispatch_task_level Dispatch_task_level_MAX = DISPATCH_TASK_THREE_LEVEL;
  197. const int Dispatch_task_level_ARRAYSIZE = Dispatch_task_level_MAX + 1;
  198. const ::google::protobuf::EnumDescriptor* Dispatch_task_level_descriptor();
  199. inline const ::std::string& Dispatch_task_level_Name(Dispatch_task_level value) {
  200. return ::google::protobuf::internal::NameOfEnum(
  201. Dispatch_task_level_descriptor(), value);
  202. }
  203. inline bool Dispatch_task_level_Parse(
  204. const ::std::string& name, Dispatch_task_level* value) {
  205. return ::google::protobuf::internal::ParseNamedEnum<Dispatch_task_level>(
  206. Dispatch_task_level_descriptor(), name, value);
  207. }
  208. enum Clamp_motion {
  209. E_CLAMP_NO_ACTION = 0,
  210. E_CLAMP_TIGHT = 1,
  211. E_CLAMP_LOOSE = 2
  212. };
  213. bool Clamp_motion_IsValid(int value);
  214. const Clamp_motion Clamp_motion_MIN = E_CLAMP_NO_ACTION;
  215. const Clamp_motion Clamp_motion_MAX = E_CLAMP_LOOSE;
  216. const int Clamp_motion_ARRAYSIZE = Clamp_motion_MAX + 1;
  217. const ::google::protobuf::EnumDescriptor* Clamp_motion_descriptor();
  218. inline const ::std::string& Clamp_motion_Name(Clamp_motion value) {
  219. return ::google::protobuf::internal::NameOfEnum(
  220. Clamp_motion_descriptor(), value);
  221. }
  222. inline bool Clamp_motion_Parse(
  223. const ::std::string& name, Clamp_motion* value) {
  224. return ::google::protobuf::internal::ParseNamedEnum<Clamp_motion>(
  225. Clamp_motion_descriptor(), name, value);
  226. }
  227. enum Joint_motion {
  228. E_JOINT_NO_ACTION = 0,
  229. E_JOINT_HOLD_OUT = 1,
  230. E_JOINT_TAKE_BACK = 2
  231. };
  232. bool Joint_motion_IsValid(int value);
  233. const Joint_motion Joint_motion_MIN = E_JOINT_NO_ACTION;
  234. const Joint_motion Joint_motion_MAX = E_JOINT_TAKE_BACK;
  235. const int Joint_motion_ARRAYSIZE = Joint_motion_MAX + 1;
  236. const ::google::protobuf::EnumDescriptor* Joint_motion_descriptor();
  237. inline const ::std::string& Joint_motion_Name(Joint_motion value) {
  238. return ::google::protobuf::internal::NameOfEnum(
  239. Joint_motion_descriptor(), value);
  240. }
  241. inline bool Joint_motion_Parse(
  242. const ::std::string& name, Joint_motion* value) {
  243. return ::google::protobuf::internal::ParseNamedEnum<Joint_motion>(
  244. Joint_motion_descriptor(), name, value);
  245. }
  246. enum Small_sports_car_motion {
  247. E_SMALL_SPORTS_NO_ACTION = 0,
  248. E_SMALL_SPORTS_CAR_GET_AWAY = 1,
  249. E_SMALL_SPORTS_CAR_GET_BACK = 2
  250. };
  251. bool Small_sports_car_motion_IsValid(int value);
  252. const Small_sports_car_motion Small_sports_car_motion_MIN = E_SMALL_SPORTS_NO_ACTION;
  253. const Small_sports_car_motion Small_sports_car_motion_MAX = E_SMALL_SPORTS_CAR_GET_BACK;
  254. const int Small_sports_car_motion_ARRAYSIZE = Small_sports_car_motion_MAX + 1;
  255. const ::google::protobuf::EnumDescriptor* Small_sports_car_motion_descriptor();
  256. inline const ::std::string& Small_sports_car_motion_Name(Small_sports_car_motion value) {
  257. return ::google::protobuf::internal::NameOfEnum(
  258. Small_sports_car_motion_descriptor(), value);
  259. }
  260. inline bool Small_sports_car_motion_Parse(
  261. const ::std::string& name, Small_sports_car_motion* value) {
  262. return ::google::protobuf::internal::ParseNamedEnum<Small_sports_car_motion>(
  263. Small_sports_car_motion_descriptor(), name, value);
  264. }
  265. enum Respons_status {
  266. RESPONS_WORKING = 0,
  267. RESPONS_OVER = 1,
  268. RESPONS_MINOR_ERROR = 100,
  269. RESPONS_CRITICAL_ERROR = 101
  270. };
  271. bool Respons_status_IsValid(int value);
  272. const Respons_status Respons_status_MIN = RESPONS_WORKING;
  273. const Respons_status Respons_status_MAX = RESPONS_CRITICAL_ERROR;
  274. const int Respons_status_ARRAYSIZE = Respons_status_MAX + 1;
  275. const ::google::protobuf::EnumDescriptor* Respons_status_descriptor();
  276. inline const ::std::string& Respons_status_Name(Respons_status value) {
  277. return ::google::protobuf::internal::NameOfEnum(
  278. Respons_status_descriptor(), value);
  279. }
  280. inline bool Respons_status_Parse(
  281. const ::std::string& name, Respons_status* value) {
  282. return ::google::protobuf::internal::ParseNamedEnum<Respons_status>(
  283. Respons_status_descriptor(), name, value);
  284. }
  285. enum Hardware_device_status {
  286. DEVICE_UNKNOWN = 0,
  287. DEVICE_READY = 1,
  288. DEVICE_WORKING = 2,
  289. DEVICE_EMERGENCY_STOP = 3,
  290. DEVICE_UNSAFETY = 4,
  291. DEVICE_COLLISION = 5,
  292. DEVICE_FAULT = 6
  293. };
  294. bool Hardware_device_status_IsValid(int value);
  295. const Hardware_device_status Hardware_device_status_MIN = DEVICE_UNKNOWN;
  296. const Hardware_device_status Hardware_device_status_MAX = DEVICE_FAULT;
  297. const int Hardware_device_status_ARRAYSIZE = Hardware_device_status_MAX + 1;
  298. const ::google::protobuf::EnumDescriptor* Hardware_device_status_descriptor();
  299. inline const ::std::string& Hardware_device_status_Name(Hardware_device_status value) {
  300. return ::google::protobuf::internal::NameOfEnum(
  301. Hardware_device_status_descriptor(), value);
  302. }
  303. inline bool Hardware_device_status_Parse(
  304. const ::std::string& name, Hardware_device_status* value) {
  305. return ::google::protobuf::internal::ParseNamedEnum<Hardware_device_status>(
  306. Hardware_device_status_descriptor(), name, value);
  307. }
  308. enum Load_status {
  309. LOAD_UNKNOWN = 0,
  310. HAVE_CAR = 1,
  311. NO_CAR = 2
  312. };
  313. bool Load_status_IsValid(int value);
  314. const Load_status Load_status_MIN = LOAD_UNKNOWN;
  315. const Load_status Load_status_MAX = NO_CAR;
  316. const int Load_status_ARRAYSIZE = Load_status_MAX + 1;
  317. const ::google::protobuf::EnumDescriptor* Load_status_descriptor();
  318. inline const ::std::string& Load_status_Name(Load_status value) {
  319. return ::google::protobuf::internal::NameOfEnum(
  320. Load_status_descriptor(), value);
  321. }
  322. inline bool Load_status_Parse(
  323. const ::std::string& name, Load_status* value) {
  324. return ::google::protobuf::internal::ParseNamedEnum<Load_status>(
  325. Load_status_descriptor(), name, value);
  326. }
  327. enum Turntable_direction {
  328. TURNTABLE_DIRECTION_UNKNOWN = 0,
  329. TURNTABLE_DIRECTION_INSIDE = 1,
  330. TURNTABLE_DIRECTION_OUTSIDE = 2
  331. };
  332. bool Turntable_direction_IsValid(int value);
  333. const Turntable_direction Turntable_direction_MIN = TURNTABLE_DIRECTION_UNKNOWN;
  334. const Turntable_direction Turntable_direction_MAX = TURNTABLE_DIRECTION_OUTSIDE;
  335. const int Turntable_direction_ARRAYSIZE = Turntable_direction_MAX + 1;
  336. const ::google::protobuf::EnumDescriptor* Turntable_direction_descriptor();
  337. inline const ::std::string& Turntable_direction_Name(Turntable_direction value) {
  338. return ::google::protobuf::internal::NameOfEnum(
  339. Turntable_direction_descriptor(), value);
  340. }
  341. inline bool Turntable_direction_Parse(
  342. const ::std::string& name, Turntable_direction* value) {
  343. return ::google::protobuf::internal::ParseNamedEnum<Turntable_direction>(
  344. Turntable_direction_descriptor(), name, value);
  345. }
  346. enum Door_motion {
  347. DOOR_UNKNOWN = 0,
  348. DOOR_OPEN = 1,
  349. DOOR_CLOSE = 2,
  350. DOOR_ERROR = 3
  351. };
  352. bool Door_motion_IsValid(int value);
  353. const Door_motion Door_motion_MIN = DOOR_UNKNOWN;
  354. const Door_motion Door_motion_MAX = DOOR_ERROR;
  355. const int Door_motion_ARRAYSIZE = Door_motion_MAX + 1;
  356. const ::google::protobuf::EnumDescriptor* Door_motion_descriptor();
  357. inline const ::std::string& Door_motion_Name(Door_motion value) {
  358. return ::google::protobuf::internal::NameOfEnum(
  359. Door_motion_descriptor(), value);
  360. }
  361. inline bool Door_motion_Parse(
  362. const ::std::string& name, Door_motion* value) {
  363. return ::google::protobuf::internal::ParseNamedEnum<Door_motion>(
  364. Door_motion_descriptor(), name, value);
  365. }
  366. enum Overstep_the_boundary {
  367. BOUNDARY_NORMAL = 0,
  368. BOUNDARY_OVERSTEP = 1
  369. };
  370. bool Overstep_the_boundary_IsValid(int value);
  371. const Overstep_the_boundary Overstep_the_boundary_MIN = BOUNDARY_NORMAL;
  372. const Overstep_the_boundary Overstep_the_boundary_MAX = BOUNDARY_OVERSTEP;
  373. const int Overstep_the_boundary_ARRAYSIZE = Overstep_the_boundary_MAX + 1;
  374. const ::google::protobuf::EnumDescriptor* Overstep_the_boundary_descriptor();
  375. inline const ::std::string& Overstep_the_boundary_Name(Overstep_the_boundary value) {
  376. return ::google::protobuf::internal::NameOfEnum(
  377. Overstep_the_boundary_descriptor(), value);
  378. }
  379. inline bool Overstep_the_boundary_Parse(
  380. const ::std::string& name, Overstep_the_boundary* value) {
  381. return ::google::protobuf::internal::ParseNamedEnum<Overstep_the_boundary>(
  382. Overstep_the_boundary_descriptor(), name, value);
  383. }
  384. // ===================================================================
  385. class Dispatch_terminal_status_msg : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Dispatch_terminal_status_msg) */ {
  386. public:
  387. Dispatch_terminal_status_msg();
  388. virtual ~Dispatch_terminal_status_msg();
  389. Dispatch_terminal_status_msg(const Dispatch_terminal_status_msg& from);
  390. inline Dispatch_terminal_status_msg& operator=(const Dispatch_terminal_status_msg& from) {
  391. CopyFrom(from);
  392. return *this;
  393. }
  394. #if LANG_CXX11
  395. Dispatch_terminal_status_msg(Dispatch_terminal_status_msg&& from) noexcept
  396. : Dispatch_terminal_status_msg() {
  397. *this = ::std::move(from);
  398. }
  399. inline Dispatch_terminal_status_msg& operator=(Dispatch_terminal_status_msg&& from) noexcept {
  400. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  401. if (this != &from) InternalSwap(&from);
  402. } else {
  403. CopyFrom(from);
  404. }
  405. return *this;
  406. }
  407. #endif
  408. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  409. return _internal_metadata_.unknown_fields();
  410. }
  411. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  412. return _internal_metadata_.mutable_unknown_fields();
  413. }
  414. static const ::google::protobuf::Descriptor* descriptor();
  415. static const Dispatch_terminal_status_msg& default_instance();
  416. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  417. static inline const Dispatch_terminal_status_msg* internal_default_instance() {
  418. return reinterpret_cast<const Dispatch_terminal_status_msg*>(
  419. &_Dispatch_terminal_status_msg_default_instance_);
  420. }
  421. static constexpr int kIndexInFileMessages =
  422. 0;
  423. void Swap(Dispatch_terminal_status_msg* other);
  424. friend void swap(Dispatch_terminal_status_msg& a, Dispatch_terminal_status_msg& b) {
  425. a.Swap(&b);
  426. }
  427. // implements Message ----------------------------------------------
  428. inline Dispatch_terminal_status_msg* New() const final {
  429. return CreateMaybeMessage<Dispatch_terminal_status_msg>(NULL);
  430. }
  431. Dispatch_terminal_status_msg* New(::google::protobuf::Arena* arena) const final {
  432. return CreateMaybeMessage<Dispatch_terminal_status_msg>(arena);
  433. }
  434. void CopyFrom(const ::google::protobuf::Message& from) final;
  435. void MergeFrom(const ::google::protobuf::Message& from) final;
  436. void CopyFrom(const Dispatch_terminal_status_msg& from);
  437. void MergeFrom(const Dispatch_terminal_status_msg& from);
  438. void Clear() final;
  439. bool IsInitialized() const final;
  440. size_t ByteSizeLong() const final;
  441. bool MergePartialFromCodedStream(
  442. ::google::protobuf::io::CodedInputStream* input) final;
  443. void SerializeWithCachedSizes(
  444. ::google::protobuf::io::CodedOutputStream* output) const final;
  445. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  446. bool deterministic, ::google::protobuf::uint8* target) const final;
  447. int GetCachedSize() const final { return _cached_size_.Get(); }
  448. private:
  449. void SharedCtor();
  450. void SharedDtor();
  451. void SetCachedSize(int size) const final;
  452. void InternalSwap(Dispatch_terminal_status_msg* other);
  453. private:
  454. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  455. return NULL;
  456. }
  457. inline void* MaybeArenaPtr() const {
  458. return NULL;
  459. }
  460. public:
  461. ::google::protobuf::Metadata GetMetadata() const final;
  462. // nested types ----------------------------------------------------
  463. // accessors -------------------------------------------------------
  464. // required .message.Base_info base_info = 1;
  465. bool has_base_info() const;
  466. void clear_base_info();
  467. static const int kBaseInfoFieldNumber = 1;
  468. private:
  469. const ::message::Base_info& _internal_base_info() const;
  470. public:
  471. const ::message::Base_info& base_info() const;
  472. ::message::Base_info* release_base_info();
  473. ::message::Base_info* mutable_base_info();
  474. void set_allocated_base_info(::message::Base_info* base_info);
  475. // required .message.Id_struct id_struct = 2;
  476. bool has_id_struct() const;
  477. void clear_id_struct();
  478. static const int kIdStructFieldNumber = 2;
  479. private:
  480. const ::message::Id_struct& _internal_id_struct() const;
  481. public:
  482. const ::message::Id_struct& id_struct() const;
  483. ::message::Id_struct* release_id_struct();
  484. ::message::Id_struct* mutable_id_struct();
  485. void set_allocated_id_struct(::message::Id_struct* id_struct);
  486. // required .message.Terminal_status terminal_status = 3;
  487. bool has_terminal_status() const;
  488. void clear_terminal_status();
  489. static const int kTerminalStatusFieldNumber = 3;
  490. ::message::Terminal_status terminal_status() const;
  491. void set_terminal_status(::message::Terminal_status value);
  492. // required .message.Passageway_direction passageway_direction = 4;
  493. bool has_passageway_direction() const;
  494. void clear_passageway_direction();
  495. static const int kPassagewayDirectionFieldNumber = 4;
  496. ::message::Passageway_direction passageway_direction() const;
  497. void set_passageway_direction(::message::Passageway_direction value);
  498. // @@protoc_insertion_point(class_scope:message.Dispatch_terminal_status_msg)
  499. private:
  500. void set_has_base_info();
  501. void clear_has_base_info();
  502. void set_has_id_struct();
  503. void clear_has_id_struct();
  504. void set_has_terminal_status();
  505. void clear_has_terminal_status();
  506. void set_has_passageway_direction();
  507. void clear_has_passageway_direction();
  508. // helper for ByteSizeLong()
  509. size_t RequiredFieldsByteSizeFallback() const;
  510. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  511. ::google::protobuf::internal::HasBits<1> _has_bits_;
  512. mutable ::google::protobuf::internal::CachedSize _cached_size_;
  513. ::message::Base_info* base_info_;
  514. ::message::Id_struct* id_struct_;
  515. int terminal_status_;
  516. int passageway_direction_;
  517. friend struct ::protobuf_dispatch_5fmessage_2eproto::TableStruct;
  518. };
  519. // -------------------------------------------------------------------
  520. class Dispatch_request_msg : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Dispatch_request_msg) */ {
  521. public:
  522. Dispatch_request_msg();
  523. virtual ~Dispatch_request_msg();
  524. Dispatch_request_msg(const Dispatch_request_msg& from);
  525. inline Dispatch_request_msg& operator=(const Dispatch_request_msg& from) {
  526. CopyFrom(from);
  527. return *this;
  528. }
  529. #if LANG_CXX11
  530. Dispatch_request_msg(Dispatch_request_msg&& from) noexcept
  531. : Dispatch_request_msg() {
  532. *this = ::std::move(from);
  533. }
  534. inline Dispatch_request_msg& operator=(Dispatch_request_msg&& from) noexcept {
  535. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  536. if (this != &from) InternalSwap(&from);
  537. } else {
  538. CopyFrom(from);
  539. }
  540. return *this;
  541. }
  542. #endif
  543. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  544. return _internal_metadata_.unknown_fields();
  545. }
  546. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  547. return _internal_metadata_.mutable_unknown_fields();
  548. }
  549. static const ::google::protobuf::Descriptor* descriptor();
  550. static const Dispatch_request_msg& default_instance();
  551. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  552. static inline const Dispatch_request_msg* internal_default_instance() {
  553. return reinterpret_cast<const Dispatch_request_msg*>(
  554. &_Dispatch_request_msg_default_instance_);
  555. }
  556. static constexpr int kIndexInFileMessages =
  557. 1;
  558. void Swap(Dispatch_request_msg* other);
  559. friend void swap(Dispatch_request_msg& a, Dispatch_request_msg& b) {
  560. a.Swap(&b);
  561. }
  562. // implements Message ----------------------------------------------
  563. inline Dispatch_request_msg* New() const final {
  564. return CreateMaybeMessage<Dispatch_request_msg>(NULL);
  565. }
  566. Dispatch_request_msg* New(::google::protobuf::Arena* arena) const final {
  567. return CreateMaybeMessage<Dispatch_request_msg>(arena);
  568. }
  569. void CopyFrom(const ::google::protobuf::Message& from) final;
  570. void MergeFrom(const ::google::protobuf::Message& from) final;
  571. void CopyFrom(const Dispatch_request_msg& from);
  572. void MergeFrom(const Dispatch_request_msg& from);
  573. void Clear() final;
  574. bool IsInitialized() const final;
  575. size_t ByteSizeLong() const final;
  576. bool MergePartialFromCodedStream(
  577. ::google::protobuf::io::CodedInputStream* input) final;
  578. void SerializeWithCachedSizes(
  579. ::google::protobuf::io::CodedOutputStream* output) const final;
  580. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  581. bool deterministic, ::google::protobuf::uint8* target) const final;
  582. int GetCachedSize() const final { return _cached_size_.Get(); }
  583. private:
  584. void SharedCtor();
  585. void SharedDtor();
  586. void SetCachedSize(int size) const final;
  587. void InternalSwap(Dispatch_request_msg* other);
  588. private:
  589. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  590. return NULL;
  591. }
  592. inline void* MaybeArenaPtr() const {
  593. return NULL;
  594. }
  595. public:
  596. ::google::protobuf::Metadata GetMetadata() const final;
  597. // nested types ----------------------------------------------------
  598. // accessors -------------------------------------------------------
  599. // repeated .message.Parkspace_info parkspace_info_ex = 6;
  600. int parkspace_info_ex_size() const;
  601. void clear_parkspace_info_ex();
  602. static const int kParkspaceInfoExFieldNumber = 6;
  603. ::message::Parkspace_info* mutable_parkspace_info_ex(int index);
  604. ::google::protobuf::RepeatedPtrField< ::message::Parkspace_info >*
  605. mutable_parkspace_info_ex();
  606. const ::message::Parkspace_info& parkspace_info_ex(int index) const;
  607. ::message::Parkspace_info* add_parkspace_info_ex();
  608. const ::google::protobuf::RepeatedPtrField< ::message::Parkspace_info >&
  609. parkspace_info_ex() const;
  610. // required string command_key = 2;
  611. bool has_command_key() const;
  612. void clear_command_key();
  613. static const int kCommandKeyFieldNumber = 2;
  614. const ::std::string& command_key() const;
  615. void set_command_key(const ::std::string& value);
  616. #if LANG_CXX11
  617. void set_command_key(::std::string&& value);
  618. #endif
  619. void set_command_key(const char* value);
  620. void set_command_key(const char* value, size_t size);
  621. ::std::string* mutable_command_key();
  622. ::std::string* release_command_key();
  623. void set_allocated_command_key(::std::string* command_key);
  624. // required .message.Base_info base_info = 1;
  625. bool has_base_info() const;
  626. void clear_base_info();
  627. static const int kBaseInfoFieldNumber = 1;
  628. private:
  629. const ::message::Base_info& _internal_base_info() const;
  630. public:
  631. const ::message::Base_info& base_info() const;
  632. ::message::Base_info* release_base_info();
  633. ::message::Base_info* mutable_base_info();
  634. void set_allocated_base_info(::message::Base_info* base_info);
  635. // optional .message.Id_struct id_struct = 4;
  636. bool has_id_struct() const;
  637. void clear_id_struct();
  638. static const int kIdStructFieldNumber = 4;
  639. private:
  640. const ::message::Id_struct& _internal_id_struct() const;
  641. public:
  642. const ::message::Id_struct& id_struct() const;
  643. ::message::Id_struct* release_id_struct();
  644. ::message::Id_struct* mutable_id_struct();
  645. void set_allocated_id_struct(::message::Id_struct* id_struct);
  646. // optional .message.Locate_information locate_information = 5;
  647. bool has_locate_information() const;
  648. void clear_locate_information();
  649. static const int kLocateInformationFieldNumber = 5;
  650. private:
  651. const ::message::Locate_information& _internal_locate_information() const;
  652. public:
  653. const ::message::Locate_information& locate_information() const;
  654. ::message::Locate_information* release_locate_information();
  655. ::message::Locate_information* mutable_locate_information();
  656. void set_allocated_locate_information(::message::Locate_information* locate_information);
  657. // optional .message.Dispatch_motion_direction dispatch_motion_direction = 3;
  658. bool has_dispatch_motion_direction() const;
  659. void clear_dispatch_motion_direction();
  660. static const int kDispatchMotionDirectionFieldNumber = 3;
  661. ::message::Dispatch_motion_direction dispatch_motion_direction() const;
  662. void set_dispatch_motion_direction(::message::Dispatch_motion_direction value);
  663. // optional .message.Car_type car_type = 7;
  664. bool has_car_type() const;
  665. void clear_car_type();
  666. static const int kCarTypeFieldNumber = 7;
  667. ::message::Car_type car_type() const;
  668. void set_car_type(::message::Car_type value);
  669. // @@protoc_insertion_point(class_scope:message.Dispatch_request_msg)
  670. private:
  671. void set_has_base_info();
  672. void clear_has_base_info();
  673. void set_has_command_key();
  674. void clear_has_command_key();
  675. void set_has_dispatch_motion_direction();
  676. void clear_has_dispatch_motion_direction();
  677. void set_has_id_struct();
  678. void clear_has_id_struct();
  679. void set_has_locate_information();
  680. void clear_has_locate_information();
  681. void set_has_car_type();
  682. void clear_has_car_type();
  683. // helper for ByteSizeLong()
  684. size_t RequiredFieldsByteSizeFallback() const;
  685. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  686. ::google::protobuf::internal::HasBits<1> _has_bits_;
  687. mutable ::google::protobuf::internal::CachedSize _cached_size_;
  688. ::google::protobuf::RepeatedPtrField< ::message::Parkspace_info > parkspace_info_ex_;
  689. ::google::protobuf::internal::ArenaStringPtr command_key_;
  690. ::message::Base_info* base_info_;
  691. ::message::Id_struct* id_struct_;
  692. ::message::Locate_information* locate_information_;
  693. int dispatch_motion_direction_;
  694. int car_type_;
  695. friend struct ::protobuf_dispatch_5fmessage_2eproto::TableStruct;
  696. };
  697. // -------------------------------------------------------------------
  698. class Dispatch_response_msg : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Dispatch_response_msg) */ {
  699. public:
  700. Dispatch_response_msg();
  701. virtual ~Dispatch_response_msg();
  702. Dispatch_response_msg(const Dispatch_response_msg& from);
  703. inline Dispatch_response_msg& operator=(const Dispatch_response_msg& from) {
  704. CopyFrom(from);
  705. return *this;
  706. }
  707. #if LANG_CXX11
  708. Dispatch_response_msg(Dispatch_response_msg&& from) noexcept
  709. : Dispatch_response_msg() {
  710. *this = ::std::move(from);
  711. }
  712. inline Dispatch_response_msg& operator=(Dispatch_response_msg&& from) noexcept {
  713. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  714. if (this != &from) InternalSwap(&from);
  715. } else {
  716. CopyFrom(from);
  717. }
  718. return *this;
  719. }
  720. #endif
  721. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  722. return _internal_metadata_.unknown_fields();
  723. }
  724. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  725. return _internal_metadata_.mutable_unknown_fields();
  726. }
  727. static const ::google::protobuf::Descriptor* descriptor();
  728. static const Dispatch_response_msg& default_instance();
  729. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  730. static inline const Dispatch_response_msg* internal_default_instance() {
  731. return reinterpret_cast<const Dispatch_response_msg*>(
  732. &_Dispatch_response_msg_default_instance_);
  733. }
  734. static constexpr int kIndexInFileMessages =
  735. 2;
  736. void Swap(Dispatch_response_msg* other);
  737. friend void swap(Dispatch_response_msg& a, Dispatch_response_msg& b) {
  738. a.Swap(&b);
  739. }
  740. // implements Message ----------------------------------------------
  741. inline Dispatch_response_msg* New() const final {
  742. return CreateMaybeMessage<Dispatch_response_msg>(NULL);
  743. }
  744. Dispatch_response_msg* New(::google::protobuf::Arena* arena) const final {
  745. return CreateMaybeMessage<Dispatch_response_msg>(arena);
  746. }
  747. void CopyFrom(const ::google::protobuf::Message& from) final;
  748. void MergeFrom(const ::google::protobuf::Message& from) final;
  749. void CopyFrom(const Dispatch_response_msg& from);
  750. void MergeFrom(const Dispatch_response_msg& from);
  751. void Clear() final;
  752. bool IsInitialized() const final;
  753. size_t ByteSizeLong() const final;
  754. bool MergePartialFromCodedStream(
  755. ::google::protobuf::io::CodedInputStream* input) final;
  756. void SerializeWithCachedSizes(
  757. ::google::protobuf::io::CodedOutputStream* output) const final;
  758. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  759. bool deterministic, ::google::protobuf::uint8* target) const final;
  760. int GetCachedSize() const final { return _cached_size_.Get(); }
  761. private:
  762. void SharedCtor();
  763. void SharedDtor();
  764. void SetCachedSize(int size) const final;
  765. void InternalSwap(Dispatch_response_msg* other);
  766. private:
  767. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  768. return NULL;
  769. }
  770. inline void* MaybeArenaPtr() const {
  771. return NULL;
  772. }
  773. public:
  774. ::google::protobuf::Metadata GetMetadata() const final;
  775. // nested types ----------------------------------------------------
  776. // accessors -------------------------------------------------------
  777. // repeated .message.Parkspace_info parkspace_info_ex = 6;
  778. int parkspace_info_ex_size() const;
  779. void clear_parkspace_info_ex();
  780. static const int kParkspaceInfoExFieldNumber = 6;
  781. ::message::Parkspace_info* mutable_parkspace_info_ex(int index);
  782. ::google::protobuf::RepeatedPtrField< ::message::Parkspace_info >*
  783. mutable_parkspace_info_ex();
  784. const ::message::Parkspace_info& parkspace_info_ex(int index) const;
  785. ::message::Parkspace_info* add_parkspace_info_ex();
  786. const ::google::protobuf::RepeatedPtrField< ::message::Parkspace_info >&
  787. parkspace_info_ex() const;
  788. // required string command_key = 2;
  789. bool has_command_key() const;
  790. void clear_command_key();
  791. static const int kCommandKeyFieldNumber = 2;
  792. const ::std::string& command_key() const;
  793. void set_command_key(const ::std::string& value);
  794. #if LANG_CXX11
  795. void set_command_key(::std::string&& value);
  796. #endif
  797. void set_command_key(const char* value);
  798. void set_command_key(const char* value, size_t size);
  799. ::std::string* mutable_command_key();
  800. ::std::string* release_command_key();
  801. void set_allocated_command_key(::std::string* command_key);
  802. // required .message.Base_info base_info = 1;
  803. bool has_base_info() const;
  804. void clear_base_info();
  805. static const int kBaseInfoFieldNumber = 1;
  806. private:
  807. const ::message::Base_info& _internal_base_info() const;
  808. public:
  809. const ::message::Base_info& base_info() const;
  810. ::message::Base_info* release_base_info();
  811. ::message::Base_info* mutable_base_info();
  812. void set_allocated_base_info(::message::Base_info* base_info);
  813. // optional .message.Id_struct id_struct = 4;
  814. bool has_id_struct() const;
  815. void clear_id_struct();
  816. static const int kIdStructFieldNumber = 4;
  817. private:
  818. const ::message::Id_struct& _internal_id_struct() const;
  819. public:
  820. const ::message::Id_struct& id_struct() const;
  821. ::message::Id_struct* release_id_struct();
  822. ::message::Id_struct* mutable_id_struct();
  823. void set_allocated_id_struct(::message::Id_struct* id_struct);
  824. // optional .message.Locate_information locate_information = 5;
  825. bool has_locate_information() const;
  826. void clear_locate_information();
  827. static const int kLocateInformationFieldNumber = 5;
  828. private:
  829. const ::message::Locate_information& _internal_locate_information() const;
  830. public:
  831. const ::message::Locate_information& locate_information() const;
  832. ::message::Locate_information* release_locate_information();
  833. ::message::Locate_information* mutable_locate_information();
  834. void set_allocated_locate_information(::message::Locate_information* locate_information);
  835. // optional .message.Error_manager error_manager = 8;
  836. bool has_error_manager() const;
  837. void clear_error_manager();
  838. static const int kErrorManagerFieldNumber = 8;
  839. private:
  840. const ::message::Error_manager& _internal_error_manager() const;
  841. public:
  842. const ::message::Error_manager& error_manager() const;
  843. ::message::Error_manager* release_error_manager();
  844. ::message::Error_manager* mutable_error_manager();
  845. void set_allocated_error_manager(::message::Error_manager* error_manager);
  846. // optional .message.Dispatch_motion_direction dispatch_motion_direction = 3;
  847. bool has_dispatch_motion_direction() const;
  848. void clear_dispatch_motion_direction();
  849. static const int kDispatchMotionDirectionFieldNumber = 3;
  850. ::message::Dispatch_motion_direction dispatch_motion_direction() const;
  851. void set_dispatch_motion_direction(::message::Dispatch_motion_direction value);
  852. // optional .message.Car_type car_type = 7;
  853. bool has_car_type() const;
  854. void clear_car_type();
  855. static const int kCarTypeFieldNumber = 7;
  856. ::message::Car_type car_type() const;
  857. void set_car_type(::message::Car_type value);
  858. // @@protoc_insertion_point(class_scope:message.Dispatch_response_msg)
  859. private:
  860. void set_has_base_info();
  861. void clear_has_base_info();
  862. void set_has_command_key();
  863. void clear_has_command_key();
  864. void set_has_dispatch_motion_direction();
  865. void clear_has_dispatch_motion_direction();
  866. void set_has_id_struct();
  867. void clear_has_id_struct();
  868. void set_has_locate_information();
  869. void clear_has_locate_information();
  870. void set_has_car_type();
  871. void clear_has_car_type();
  872. void set_has_error_manager();
  873. void clear_has_error_manager();
  874. // helper for ByteSizeLong()
  875. size_t RequiredFieldsByteSizeFallback() const;
  876. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  877. ::google::protobuf::internal::HasBits<1> _has_bits_;
  878. mutable ::google::protobuf::internal::CachedSize _cached_size_;
  879. ::google::protobuf::RepeatedPtrField< ::message::Parkspace_info > parkspace_info_ex_;
  880. ::google::protobuf::internal::ArenaStringPtr command_key_;
  881. ::message::Base_info* base_info_;
  882. ::message::Id_struct* id_struct_;
  883. ::message::Locate_information* locate_information_;
  884. ::message::Error_manager* error_manager_;
  885. int dispatch_motion_direction_;
  886. int car_type_;
  887. friend struct ::protobuf_dispatch_5fmessage_2eproto::TableStruct;
  888. };
  889. // -------------------------------------------------------------------
  890. class Catcher_data : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Catcher_data) */ {
  891. public:
  892. Catcher_data();
  893. virtual ~Catcher_data();
  894. Catcher_data(const Catcher_data& from);
  895. inline Catcher_data& operator=(const Catcher_data& from) {
  896. CopyFrom(from);
  897. return *this;
  898. }
  899. #if LANG_CXX11
  900. Catcher_data(Catcher_data&& from) noexcept
  901. : Catcher_data() {
  902. *this = ::std::move(from);
  903. }
  904. inline Catcher_data& operator=(Catcher_data&& from) noexcept {
  905. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  906. if (this != &from) InternalSwap(&from);
  907. } else {
  908. CopyFrom(from);
  909. }
  910. return *this;
  911. }
  912. #endif
  913. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  914. return _internal_metadata_.unknown_fields();
  915. }
  916. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  917. return _internal_metadata_.mutable_unknown_fields();
  918. }
  919. static const ::google::protobuf::Descriptor* descriptor();
  920. static const Catcher_data& default_instance();
  921. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  922. static inline const Catcher_data* internal_default_instance() {
  923. return reinterpret_cast<const Catcher_data*>(
  924. &_Catcher_data_default_instance_);
  925. }
  926. static constexpr int kIndexInFileMessages =
  927. 3;
  928. void Swap(Catcher_data* other);
  929. friend void swap(Catcher_data& a, Catcher_data& b) {
  930. a.Swap(&b);
  931. }
  932. // implements Message ----------------------------------------------
  933. inline Catcher_data* New() const final {
  934. return CreateMaybeMessage<Catcher_data>(NULL);
  935. }
  936. Catcher_data* New(::google::protobuf::Arena* arena) const final {
  937. return CreateMaybeMessage<Catcher_data>(arena);
  938. }
  939. void CopyFrom(const ::google::protobuf::Message& from) final;
  940. void MergeFrom(const ::google::protobuf::Message& from) final;
  941. void CopyFrom(const Catcher_data& from);
  942. void MergeFrom(const Catcher_data& from);
  943. void Clear() final;
  944. bool IsInitialized() const final;
  945. size_t ByteSizeLong() const final;
  946. bool MergePartialFromCodedStream(
  947. ::google::protobuf::io::CodedInputStream* input) final;
  948. void SerializeWithCachedSizes(
  949. ::google::protobuf::io::CodedOutputStream* output) const final;
  950. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  951. bool deterministic, ::google::protobuf::uint8* target) const final;
  952. int GetCachedSize() const final { return _cached_size_.Get(); }
  953. private:
  954. void SharedCtor();
  955. void SharedDtor();
  956. void SetCachedSize(int size) const final;
  957. void InternalSwap(Catcher_data* other);
  958. private:
  959. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  960. return NULL;
  961. }
  962. inline void* MaybeArenaPtr() const {
  963. return NULL;
  964. }
  965. public:
  966. ::google::protobuf::Metadata GetMetadata() const final;
  967. // nested types ----------------------------------------------------
  968. // accessors -------------------------------------------------------
  969. // optional string actual_error_code = 17;
  970. bool has_actual_error_code() const;
  971. void clear_actual_error_code();
  972. static const int kActualErrorCodeFieldNumber = 17;
  973. const ::std::string& actual_error_code() const;
  974. void set_actual_error_code(const ::std::string& value);
  975. #if LANG_CXX11
  976. void set_actual_error_code(::std::string&& value);
  977. #endif
  978. void set_actual_error_code(const char* value);
  979. void set_actual_error_code(const char* value, size_t size);
  980. ::std::string* mutable_actual_error_code();
  981. ::std::string* release_actual_error_code();
  982. void set_allocated_actual_error_code(::std::string* actual_error_code);
  983. // optional string actual_warning_code = 18;
  984. bool has_actual_warning_code() const;
  985. void clear_actual_warning_code();
  986. static const int kActualWarningCodeFieldNumber = 18;
  987. const ::std::string& actual_warning_code() const;
  988. void set_actual_warning_code(const ::std::string& value);
  989. #if LANG_CXX11
  990. void set_actual_warning_code(::std::string&& value);
  991. #endif
  992. void set_actual_warning_code(const char* value);
  993. void set_actual_warning_code(const char* value, size_t size);
  994. ::std::string* mutable_actual_warning_code();
  995. ::std::string* release_actual_warning_code();
  996. void set_allocated_actual_warning_code(::std::string* actual_warning_code);
  997. // optional string actual_error_description = 19;
  998. bool has_actual_error_description() const;
  999. void clear_actual_error_description();
  1000. static const int kActualErrorDescriptionFieldNumber = 19;
  1001. const ::std::string& actual_error_description() const;
  1002. void set_actual_error_description(const ::std::string& value);
  1003. #if LANG_CXX11
  1004. void set_actual_error_description(::std::string&& value);
  1005. #endif
  1006. void set_actual_error_description(const char* value);
  1007. void set_actual_error_description(const char* value, size_t size);
  1008. ::std::string* mutable_actual_error_description();
  1009. ::std::string* release_actual_error_description();
  1010. void set_allocated_actual_error_description(::std::string* actual_error_description);
  1011. // required .message.Dispatch_device_status dispatch_device_status = 2;
  1012. bool has_dispatch_device_status() const;
  1013. void clear_dispatch_device_status();
  1014. static const int kDispatchDeviceStatusFieldNumber = 2;
  1015. ::message::Dispatch_device_status dispatch_device_status() const;
  1016. void set_dispatch_device_status(::message::Dispatch_device_status value);
  1017. // required int32 device_id = 3;
  1018. bool has_device_id() const;
  1019. void clear_device_id();
  1020. static const int kDeviceIdFieldNumber = 3;
  1021. ::google::protobuf::int32 device_id() const;
  1022. void set_device_id(::google::protobuf::int32 value);
  1023. // optional .message.Hardware_device_status actual_device_status = 4;
  1024. bool has_actual_device_status() const;
  1025. void clear_actual_device_status();
  1026. static const int kActualDeviceStatusFieldNumber = 4;
  1027. ::message::Hardware_device_status actual_device_status() const;
  1028. void set_actual_device_status(::message::Hardware_device_status value);
  1029. // optional .message.Load_status actual_load_status = 5;
  1030. bool has_actual_load_status() const;
  1031. void clear_actual_load_status();
  1032. static const int kActualLoadStatusFieldNumber = 5;
  1033. ::message::Load_status actual_load_status() const;
  1034. void set_actual_load_status(::message::Load_status value);
  1035. // optional int32 actual_coordinates_id = 6;
  1036. bool has_actual_coordinates_id() const;
  1037. void clear_actual_coordinates_id();
  1038. static const int kActualCoordinatesIdFieldNumber = 6;
  1039. ::google::protobuf::int32 actual_coordinates_id() const;
  1040. void set_actual_coordinates_id(::google::protobuf::int32 value);
  1041. // optional float actual_x = 7;
  1042. bool has_actual_x() const;
  1043. void clear_actual_x();
  1044. static const int kActualXFieldNumber = 7;
  1045. float actual_x() const;
  1046. void set_actual_x(float value);
  1047. // optional float actual_y = 8;
  1048. bool has_actual_y() const;
  1049. void clear_actual_y();
  1050. static const int kActualYFieldNumber = 8;
  1051. float actual_y() const;
  1052. void set_actual_y(float value);
  1053. // optional float actual_b = 9;
  1054. bool has_actual_b() const;
  1055. void clear_actual_b();
  1056. static const int kActualBFieldNumber = 9;
  1057. float actual_b() const;
  1058. void set_actual_b(float value);
  1059. // optional float actual_z = 10;
  1060. bool has_actual_z() const;
  1061. void clear_actual_z();
  1062. static const int kActualZFieldNumber = 10;
  1063. float actual_z() const;
  1064. void set_actual_z(float value);
  1065. // optional float actual_d1 = 11;
  1066. bool has_actual_d1() const;
  1067. void clear_actual_d1();
  1068. static const int kActualD1FieldNumber = 11;
  1069. float actual_d1() const;
  1070. void set_actual_d1(float value);
  1071. // optional float actual_d2 = 12;
  1072. bool has_actual_d2() const;
  1073. void clear_actual_d2();
  1074. static const int kActualD2FieldNumber = 12;
  1075. float actual_d2() const;
  1076. void set_actual_d2(float value);
  1077. // optional .message.Clamp_motion actual_clamp_motion1 = 13;
  1078. bool has_actual_clamp_motion1() const;
  1079. void clear_actual_clamp_motion1();
  1080. static const int kActualClampMotion1FieldNumber = 13;
  1081. ::message::Clamp_motion actual_clamp_motion1() const;
  1082. void set_actual_clamp_motion1(::message::Clamp_motion value);
  1083. // optional .message.Clamp_motion actual_clamp_motion2 = 14;
  1084. bool has_actual_clamp_motion2() const;
  1085. void clear_actual_clamp_motion2();
  1086. static const int kActualClampMotion2FieldNumber = 14;
  1087. ::message::Clamp_motion actual_clamp_motion2() const;
  1088. void set_actual_clamp_motion2(::message::Clamp_motion value);
  1089. // optional .message.Clamp_motion actual_clamp_motion3 = 15;
  1090. bool has_actual_clamp_motion3() const;
  1091. void clear_actual_clamp_motion3();
  1092. static const int kActualClampMotion3FieldNumber = 15;
  1093. ::message::Clamp_motion actual_clamp_motion3() const;
  1094. void set_actual_clamp_motion3(::message::Clamp_motion value);
  1095. // optional .message.Clamp_motion actual_clamp_motion4 = 16;
  1096. bool has_actual_clamp_motion4() const;
  1097. void clear_actual_clamp_motion4();
  1098. static const int kActualClampMotion4FieldNumber = 16;
  1099. ::message::Clamp_motion actual_clamp_motion4() const;
  1100. void set_actual_clamp_motion4(::message::Clamp_motion value);
  1101. // required .message.Dispatch_device_type dispatch_device_type = 1;
  1102. bool has_dispatch_device_type() const;
  1103. void clear_dispatch_device_type();
  1104. static const int kDispatchDeviceTypeFieldNumber = 1;
  1105. ::message::Dispatch_device_type dispatch_device_type() const;
  1106. void set_dispatch_device_type(::message::Dispatch_device_type value);
  1107. // @@protoc_insertion_point(class_scope:message.Catcher_data)
  1108. private:
  1109. void set_has_dispatch_device_type();
  1110. void clear_has_dispatch_device_type();
  1111. void set_has_dispatch_device_status();
  1112. void clear_has_dispatch_device_status();
  1113. void set_has_device_id();
  1114. void clear_has_device_id();
  1115. void set_has_actual_device_status();
  1116. void clear_has_actual_device_status();
  1117. void set_has_actual_load_status();
  1118. void clear_has_actual_load_status();
  1119. void set_has_actual_coordinates_id();
  1120. void clear_has_actual_coordinates_id();
  1121. void set_has_actual_x();
  1122. void clear_has_actual_x();
  1123. void set_has_actual_y();
  1124. void clear_has_actual_y();
  1125. void set_has_actual_b();
  1126. void clear_has_actual_b();
  1127. void set_has_actual_z();
  1128. void clear_has_actual_z();
  1129. void set_has_actual_d1();
  1130. void clear_has_actual_d1();
  1131. void set_has_actual_d2();
  1132. void clear_has_actual_d2();
  1133. void set_has_actual_clamp_motion1();
  1134. void clear_has_actual_clamp_motion1();
  1135. void set_has_actual_clamp_motion2();
  1136. void clear_has_actual_clamp_motion2();
  1137. void set_has_actual_clamp_motion3();
  1138. void clear_has_actual_clamp_motion3();
  1139. void set_has_actual_clamp_motion4();
  1140. void clear_has_actual_clamp_motion4();
  1141. void set_has_actual_error_code();
  1142. void clear_has_actual_error_code();
  1143. void set_has_actual_warning_code();
  1144. void clear_has_actual_warning_code();
  1145. void set_has_actual_error_description();
  1146. void clear_has_actual_error_description();
  1147. // helper for ByteSizeLong()
  1148. size_t RequiredFieldsByteSizeFallback() const;
  1149. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  1150. ::google::protobuf::internal::HasBits<1> _has_bits_;
  1151. mutable ::google::protobuf::internal::CachedSize _cached_size_;
  1152. ::google::protobuf::internal::ArenaStringPtr actual_error_code_;
  1153. ::google::protobuf::internal::ArenaStringPtr actual_warning_code_;
  1154. ::google::protobuf::internal::ArenaStringPtr actual_error_description_;
  1155. int dispatch_device_status_;
  1156. ::google::protobuf::int32 device_id_;
  1157. int actual_device_status_;
  1158. int actual_load_status_;
  1159. ::google::protobuf::int32 actual_coordinates_id_;
  1160. float actual_x_;
  1161. float actual_y_;
  1162. float actual_b_;
  1163. float actual_z_;
  1164. float actual_d1_;
  1165. float actual_d2_;
  1166. int actual_clamp_motion1_;
  1167. int actual_clamp_motion2_;
  1168. int actual_clamp_motion3_;
  1169. int actual_clamp_motion4_;
  1170. int dispatch_device_type_;
  1171. friend struct ::protobuf_dispatch_5fmessage_2eproto::TableStruct;
  1172. };
  1173. // -------------------------------------------------------------------
  1174. class Carrier_data : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Carrier_data) */ {
  1175. public:
  1176. Carrier_data();
  1177. virtual ~Carrier_data();
  1178. Carrier_data(const Carrier_data& from);
  1179. inline Carrier_data& operator=(const Carrier_data& from) {
  1180. CopyFrom(from);
  1181. return *this;
  1182. }
  1183. #if LANG_CXX11
  1184. Carrier_data(Carrier_data&& from) noexcept
  1185. : Carrier_data() {
  1186. *this = ::std::move(from);
  1187. }
  1188. inline Carrier_data& operator=(Carrier_data&& from) noexcept {
  1189. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  1190. if (this != &from) InternalSwap(&from);
  1191. } else {
  1192. CopyFrom(from);
  1193. }
  1194. return *this;
  1195. }
  1196. #endif
  1197. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  1198. return _internal_metadata_.unknown_fields();
  1199. }
  1200. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  1201. return _internal_metadata_.mutable_unknown_fields();
  1202. }
  1203. static const ::google::protobuf::Descriptor* descriptor();
  1204. static const Carrier_data& default_instance();
  1205. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  1206. static inline const Carrier_data* internal_default_instance() {
  1207. return reinterpret_cast<const Carrier_data*>(
  1208. &_Carrier_data_default_instance_);
  1209. }
  1210. static constexpr int kIndexInFileMessages =
  1211. 4;
  1212. void Swap(Carrier_data* other);
  1213. friend void swap(Carrier_data& a, Carrier_data& b) {
  1214. a.Swap(&b);
  1215. }
  1216. // implements Message ----------------------------------------------
  1217. inline Carrier_data* New() const final {
  1218. return CreateMaybeMessage<Carrier_data>(NULL);
  1219. }
  1220. Carrier_data* New(::google::protobuf::Arena* arena) const final {
  1221. return CreateMaybeMessage<Carrier_data>(arena);
  1222. }
  1223. void CopyFrom(const ::google::protobuf::Message& from) final;
  1224. void MergeFrom(const ::google::protobuf::Message& from) final;
  1225. void CopyFrom(const Carrier_data& from);
  1226. void MergeFrom(const Carrier_data& from);
  1227. void Clear() final;
  1228. bool IsInitialized() const final;
  1229. size_t ByteSizeLong() const final;
  1230. bool MergePartialFromCodedStream(
  1231. ::google::protobuf::io::CodedInputStream* input) final;
  1232. void SerializeWithCachedSizes(
  1233. ::google::protobuf::io::CodedOutputStream* output) const final;
  1234. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  1235. bool deterministic, ::google::protobuf::uint8* target) const final;
  1236. int GetCachedSize() const final { return _cached_size_.Get(); }
  1237. private:
  1238. void SharedCtor();
  1239. void SharedDtor();
  1240. void SetCachedSize(int size) const final;
  1241. void InternalSwap(Carrier_data* other);
  1242. private:
  1243. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  1244. return NULL;
  1245. }
  1246. inline void* MaybeArenaPtr() const {
  1247. return NULL;
  1248. }
  1249. public:
  1250. ::google::protobuf::Metadata GetMetadata() const final;
  1251. // nested types ----------------------------------------------------
  1252. // accessors -------------------------------------------------------
  1253. // optional string actual_error_code = 17;
  1254. bool has_actual_error_code() const;
  1255. void clear_actual_error_code();
  1256. static const int kActualErrorCodeFieldNumber = 17;
  1257. const ::std::string& actual_error_code() const;
  1258. void set_actual_error_code(const ::std::string& value);
  1259. #if LANG_CXX11
  1260. void set_actual_error_code(::std::string&& value);
  1261. #endif
  1262. void set_actual_error_code(const char* value);
  1263. void set_actual_error_code(const char* value, size_t size);
  1264. ::std::string* mutable_actual_error_code();
  1265. ::std::string* release_actual_error_code();
  1266. void set_allocated_actual_error_code(::std::string* actual_error_code);
  1267. // optional string actual_warning_code = 18;
  1268. bool has_actual_warning_code() const;
  1269. void clear_actual_warning_code();
  1270. static const int kActualWarningCodeFieldNumber = 18;
  1271. const ::std::string& actual_warning_code() const;
  1272. void set_actual_warning_code(const ::std::string& value);
  1273. #if LANG_CXX11
  1274. void set_actual_warning_code(::std::string&& value);
  1275. #endif
  1276. void set_actual_warning_code(const char* value);
  1277. void set_actual_warning_code(const char* value, size_t size);
  1278. ::std::string* mutable_actual_warning_code();
  1279. ::std::string* release_actual_warning_code();
  1280. void set_allocated_actual_warning_code(::std::string* actual_warning_code);
  1281. // optional string actual_error_description = 19;
  1282. bool has_actual_error_description() const;
  1283. void clear_actual_error_description();
  1284. static const int kActualErrorDescriptionFieldNumber = 19;
  1285. const ::std::string& actual_error_description() const;
  1286. void set_actual_error_description(const ::std::string& value);
  1287. #if LANG_CXX11
  1288. void set_actual_error_description(::std::string&& value);
  1289. #endif
  1290. void set_actual_error_description(const char* value);
  1291. void set_actual_error_description(const char* value, size_t size);
  1292. ::std::string* mutable_actual_error_description();
  1293. ::std::string* release_actual_error_description();
  1294. void set_allocated_actual_error_description(::std::string* actual_error_description);
  1295. // required .message.Dispatch_device_status dispatch_device_status = 2;
  1296. bool has_dispatch_device_status() const;
  1297. void clear_dispatch_device_status();
  1298. static const int kDispatchDeviceStatusFieldNumber = 2;
  1299. ::message::Dispatch_device_status dispatch_device_status() const;
  1300. void set_dispatch_device_status(::message::Dispatch_device_status value);
  1301. // required int32 device_id = 3;
  1302. bool has_device_id() const;
  1303. void clear_device_id();
  1304. static const int kDeviceIdFieldNumber = 3;
  1305. ::google::protobuf::int32 device_id() const;
  1306. void set_device_id(::google::protobuf::int32 value);
  1307. // optional .message.Hardware_device_status actual_device_status = 4;
  1308. bool has_actual_device_status() const;
  1309. void clear_actual_device_status();
  1310. static const int kActualDeviceStatusFieldNumber = 4;
  1311. ::message::Hardware_device_status actual_device_status() const;
  1312. void set_actual_device_status(::message::Hardware_device_status value);
  1313. // optional .message.Load_status actual_load_status = 5;
  1314. bool has_actual_load_status() const;
  1315. void clear_actual_load_status();
  1316. static const int kActualLoadStatusFieldNumber = 5;
  1317. ::message::Load_status actual_load_status() const;
  1318. void set_actual_load_status(::message::Load_status value);
  1319. // optional int32 actual_coordinates_id = 6;
  1320. bool has_actual_coordinates_id() const;
  1321. void clear_actual_coordinates_id();
  1322. static const int kActualCoordinatesIdFieldNumber = 6;
  1323. ::google::protobuf::int32 actual_coordinates_id() const;
  1324. void set_actual_coordinates_id(::google::protobuf::int32 value);
  1325. // optional float actual_x = 7;
  1326. bool has_actual_x() const;
  1327. void clear_actual_x();
  1328. static const int kActualXFieldNumber = 7;
  1329. float actual_x() const;
  1330. void set_actual_x(float value);
  1331. // optional float actual_y = 8;
  1332. bool has_actual_y() const;
  1333. void clear_actual_y();
  1334. static const int kActualYFieldNumber = 8;
  1335. float actual_y() const;
  1336. void set_actual_y(float value);
  1337. // optional float actual_z = 9;
  1338. bool has_actual_z() const;
  1339. void clear_actual_z();
  1340. static const int kActualZFieldNumber = 9;
  1341. float actual_z() const;
  1342. void set_actual_z(float value);
  1343. // optional float actual_y1 = 10;
  1344. bool has_actual_y1() const;
  1345. void clear_actual_y1();
  1346. static const int kActualY1FieldNumber = 10;
  1347. float actual_y1() const;
  1348. void set_actual_y1(float value);
  1349. // optional float actual_y2 = 11;
  1350. bool has_actual_y2() const;
  1351. void clear_actual_y2();
  1352. static const int kActualY2FieldNumber = 11;
  1353. float actual_y2() const;
  1354. void set_actual_y2(float value);
  1355. // optional .message.Clamp_motion actual_clamp_motion1 = 12;
  1356. bool has_actual_clamp_motion1() const;
  1357. void clear_actual_clamp_motion1();
  1358. static const int kActualClampMotion1FieldNumber = 12;
  1359. ::message::Clamp_motion actual_clamp_motion1() const;
  1360. void set_actual_clamp_motion1(::message::Clamp_motion value);
  1361. // optional .message.Clamp_motion actual_clamp_motion2 = 13;
  1362. bool has_actual_clamp_motion2() const;
  1363. void clear_actual_clamp_motion2();
  1364. static const int kActualClampMotion2FieldNumber = 13;
  1365. ::message::Clamp_motion actual_clamp_motion2() const;
  1366. void set_actual_clamp_motion2(::message::Clamp_motion value);
  1367. // optional .message.Small_sports_car_motion actual_small_sports_car_motion = 14;
  1368. bool has_actual_small_sports_car_motion() const;
  1369. void clear_actual_small_sports_car_motion();
  1370. static const int kActualSmallSportsCarMotionFieldNumber = 14;
  1371. ::message::Small_sports_car_motion actual_small_sports_car_motion() const;
  1372. void set_actual_small_sports_car_motion(::message::Small_sports_car_motion value);
  1373. // optional .message.Joint_motion actual_joint_motion_x1 = 15;
  1374. bool has_actual_joint_motion_x1() const;
  1375. void clear_actual_joint_motion_x1();
  1376. static const int kActualJointMotionX1FieldNumber = 15;
  1377. ::message::Joint_motion actual_joint_motion_x1() const;
  1378. void set_actual_joint_motion_x1(::message::Joint_motion value);
  1379. // optional .message.Joint_motion actual_joint_motion_x2 = 16;
  1380. bool has_actual_joint_motion_x2() const;
  1381. void clear_actual_joint_motion_x2();
  1382. static const int kActualJointMotionX2FieldNumber = 16;
  1383. ::message::Joint_motion actual_joint_motion_x2() const;
  1384. void set_actual_joint_motion_x2(::message::Joint_motion value);
  1385. // required .message.Dispatch_device_type dispatch_device_type = 1;
  1386. bool has_dispatch_device_type() const;
  1387. void clear_dispatch_device_type();
  1388. static const int kDispatchDeviceTypeFieldNumber = 1;
  1389. ::message::Dispatch_device_type dispatch_device_type() const;
  1390. void set_dispatch_device_type(::message::Dispatch_device_type value);
  1391. // @@protoc_insertion_point(class_scope:message.Carrier_data)
  1392. private:
  1393. void set_has_dispatch_device_type();
  1394. void clear_has_dispatch_device_type();
  1395. void set_has_dispatch_device_status();
  1396. void clear_has_dispatch_device_status();
  1397. void set_has_device_id();
  1398. void clear_has_device_id();
  1399. void set_has_actual_device_status();
  1400. void clear_has_actual_device_status();
  1401. void set_has_actual_load_status();
  1402. void clear_has_actual_load_status();
  1403. void set_has_actual_coordinates_id();
  1404. void clear_has_actual_coordinates_id();
  1405. void set_has_actual_x();
  1406. void clear_has_actual_x();
  1407. void set_has_actual_y();
  1408. void clear_has_actual_y();
  1409. void set_has_actual_z();
  1410. void clear_has_actual_z();
  1411. void set_has_actual_y1();
  1412. void clear_has_actual_y1();
  1413. void set_has_actual_y2();
  1414. void clear_has_actual_y2();
  1415. void set_has_actual_clamp_motion1();
  1416. void clear_has_actual_clamp_motion1();
  1417. void set_has_actual_clamp_motion2();
  1418. void clear_has_actual_clamp_motion2();
  1419. void set_has_actual_small_sports_car_motion();
  1420. void clear_has_actual_small_sports_car_motion();
  1421. void set_has_actual_joint_motion_x1();
  1422. void clear_has_actual_joint_motion_x1();
  1423. void set_has_actual_joint_motion_x2();
  1424. void clear_has_actual_joint_motion_x2();
  1425. void set_has_actual_error_code();
  1426. void clear_has_actual_error_code();
  1427. void set_has_actual_warning_code();
  1428. void clear_has_actual_warning_code();
  1429. void set_has_actual_error_description();
  1430. void clear_has_actual_error_description();
  1431. // helper for ByteSizeLong()
  1432. size_t RequiredFieldsByteSizeFallback() const;
  1433. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  1434. ::google::protobuf::internal::HasBits<1> _has_bits_;
  1435. mutable ::google::protobuf::internal::CachedSize _cached_size_;
  1436. ::google::protobuf::internal::ArenaStringPtr actual_error_code_;
  1437. ::google::protobuf::internal::ArenaStringPtr actual_warning_code_;
  1438. ::google::protobuf::internal::ArenaStringPtr actual_error_description_;
  1439. int dispatch_device_status_;
  1440. ::google::protobuf::int32 device_id_;
  1441. int actual_device_status_;
  1442. int actual_load_status_;
  1443. ::google::protobuf::int32 actual_coordinates_id_;
  1444. float actual_x_;
  1445. float actual_y_;
  1446. float actual_z_;
  1447. float actual_y1_;
  1448. float actual_y2_;
  1449. int actual_clamp_motion1_;
  1450. int actual_clamp_motion2_;
  1451. int actual_small_sports_car_motion_;
  1452. int actual_joint_motion_x1_;
  1453. int actual_joint_motion_x2_;
  1454. int dispatch_device_type_;
  1455. friend struct ::protobuf_dispatch_5fmessage_2eproto::TableStruct;
  1456. };
  1457. // -------------------------------------------------------------------
  1458. class Passageway_data : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Passageway_data) */ {
  1459. public:
  1460. Passageway_data();
  1461. virtual ~Passageway_data();
  1462. Passageway_data(const Passageway_data& from);
  1463. inline Passageway_data& operator=(const Passageway_data& from) {
  1464. CopyFrom(from);
  1465. return *this;
  1466. }
  1467. #if LANG_CXX11
  1468. Passageway_data(Passageway_data&& from) noexcept
  1469. : Passageway_data() {
  1470. *this = ::std::move(from);
  1471. }
  1472. inline Passageway_data& operator=(Passageway_data&& from) noexcept {
  1473. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  1474. if (this != &from) InternalSwap(&from);
  1475. } else {
  1476. CopyFrom(from);
  1477. }
  1478. return *this;
  1479. }
  1480. #endif
  1481. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  1482. return _internal_metadata_.unknown_fields();
  1483. }
  1484. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  1485. return _internal_metadata_.mutable_unknown_fields();
  1486. }
  1487. static const ::google::protobuf::Descriptor* descriptor();
  1488. static const Passageway_data& default_instance();
  1489. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  1490. static inline const Passageway_data* internal_default_instance() {
  1491. return reinterpret_cast<const Passageway_data*>(
  1492. &_Passageway_data_default_instance_);
  1493. }
  1494. static constexpr int kIndexInFileMessages =
  1495. 5;
  1496. void Swap(Passageway_data* other);
  1497. friend void swap(Passageway_data& a, Passageway_data& b) {
  1498. a.Swap(&b);
  1499. }
  1500. // implements Message ----------------------------------------------
  1501. inline Passageway_data* New() const final {
  1502. return CreateMaybeMessage<Passageway_data>(NULL);
  1503. }
  1504. Passageway_data* New(::google::protobuf::Arena* arena) const final {
  1505. return CreateMaybeMessage<Passageway_data>(arena);
  1506. }
  1507. void CopyFrom(const ::google::protobuf::Message& from) final;
  1508. void MergeFrom(const ::google::protobuf::Message& from) final;
  1509. void CopyFrom(const Passageway_data& from);
  1510. void MergeFrom(const Passageway_data& from);
  1511. void Clear() final;
  1512. bool IsInitialized() const final;
  1513. size_t ByteSizeLong() const final;
  1514. bool MergePartialFromCodedStream(
  1515. ::google::protobuf::io::CodedInputStream* input) final;
  1516. void SerializeWithCachedSizes(
  1517. ::google::protobuf::io::CodedOutputStream* output) const final;
  1518. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  1519. bool deterministic, ::google::protobuf::uint8* target) const final;
  1520. int GetCachedSize() const final { return _cached_size_.Get(); }
  1521. private:
  1522. void SharedCtor();
  1523. void SharedDtor();
  1524. void SetCachedSize(int size) const final;
  1525. void InternalSwap(Passageway_data* other);
  1526. private:
  1527. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  1528. return NULL;
  1529. }
  1530. inline void* MaybeArenaPtr() const {
  1531. return NULL;
  1532. }
  1533. public:
  1534. ::google::protobuf::Metadata GetMetadata() const final;
  1535. // nested types ----------------------------------------------------
  1536. // accessors -------------------------------------------------------
  1537. // optional string actual_error_code = 15;
  1538. bool has_actual_error_code() const;
  1539. void clear_actual_error_code();
  1540. static const int kActualErrorCodeFieldNumber = 15;
  1541. const ::std::string& actual_error_code() const;
  1542. void set_actual_error_code(const ::std::string& value);
  1543. #if LANG_CXX11
  1544. void set_actual_error_code(::std::string&& value);
  1545. #endif
  1546. void set_actual_error_code(const char* value);
  1547. void set_actual_error_code(const char* value, size_t size);
  1548. ::std::string* mutable_actual_error_code();
  1549. ::std::string* release_actual_error_code();
  1550. void set_allocated_actual_error_code(::std::string* actual_error_code);
  1551. // optional string actual_warning_code = 16;
  1552. bool has_actual_warning_code() const;
  1553. void clear_actual_warning_code();
  1554. static const int kActualWarningCodeFieldNumber = 16;
  1555. const ::std::string& actual_warning_code() const;
  1556. void set_actual_warning_code(const ::std::string& value);
  1557. #if LANG_CXX11
  1558. void set_actual_warning_code(::std::string&& value);
  1559. #endif
  1560. void set_actual_warning_code(const char* value);
  1561. void set_actual_warning_code(const char* value, size_t size);
  1562. ::std::string* mutable_actual_warning_code();
  1563. ::std::string* release_actual_warning_code();
  1564. void set_allocated_actual_warning_code(::std::string* actual_warning_code);
  1565. // optional string actual_error_description = 17;
  1566. bool has_actual_error_description() const;
  1567. void clear_actual_error_description();
  1568. static const int kActualErrorDescriptionFieldNumber = 17;
  1569. const ::std::string& actual_error_description() const;
  1570. void set_actual_error_description(const ::std::string& value);
  1571. #if LANG_CXX11
  1572. void set_actual_error_description(::std::string&& value);
  1573. #endif
  1574. void set_actual_error_description(const char* value);
  1575. void set_actual_error_description(const char* value, size_t size);
  1576. ::std::string* mutable_actual_error_description();
  1577. ::std::string* release_actual_error_description();
  1578. void set_allocated_actual_error_description(::std::string* actual_error_description);
  1579. // required .message.Dispatch_device_status dispatch_device_status = 2;
  1580. bool has_dispatch_device_status() const;
  1581. void clear_dispatch_device_status();
  1582. static const int kDispatchDeviceStatusFieldNumber = 2;
  1583. ::message::Dispatch_device_status dispatch_device_status() const;
  1584. void set_dispatch_device_status(::message::Dispatch_device_status value);
  1585. // required int32 device_id = 3;
  1586. bool has_device_id() const;
  1587. void clear_device_id();
  1588. static const int kDeviceIdFieldNumber = 3;
  1589. ::google::protobuf::int32 device_id() const;
  1590. void set_device_id(::google::protobuf::int32 value);
  1591. // optional .message.Hardware_device_status actual_device_status = 4;
  1592. bool has_actual_device_status() const;
  1593. void clear_actual_device_status();
  1594. static const int kActualDeviceStatusFieldNumber = 4;
  1595. ::message::Hardware_device_status actual_device_status() const;
  1596. void set_actual_device_status(::message::Hardware_device_status value);
  1597. // optional .message.Load_status actual_inside_load_status = 5;
  1598. bool has_actual_inside_load_status() const;
  1599. void clear_actual_inside_load_status();
  1600. static const int kActualInsideLoadStatusFieldNumber = 5;
  1601. ::message::Load_status actual_inside_load_status() const;
  1602. void set_actual_inside_load_status(::message::Load_status value);
  1603. // optional .message.Load_status actual_outside_load_status = 6;
  1604. bool has_actual_outside_load_status() const;
  1605. void clear_actual_outside_load_status();
  1606. static const int kActualOutsideLoadStatusFieldNumber = 6;
  1607. ::message::Load_status actual_outside_load_status() const;
  1608. void set_actual_outside_load_status(::message::Load_status value);
  1609. // optional .message.Overstep_the_boundary actual_front_overstep_the_boundary = 7;
  1610. bool has_actual_front_overstep_the_boundary() const;
  1611. void clear_actual_front_overstep_the_boundary();
  1612. static const int kActualFrontOverstepTheBoundaryFieldNumber = 7;
  1613. ::message::Overstep_the_boundary actual_front_overstep_the_boundary() const;
  1614. void set_actual_front_overstep_the_boundary(::message::Overstep_the_boundary value);
  1615. // optional .message.Overstep_the_boundary actual_back_overstep_the_boundary = 8;
  1616. bool has_actual_back_overstep_the_boundary() const;
  1617. void clear_actual_back_overstep_the_boundary();
  1618. static const int kActualBackOverstepTheBoundaryFieldNumber = 8;
  1619. ::message::Overstep_the_boundary actual_back_overstep_the_boundary() const;
  1620. void set_actual_back_overstep_the_boundary(::message::Overstep_the_boundary value);
  1621. // optional .message.Overstep_the_boundary actual_height_overstep_the_boundary = 9;
  1622. bool has_actual_height_overstep_the_boundary() const;
  1623. void clear_actual_height_overstep_the_boundary();
  1624. static const int kActualHeightOverstepTheBoundaryFieldNumber = 9;
  1625. ::message::Overstep_the_boundary actual_height_overstep_the_boundary() const;
  1626. void set_actual_height_overstep_the_boundary(::message::Overstep_the_boundary value);
  1627. // optional .message.Load_status actual_outside_door_sensor = 10;
  1628. bool has_actual_outside_door_sensor() const;
  1629. void clear_actual_outside_door_sensor();
  1630. static const int kActualOutsideDoorSensorFieldNumber = 10;
  1631. ::message::Load_status actual_outside_door_sensor() const;
  1632. void set_actual_outside_door_sensor(::message::Load_status value);
  1633. // optional .message.Door_motion actual_inside_door_motion = 11;
  1634. bool has_actual_inside_door_motion() const;
  1635. void clear_actual_inside_door_motion();
  1636. static const int kActualInsideDoorMotionFieldNumber = 11;
  1637. ::message::Door_motion actual_inside_door_motion() const;
  1638. void set_actual_inside_door_motion(::message::Door_motion value);
  1639. // optional .message.Door_motion actual_outside_door_motion = 12;
  1640. bool has_actual_outside_door_motion() const;
  1641. void clear_actual_outside_door_motion();
  1642. static const int kActualOutsideDoorMotionFieldNumber = 12;
  1643. ::message::Door_motion actual_outside_door_motion() const;
  1644. void set_actual_outside_door_motion(::message::Door_motion value);
  1645. // optional .message.Load_status actual_turntable_load_status = 13;
  1646. bool has_actual_turntable_load_status() const;
  1647. void clear_actual_turntable_load_status();
  1648. static const int kActualTurntableLoadStatusFieldNumber = 13;
  1649. ::message::Load_status actual_turntable_load_status() const;
  1650. void set_actual_turntable_load_status(::message::Load_status value);
  1651. // optional .message.Turntable_direction actual_turntable_direction = 14;
  1652. bool has_actual_turntable_direction() const;
  1653. void clear_actual_turntable_direction();
  1654. static const int kActualTurntableDirectionFieldNumber = 14;
  1655. ::message::Turntable_direction actual_turntable_direction() const;
  1656. void set_actual_turntable_direction(::message::Turntable_direction value);
  1657. // required .message.Dispatch_device_type dispatch_device_type = 1;
  1658. bool has_dispatch_device_type() const;
  1659. void clear_dispatch_device_type();
  1660. static const int kDispatchDeviceTypeFieldNumber = 1;
  1661. ::message::Dispatch_device_type dispatch_device_type() const;
  1662. void set_dispatch_device_type(::message::Dispatch_device_type value);
  1663. // @@protoc_insertion_point(class_scope:message.Passageway_data)
  1664. private:
  1665. void set_has_dispatch_device_type();
  1666. void clear_has_dispatch_device_type();
  1667. void set_has_dispatch_device_status();
  1668. void clear_has_dispatch_device_status();
  1669. void set_has_device_id();
  1670. void clear_has_device_id();
  1671. void set_has_actual_device_status();
  1672. void clear_has_actual_device_status();
  1673. void set_has_actual_inside_load_status();
  1674. void clear_has_actual_inside_load_status();
  1675. void set_has_actual_outside_load_status();
  1676. void clear_has_actual_outside_load_status();
  1677. void set_has_actual_front_overstep_the_boundary();
  1678. void clear_has_actual_front_overstep_the_boundary();
  1679. void set_has_actual_back_overstep_the_boundary();
  1680. void clear_has_actual_back_overstep_the_boundary();
  1681. void set_has_actual_height_overstep_the_boundary();
  1682. void clear_has_actual_height_overstep_the_boundary();
  1683. void set_has_actual_outside_door_sensor();
  1684. void clear_has_actual_outside_door_sensor();
  1685. void set_has_actual_inside_door_motion();
  1686. void clear_has_actual_inside_door_motion();
  1687. void set_has_actual_outside_door_motion();
  1688. void clear_has_actual_outside_door_motion();
  1689. void set_has_actual_turntable_load_status();
  1690. void clear_has_actual_turntable_load_status();
  1691. void set_has_actual_turntable_direction();
  1692. void clear_has_actual_turntable_direction();
  1693. void set_has_actual_error_code();
  1694. void clear_has_actual_error_code();
  1695. void set_has_actual_warning_code();
  1696. void clear_has_actual_warning_code();
  1697. void set_has_actual_error_description();
  1698. void clear_has_actual_error_description();
  1699. // helper for ByteSizeLong()
  1700. size_t RequiredFieldsByteSizeFallback() const;
  1701. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  1702. ::google::protobuf::internal::HasBits<1> _has_bits_;
  1703. mutable ::google::protobuf::internal::CachedSize _cached_size_;
  1704. ::google::protobuf::internal::ArenaStringPtr actual_error_code_;
  1705. ::google::protobuf::internal::ArenaStringPtr actual_warning_code_;
  1706. ::google::protobuf::internal::ArenaStringPtr actual_error_description_;
  1707. int dispatch_device_status_;
  1708. ::google::protobuf::int32 device_id_;
  1709. int actual_device_status_;
  1710. int actual_inside_load_status_;
  1711. int actual_outside_load_status_;
  1712. int actual_front_overstep_the_boundary_;
  1713. int actual_back_overstep_the_boundary_;
  1714. int actual_height_overstep_the_boundary_;
  1715. int actual_outside_door_sensor_;
  1716. int actual_inside_door_motion_;
  1717. int actual_outside_door_motion_;
  1718. int actual_turntable_load_status_;
  1719. int actual_turntable_direction_;
  1720. int dispatch_device_type_;
  1721. friend struct ::protobuf_dispatch_5fmessage_2eproto::TableStruct;
  1722. };
  1723. // -------------------------------------------------------------------
  1724. class Dispatch_manager_status_msg : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Dispatch_manager_status_msg) */ {
  1725. public:
  1726. Dispatch_manager_status_msg();
  1727. virtual ~Dispatch_manager_status_msg();
  1728. Dispatch_manager_status_msg(const Dispatch_manager_status_msg& from);
  1729. inline Dispatch_manager_status_msg& operator=(const Dispatch_manager_status_msg& from) {
  1730. CopyFrom(from);
  1731. return *this;
  1732. }
  1733. #if LANG_CXX11
  1734. Dispatch_manager_status_msg(Dispatch_manager_status_msg&& from) noexcept
  1735. : Dispatch_manager_status_msg() {
  1736. *this = ::std::move(from);
  1737. }
  1738. inline Dispatch_manager_status_msg& operator=(Dispatch_manager_status_msg&& from) noexcept {
  1739. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  1740. if (this != &from) InternalSwap(&from);
  1741. } else {
  1742. CopyFrom(from);
  1743. }
  1744. return *this;
  1745. }
  1746. #endif
  1747. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  1748. return _internal_metadata_.unknown_fields();
  1749. }
  1750. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  1751. return _internal_metadata_.mutable_unknown_fields();
  1752. }
  1753. static const ::google::protobuf::Descriptor* descriptor();
  1754. static const Dispatch_manager_status_msg& default_instance();
  1755. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  1756. static inline const Dispatch_manager_status_msg* internal_default_instance() {
  1757. return reinterpret_cast<const Dispatch_manager_status_msg*>(
  1758. &_Dispatch_manager_status_msg_default_instance_);
  1759. }
  1760. static constexpr int kIndexInFileMessages =
  1761. 6;
  1762. void Swap(Dispatch_manager_status_msg* other);
  1763. friend void swap(Dispatch_manager_status_msg& a, Dispatch_manager_status_msg& b) {
  1764. a.Swap(&b);
  1765. }
  1766. // implements Message ----------------------------------------------
  1767. inline Dispatch_manager_status_msg* New() const final {
  1768. return CreateMaybeMessage<Dispatch_manager_status_msg>(NULL);
  1769. }
  1770. Dispatch_manager_status_msg* New(::google::protobuf::Arena* arena) const final {
  1771. return CreateMaybeMessage<Dispatch_manager_status_msg>(arena);
  1772. }
  1773. void CopyFrom(const ::google::protobuf::Message& from) final;
  1774. void MergeFrom(const ::google::protobuf::Message& from) final;
  1775. void CopyFrom(const Dispatch_manager_status_msg& from);
  1776. void MergeFrom(const Dispatch_manager_status_msg& from);
  1777. void Clear() final;
  1778. bool IsInitialized() const final;
  1779. size_t ByteSizeLong() const final;
  1780. bool MergePartialFromCodedStream(
  1781. ::google::protobuf::io::CodedInputStream* input) final;
  1782. void SerializeWithCachedSizes(
  1783. ::google::protobuf::io::CodedOutputStream* output) const final;
  1784. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  1785. bool deterministic, ::google::protobuf::uint8* target) const final;
  1786. int GetCachedSize() const final { return _cached_size_.Get(); }
  1787. private:
  1788. void SharedCtor();
  1789. void SharedDtor();
  1790. void SetCachedSize(int size) const final;
  1791. void InternalSwap(Dispatch_manager_status_msg* other);
  1792. private:
  1793. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  1794. return NULL;
  1795. }
  1796. inline void* MaybeArenaPtr() const {
  1797. return NULL;
  1798. }
  1799. public:
  1800. ::google::protobuf::Metadata GetMetadata() const final;
  1801. // nested types ----------------------------------------------------
  1802. // accessors -------------------------------------------------------
  1803. // repeated .message.Catcher_data catcher_data_map = 4;
  1804. int catcher_data_map_size() const;
  1805. void clear_catcher_data_map();
  1806. static const int kCatcherDataMapFieldNumber = 4;
  1807. ::message::Catcher_data* mutable_catcher_data_map(int index);
  1808. ::google::protobuf::RepeatedPtrField< ::message::Catcher_data >*
  1809. mutable_catcher_data_map();
  1810. const ::message::Catcher_data& catcher_data_map(int index) const;
  1811. ::message::Catcher_data* add_catcher_data_map();
  1812. const ::google::protobuf::RepeatedPtrField< ::message::Catcher_data >&
  1813. catcher_data_map() const;
  1814. // repeated .message.Carrier_data carrier_data_map = 5;
  1815. int carrier_data_map_size() const;
  1816. void clear_carrier_data_map();
  1817. static const int kCarrierDataMapFieldNumber = 5;
  1818. ::message::Carrier_data* mutable_carrier_data_map(int index);
  1819. ::google::protobuf::RepeatedPtrField< ::message::Carrier_data >*
  1820. mutable_carrier_data_map();
  1821. const ::message::Carrier_data& carrier_data_map(int index) const;
  1822. ::message::Carrier_data* add_carrier_data_map();
  1823. const ::google::protobuf::RepeatedPtrField< ::message::Carrier_data >&
  1824. carrier_data_map() const;
  1825. // repeated .message.Passageway_data passageway_data_map = 6;
  1826. int passageway_data_map_size() const;
  1827. void clear_passageway_data_map();
  1828. static const int kPassagewayDataMapFieldNumber = 6;
  1829. ::message::Passageway_data* mutable_passageway_data_map(int index);
  1830. ::google::protobuf::RepeatedPtrField< ::message::Passageway_data >*
  1831. mutable_passageway_data_map();
  1832. const ::message::Passageway_data& passageway_data_map(int index) const;
  1833. ::message::Passageway_data* add_passageway_data_map();
  1834. const ::google::protobuf::RepeatedPtrField< ::message::Passageway_data >&
  1835. passageway_data_map() const;
  1836. // required .message.Base_info base_info = 1;
  1837. bool has_base_info() const;
  1838. void clear_base_info();
  1839. static const int kBaseInfoFieldNumber = 1;
  1840. private:
  1841. const ::message::Base_info& _internal_base_info() const;
  1842. public:
  1843. const ::message::Base_info& base_info() const;
  1844. ::message::Base_info* release_base_info();
  1845. ::message::Base_info* mutable_base_info();
  1846. void set_allocated_base_info(::message::Base_info* base_info);
  1847. // required int32 dispatch_id = 2;
  1848. bool has_dispatch_id() const;
  1849. void clear_dispatch_id();
  1850. static const int kDispatchIdFieldNumber = 2;
  1851. ::google::protobuf::int32 dispatch_id() const;
  1852. void set_dispatch_id(::google::protobuf::int32 value);
  1853. // required .message.Dispatch_manager_status dispatch_manager_status = 3;
  1854. bool has_dispatch_manager_status() const;
  1855. void clear_dispatch_manager_status();
  1856. static const int kDispatchManagerStatusFieldNumber = 3;
  1857. ::message::Dispatch_manager_status dispatch_manager_status() const;
  1858. void set_dispatch_manager_status(::message::Dispatch_manager_status value);
  1859. // @@protoc_insertion_point(class_scope:message.Dispatch_manager_status_msg)
  1860. private:
  1861. void set_has_base_info();
  1862. void clear_has_base_info();
  1863. void set_has_dispatch_id();
  1864. void clear_has_dispatch_id();
  1865. void set_has_dispatch_manager_status();
  1866. void clear_has_dispatch_manager_status();
  1867. // helper for ByteSizeLong()
  1868. size_t RequiredFieldsByteSizeFallback() const;
  1869. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  1870. ::google::protobuf::internal::HasBits<1> _has_bits_;
  1871. mutable ::google::protobuf::internal::CachedSize _cached_size_;
  1872. ::google::protobuf::RepeatedPtrField< ::message::Catcher_data > catcher_data_map_;
  1873. ::google::protobuf::RepeatedPtrField< ::message::Carrier_data > carrier_data_map_;
  1874. ::google::protobuf::RepeatedPtrField< ::message::Passageway_data > passageway_data_map_;
  1875. ::message::Base_info* base_info_;
  1876. ::google::protobuf::int32 dispatch_id_;
  1877. int dispatch_manager_status_;
  1878. friend struct ::protobuf_dispatch_5fmessage_2eproto::TableStruct;
  1879. };
  1880. // -------------------------------------------------------------------
  1881. class Dispatch_manager_data_msg : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Dispatch_manager_data_msg) */ {
  1882. public:
  1883. Dispatch_manager_data_msg();
  1884. virtual ~Dispatch_manager_data_msg();
  1885. Dispatch_manager_data_msg(const Dispatch_manager_data_msg& from);
  1886. inline Dispatch_manager_data_msg& operator=(const Dispatch_manager_data_msg& from) {
  1887. CopyFrom(from);
  1888. return *this;
  1889. }
  1890. #if LANG_CXX11
  1891. Dispatch_manager_data_msg(Dispatch_manager_data_msg&& from) noexcept
  1892. : Dispatch_manager_data_msg() {
  1893. *this = ::std::move(from);
  1894. }
  1895. inline Dispatch_manager_data_msg& operator=(Dispatch_manager_data_msg&& from) noexcept {
  1896. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  1897. if (this != &from) InternalSwap(&from);
  1898. } else {
  1899. CopyFrom(from);
  1900. }
  1901. return *this;
  1902. }
  1903. #endif
  1904. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  1905. return _internal_metadata_.unknown_fields();
  1906. }
  1907. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  1908. return _internal_metadata_.mutable_unknown_fields();
  1909. }
  1910. static const ::google::protobuf::Descriptor* descriptor();
  1911. static const Dispatch_manager_data_msg& default_instance();
  1912. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  1913. static inline const Dispatch_manager_data_msg* internal_default_instance() {
  1914. return reinterpret_cast<const Dispatch_manager_data_msg*>(
  1915. &_Dispatch_manager_data_msg_default_instance_);
  1916. }
  1917. static constexpr int kIndexInFileMessages =
  1918. 7;
  1919. void Swap(Dispatch_manager_data_msg* other);
  1920. friend void swap(Dispatch_manager_data_msg& a, Dispatch_manager_data_msg& b) {
  1921. a.Swap(&b);
  1922. }
  1923. // implements Message ----------------------------------------------
  1924. inline Dispatch_manager_data_msg* New() const final {
  1925. return CreateMaybeMessage<Dispatch_manager_data_msg>(NULL);
  1926. }
  1927. Dispatch_manager_data_msg* New(::google::protobuf::Arena* arena) const final {
  1928. return CreateMaybeMessage<Dispatch_manager_data_msg>(arena);
  1929. }
  1930. void CopyFrom(const ::google::protobuf::Message& from) final;
  1931. void MergeFrom(const ::google::protobuf::Message& from) final;
  1932. void CopyFrom(const Dispatch_manager_data_msg& from);
  1933. void MergeFrom(const Dispatch_manager_data_msg& from);
  1934. void Clear() final;
  1935. bool IsInitialized() const final;
  1936. size_t ByteSizeLong() const final;
  1937. bool MergePartialFromCodedStream(
  1938. ::google::protobuf::io::CodedInputStream* input) final;
  1939. void SerializeWithCachedSizes(
  1940. ::google::protobuf::io::CodedOutputStream* output) const final;
  1941. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  1942. bool deterministic, ::google::protobuf::uint8* target) const final;
  1943. int GetCachedSize() const final { return _cached_size_.Get(); }
  1944. private:
  1945. void SharedCtor();
  1946. void SharedDtor();
  1947. void SetCachedSize(int size) const final;
  1948. void InternalSwap(Dispatch_manager_data_msg* other);
  1949. private:
  1950. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  1951. return NULL;
  1952. }
  1953. inline void* MaybeArenaPtr() const {
  1954. return NULL;
  1955. }
  1956. public:
  1957. ::google::protobuf::Metadata GetMetadata() const final;
  1958. // nested types ----------------------------------------------------
  1959. // accessors -------------------------------------------------------
  1960. // @@protoc_insertion_point(class_scope:message.Dispatch_manager_data_msg)
  1961. private:
  1962. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  1963. ::google::protobuf::internal::HasBits<1> _has_bits_;
  1964. mutable ::google::protobuf::internal::CachedSize _cached_size_;
  1965. friend struct ::protobuf_dispatch_5fmessage_2eproto::TableStruct;
  1966. };
  1967. // ===================================================================
  1968. // ===================================================================
  1969. #ifdef __GNUC__
  1970. #pragma GCC diagnostic push
  1971. #pragma GCC diagnostic ignored "-Wstrict-aliasing"
  1972. #endif // __GNUC__
  1973. // Dispatch_terminal_status_msg
  1974. // required .message.Base_info base_info = 1;
  1975. inline bool Dispatch_terminal_status_msg::has_base_info() const {
  1976. return (_has_bits_[0] & 0x00000001u) != 0;
  1977. }
  1978. inline void Dispatch_terminal_status_msg::set_has_base_info() {
  1979. _has_bits_[0] |= 0x00000001u;
  1980. }
  1981. inline void Dispatch_terminal_status_msg::clear_has_base_info() {
  1982. _has_bits_[0] &= ~0x00000001u;
  1983. }
  1984. inline const ::message::Base_info& Dispatch_terminal_status_msg::_internal_base_info() const {
  1985. return *base_info_;
  1986. }
  1987. inline const ::message::Base_info& Dispatch_terminal_status_msg::base_info() const {
  1988. const ::message::Base_info* p = base_info_;
  1989. // @@protoc_insertion_point(field_get:message.Dispatch_terminal_status_msg.base_info)
  1990. return p != NULL ? *p : *reinterpret_cast<const ::message::Base_info*>(
  1991. &::message::_Base_info_default_instance_);
  1992. }
  1993. inline ::message::Base_info* Dispatch_terminal_status_msg::release_base_info() {
  1994. // @@protoc_insertion_point(field_release:message.Dispatch_terminal_status_msg.base_info)
  1995. clear_has_base_info();
  1996. ::message::Base_info* temp = base_info_;
  1997. base_info_ = NULL;
  1998. return temp;
  1999. }
  2000. inline ::message::Base_info* Dispatch_terminal_status_msg::mutable_base_info() {
  2001. set_has_base_info();
  2002. if (base_info_ == NULL) {
  2003. auto* p = CreateMaybeMessage<::message::Base_info>(GetArenaNoVirtual());
  2004. base_info_ = p;
  2005. }
  2006. // @@protoc_insertion_point(field_mutable:message.Dispatch_terminal_status_msg.base_info)
  2007. return base_info_;
  2008. }
  2009. inline void Dispatch_terminal_status_msg::set_allocated_base_info(::message::Base_info* base_info) {
  2010. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  2011. if (message_arena == NULL) {
  2012. delete reinterpret_cast< ::google::protobuf::MessageLite*>(base_info_);
  2013. }
  2014. if (base_info) {
  2015. ::google::protobuf::Arena* submessage_arena = NULL;
  2016. if (message_arena != submessage_arena) {
  2017. base_info = ::google::protobuf::internal::GetOwnedMessage(
  2018. message_arena, base_info, submessage_arena);
  2019. }
  2020. set_has_base_info();
  2021. } else {
  2022. clear_has_base_info();
  2023. }
  2024. base_info_ = base_info;
  2025. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_terminal_status_msg.base_info)
  2026. }
  2027. // required .message.Id_struct id_struct = 2;
  2028. inline bool Dispatch_terminal_status_msg::has_id_struct() const {
  2029. return (_has_bits_[0] & 0x00000002u) != 0;
  2030. }
  2031. inline void Dispatch_terminal_status_msg::set_has_id_struct() {
  2032. _has_bits_[0] |= 0x00000002u;
  2033. }
  2034. inline void Dispatch_terminal_status_msg::clear_has_id_struct() {
  2035. _has_bits_[0] &= ~0x00000002u;
  2036. }
  2037. inline const ::message::Id_struct& Dispatch_terminal_status_msg::_internal_id_struct() const {
  2038. return *id_struct_;
  2039. }
  2040. inline const ::message::Id_struct& Dispatch_terminal_status_msg::id_struct() const {
  2041. const ::message::Id_struct* p = id_struct_;
  2042. // @@protoc_insertion_point(field_get:message.Dispatch_terminal_status_msg.id_struct)
  2043. return p != NULL ? *p : *reinterpret_cast<const ::message::Id_struct*>(
  2044. &::message::_Id_struct_default_instance_);
  2045. }
  2046. inline ::message::Id_struct* Dispatch_terminal_status_msg::release_id_struct() {
  2047. // @@protoc_insertion_point(field_release:message.Dispatch_terminal_status_msg.id_struct)
  2048. clear_has_id_struct();
  2049. ::message::Id_struct* temp = id_struct_;
  2050. id_struct_ = NULL;
  2051. return temp;
  2052. }
  2053. inline ::message::Id_struct* Dispatch_terminal_status_msg::mutable_id_struct() {
  2054. set_has_id_struct();
  2055. if (id_struct_ == NULL) {
  2056. auto* p = CreateMaybeMessage<::message::Id_struct>(GetArenaNoVirtual());
  2057. id_struct_ = p;
  2058. }
  2059. // @@protoc_insertion_point(field_mutable:message.Dispatch_terminal_status_msg.id_struct)
  2060. return id_struct_;
  2061. }
  2062. inline void Dispatch_terminal_status_msg::set_allocated_id_struct(::message::Id_struct* id_struct) {
  2063. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  2064. if (message_arena == NULL) {
  2065. delete reinterpret_cast< ::google::protobuf::MessageLite*>(id_struct_);
  2066. }
  2067. if (id_struct) {
  2068. ::google::protobuf::Arena* submessage_arena = NULL;
  2069. if (message_arena != submessage_arena) {
  2070. id_struct = ::google::protobuf::internal::GetOwnedMessage(
  2071. message_arena, id_struct, submessage_arena);
  2072. }
  2073. set_has_id_struct();
  2074. } else {
  2075. clear_has_id_struct();
  2076. }
  2077. id_struct_ = id_struct;
  2078. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_terminal_status_msg.id_struct)
  2079. }
  2080. // required .message.Terminal_status terminal_status = 3;
  2081. inline bool Dispatch_terminal_status_msg::has_terminal_status() const {
  2082. return (_has_bits_[0] & 0x00000004u) != 0;
  2083. }
  2084. inline void Dispatch_terminal_status_msg::set_has_terminal_status() {
  2085. _has_bits_[0] |= 0x00000004u;
  2086. }
  2087. inline void Dispatch_terminal_status_msg::clear_has_terminal_status() {
  2088. _has_bits_[0] &= ~0x00000004u;
  2089. }
  2090. inline void Dispatch_terminal_status_msg::clear_terminal_status() {
  2091. terminal_status_ = 0;
  2092. clear_has_terminal_status();
  2093. }
  2094. inline ::message::Terminal_status Dispatch_terminal_status_msg::terminal_status() const {
  2095. // @@protoc_insertion_point(field_get:message.Dispatch_terminal_status_msg.terminal_status)
  2096. return static_cast< ::message::Terminal_status >(terminal_status_);
  2097. }
  2098. inline void Dispatch_terminal_status_msg::set_terminal_status(::message::Terminal_status value) {
  2099. assert(::message::Terminal_status_IsValid(value));
  2100. set_has_terminal_status();
  2101. terminal_status_ = value;
  2102. // @@protoc_insertion_point(field_set:message.Dispatch_terminal_status_msg.terminal_status)
  2103. }
  2104. // required .message.Passageway_direction passageway_direction = 4;
  2105. inline bool Dispatch_terminal_status_msg::has_passageway_direction() const {
  2106. return (_has_bits_[0] & 0x00000008u) != 0;
  2107. }
  2108. inline void Dispatch_terminal_status_msg::set_has_passageway_direction() {
  2109. _has_bits_[0] |= 0x00000008u;
  2110. }
  2111. inline void Dispatch_terminal_status_msg::clear_has_passageway_direction() {
  2112. _has_bits_[0] &= ~0x00000008u;
  2113. }
  2114. inline void Dispatch_terminal_status_msg::clear_passageway_direction() {
  2115. passageway_direction_ = 0;
  2116. clear_has_passageway_direction();
  2117. }
  2118. inline ::message::Passageway_direction Dispatch_terminal_status_msg::passageway_direction() const {
  2119. // @@protoc_insertion_point(field_get:message.Dispatch_terminal_status_msg.passageway_direction)
  2120. return static_cast< ::message::Passageway_direction >(passageway_direction_);
  2121. }
  2122. inline void Dispatch_terminal_status_msg::set_passageway_direction(::message::Passageway_direction value) {
  2123. assert(::message::Passageway_direction_IsValid(value));
  2124. set_has_passageway_direction();
  2125. passageway_direction_ = value;
  2126. // @@protoc_insertion_point(field_set:message.Dispatch_terminal_status_msg.passageway_direction)
  2127. }
  2128. // -------------------------------------------------------------------
  2129. // Dispatch_request_msg
  2130. // required .message.Base_info base_info = 1;
  2131. inline bool Dispatch_request_msg::has_base_info() const {
  2132. return (_has_bits_[0] & 0x00000002u) != 0;
  2133. }
  2134. inline void Dispatch_request_msg::set_has_base_info() {
  2135. _has_bits_[0] |= 0x00000002u;
  2136. }
  2137. inline void Dispatch_request_msg::clear_has_base_info() {
  2138. _has_bits_[0] &= ~0x00000002u;
  2139. }
  2140. inline const ::message::Base_info& Dispatch_request_msg::_internal_base_info() const {
  2141. return *base_info_;
  2142. }
  2143. inline const ::message::Base_info& Dispatch_request_msg::base_info() const {
  2144. const ::message::Base_info* p = base_info_;
  2145. // @@protoc_insertion_point(field_get:message.Dispatch_request_msg.base_info)
  2146. return p != NULL ? *p : *reinterpret_cast<const ::message::Base_info*>(
  2147. &::message::_Base_info_default_instance_);
  2148. }
  2149. inline ::message::Base_info* Dispatch_request_msg::release_base_info() {
  2150. // @@protoc_insertion_point(field_release:message.Dispatch_request_msg.base_info)
  2151. clear_has_base_info();
  2152. ::message::Base_info* temp = base_info_;
  2153. base_info_ = NULL;
  2154. return temp;
  2155. }
  2156. inline ::message::Base_info* Dispatch_request_msg::mutable_base_info() {
  2157. set_has_base_info();
  2158. if (base_info_ == NULL) {
  2159. auto* p = CreateMaybeMessage<::message::Base_info>(GetArenaNoVirtual());
  2160. base_info_ = p;
  2161. }
  2162. // @@protoc_insertion_point(field_mutable:message.Dispatch_request_msg.base_info)
  2163. return base_info_;
  2164. }
  2165. inline void Dispatch_request_msg::set_allocated_base_info(::message::Base_info* base_info) {
  2166. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  2167. if (message_arena == NULL) {
  2168. delete reinterpret_cast< ::google::protobuf::MessageLite*>(base_info_);
  2169. }
  2170. if (base_info) {
  2171. ::google::protobuf::Arena* submessage_arena = NULL;
  2172. if (message_arena != submessage_arena) {
  2173. base_info = ::google::protobuf::internal::GetOwnedMessage(
  2174. message_arena, base_info, submessage_arena);
  2175. }
  2176. set_has_base_info();
  2177. } else {
  2178. clear_has_base_info();
  2179. }
  2180. base_info_ = base_info;
  2181. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_request_msg.base_info)
  2182. }
  2183. // required string command_key = 2;
  2184. inline bool Dispatch_request_msg::has_command_key() const {
  2185. return (_has_bits_[0] & 0x00000001u) != 0;
  2186. }
  2187. inline void Dispatch_request_msg::set_has_command_key() {
  2188. _has_bits_[0] |= 0x00000001u;
  2189. }
  2190. inline void Dispatch_request_msg::clear_has_command_key() {
  2191. _has_bits_[0] &= ~0x00000001u;
  2192. }
  2193. inline void Dispatch_request_msg::clear_command_key() {
  2194. command_key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2195. clear_has_command_key();
  2196. }
  2197. inline const ::std::string& Dispatch_request_msg::command_key() const {
  2198. // @@protoc_insertion_point(field_get:message.Dispatch_request_msg.command_key)
  2199. return command_key_.GetNoArena();
  2200. }
  2201. inline void Dispatch_request_msg::set_command_key(const ::std::string& value) {
  2202. set_has_command_key();
  2203. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  2204. // @@protoc_insertion_point(field_set:message.Dispatch_request_msg.command_key)
  2205. }
  2206. #if LANG_CXX11
  2207. inline void Dispatch_request_msg::set_command_key(::std::string&& value) {
  2208. set_has_command_key();
  2209. command_key_.SetNoArena(
  2210. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  2211. // @@protoc_insertion_point(field_set_rvalue:message.Dispatch_request_msg.command_key)
  2212. }
  2213. #endif
  2214. inline void Dispatch_request_msg::set_command_key(const char* value) {
  2215. GOOGLE_DCHECK(value != NULL);
  2216. set_has_command_key();
  2217. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  2218. // @@protoc_insertion_point(field_set_char:message.Dispatch_request_msg.command_key)
  2219. }
  2220. inline void Dispatch_request_msg::set_command_key(const char* value, size_t size) {
  2221. set_has_command_key();
  2222. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  2223. ::std::string(reinterpret_cast<const char*>(value), size));
  2224. // @@protoc_insertion_point(field_set_pointer:message.Dispatch_request_msg.command_key)
  2225. }
  2226. inline ::std::string* Dispatch_request_msg::mutable_command_key() {
  2227. set_has_command_key();
  2228. // @@protoc_insertion_point(field_mutable:message.Dispatch_request_msg.command_key)
  2229. return command_key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2230. }
  2231. inline ::std::string* Dispatch_request_msg::release_command_key() {
  2232. // @@protoc_insertion_point(field_release:message.Dispatch_request_msg.command_key)
  2233. if (!has_command_key()) {
  2234. return NULL;
  2235. }
  2236. clear_has_command_key();
  2237. return command_key_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2238. }
  2239. inline void Dispatch_request_msg::set_allocated_command_key(::std::string* command_key) {
  2240. if (command_key != NULL) {
  2241. set_has_command_key();
  2242. } else {
  2243. clear_has_command_key();
  2244. }
  2245. command_key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), command_key);
  2246. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_request_msg.command_key)
  2247. }
  2248. // optional .message.Dispatch_motion_direction dispatch_motion_direction = 3;
  2249. inline bool Dispatch_request_msg::has_dispatch_motion_direction() const {
  2250. return (_has_bits_[0] & 0x00000010u) != 0;
  2251. }
  2252. inline void Dispatch_request_msg::set_has_dispatch_motion_direction() {
  2253. _has_bits_[0] |= 0x00000010u;
  2254. }
  2255. inline void Dispatch_request_msg::clear_has_dispatch_motion_direction() {
  2256. _has_bits_[0] &= ~0x00000010u;
  2257. }
  2258. inline void Dispatch_request_msg::clear_dispatch_motion_direction() {
  2259. dispatch_motion_direction_ = 0;
  2260. clear_has_dispatch_motion_direction();
  2261. }
  2262. inline ::message::Dispatch_motion_direction Dispatch_request_msg::dispatch_motion_direction() const {
  2263. // @@protoc_insertion_point(field_get:message.Dispatch_request_msg.dispatch_motion_direction)
  2264. return static_cast< ::message::Dispatch_motion_direction >(dispatch_motion_direction_);
  2265. }
  2266. inline void Dispatch_request_msg::set_dispatch_motion_direction(::message::Dispatch_motion_direction value) {
  2267. assert(::message::Dispatch_motion_direction_IsValid(value));
  2268. set_has_dispatch_motion_direction();
  2269. dispatch_motion_direction_ = value;
  2270. // @@protoc_insertion_point(field_set:message.Dispatch_request_msg.dispatch_motion_direction)
  2271. }
  2272. // optional .message.Id_struct id_struct = 4;
  2273. inline bool Dispatch_request_msg::has_id_struct() const {
  2274. return (_has_bits_[0] & 0x00000004u) != 0;
  2275. }
  2276. inline void Dispatch_request_msg::set_has_id_struct() {
  2277. _has_bits_[0] |= 0x00000004u;
  2278. }
  2279. inline void Dispatch_request_msg::clear_has_id_struct() {
  2280. _has_bits_[0] &= ~0x00000004u;
  2281. }
  2282. inline const ::message::Id_struct& Dispatch_request_msg::_internal_id_struct() const {
  2283. return *id_struct_;
  2284. }
  2285. inline const ::message::Id_struct& Dispatch_request_msg::id_struct() const {
  2286. const ::message::Id_struct* p = id_struct_;
  2287. // @@protoc_insertion_point(field_get:message.Dispatch_request_msg.id_struct)
  2288. return p != NULL ? *p : *reinterpret_cast<const ::message::Id_struct*>(
  2289. &::message::_Id_struct_default_instance_);
  2290. }
  2291. inline ::message::Id_struct* Dispatch_request_msg::release_id_struct() {
  2292. // @@protoc_insertion_point(field_release:message.Dispatch_request_msg.id_struct)
  2293. clear_has_id_struct();
  2294. ::message::Id_struct* temp = id_struct_;
  2295. id_struct_ = NULL;
  2296. return temp;
  2297. }
  2298. inline ::message::Id_struct* Dispatch_request_msg::mutable_id_struct() {
  2299. set_has_id_struct();
  2300. if (id_struct_ == NULL) {
  2301. auto* p = CreateMaybeMessage<::message::Id_struct>(GetArenaNoVirtual());
  2302. id_struct_ = p;
  2303. }
  2304. // @@protoc_insertion_point(field_mutable:message.Dispatch_request_msg.id_struct)
  2305. return id_struct_;
  2306. }
  2307. inline void Dispatch_request_msg::set_allocated_id_struct(::message::Id_struct* id_struct) {
  2308. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  2309. if (message_arena == NULL) {
  2310. delete reinterpret_cast< ::google::protobuf::MessageLite*>(id_struct_);
  2311. }
  2312. if (id_struct) {
  2313. ::google::protobuf::Arena* submessage_arena = NULL;
  2314. if (message_arena != submessage_arena) {
  2315. id_struct = ::google::protobuf::internal::GetOwnedMessage(
  2316. message_arena, id_struct, submessage_arena);
  2317. }
  2318. set_has_id_struct();
  2319. } else {
  2320. clear_has_id_struct();
  2321. }
  2322. id_struct_ = id_struct;
  2323. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_request_msg.id_struct)
  2324. }
  2325. // optional .message.Locate_information locate_information = 5;
  2326. inline bool Dispatch_request_msg::has_locate_information() const {
  2327. return (_has_bits_[0] & 0x00000008u) != 0;
  2328. }
  2329. inline void Dispatch_request_msg::set_has_locate_information() {
  2330. _has_bits_[0] |= 0x00000008u;
  2331. }
  2332. inline void Dispatch_request_msg::clear_has_locate_information() {
  2333. _has_bits_[0] &= ~0x00000008u;
  2334. }
  2335. inline const ::message::Locate_information& Dispatch_request_msg::_internal_locate_information() const {
  2336. return *locate_information_;
  2337. }
  2338. inline const ::message::Locate_information& Dispatch_request_msg::locate_information() const {
  2339. const ::message::Locate_information* p = locate_information_;
  2340. // @@protoc_insertion_point(field_get:message.Dispatch_request_msg.locate_information)
  2341. return p != NULL ? *p : *reinterpret_cast<const ::message::Locate_information*>(
  2342. &::message::_Locate_information_default_instance_);
  2343. }
  2344. inline ::message::Locate_information* Dispatch_request_msg::release_locate_information() {
  2345. // @@protoc_insertion_point(field_release:message.Dispatch_request_msg.locate_information)
  2346. clear_has_locate_information();
  2347. ::message::Locate_information* temp = locate_information_;
  2348. locate_information_ = NULL;
  2349. return temp;
  2350. }
  2351. inline ::message::Locate_information* Dispatch_request_msg::mutable_locate_information() {
  2352. set_has_locate_information();
  2353. if (locate_information_ == NULL) {
  2354. auto* p = CreateMaybeMessage<::message::Locate_information>(GetArenaNoVirtual());
  2355. locate_information_ = p;
  2356. }
  2357. // @@protoc_insertion_point(field_mutable:message.Dispatch_request_msg.locate_information)
  2358. return locate_information_;
  2359. }
  2360. inline void Dispatch_request_msg::set_allocated_locate_information(::message::Locate_information* locate_information) {
  2361. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  2362. if (message_arena == NULL) {
  2363. delete reinterpret_cast< ::google::protobuf::MessageLite*>(locate_information_);
  2364. }
  2365. if (locate_information) {
  2366. ::google::protobuf::Arena* submessage_arena = NULL;
  2367. if (message_arena != submessage_arena) {
  2368. locate_information = ::google::protobuf::internal::GetOwnedMessage(
  2369. message_arena, locate_information, submessage_arena);
  2370. }
  2371. set_has_locate_information();
  2372. } else {
  2373. clear_has_locate_information();
  2374. }
  2375. locate_information_ = locate_information;
  2376. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_request_msg.locate_information)
  2377. }
  2378. // repeated .message.Parkspace_info parkspace_info_ex = 6;
  2379. inline int Dispatch_request_msg::parkspace_info_ex_size() const {
  2380. return parkspace_info_ex_.size();
  2381. }
  2382. inline ::message::Parkspace_info* Dispatch_request_msg::mutable_parkspace_info_ex(int index) {
  2383. // @@protoc_insertion_point(field_mutable:message.Dispatch_request_msg.parkspace_info_ex)
  2384. return parkspace_info_ex_.Mutable(index);
  2385. }
  2386. inline ::google::protobuf::RepeatedPtrField< ::message::Parkspace_info >*
  2387. Dispatch_request_msg::mutable_parkspace_info_ex() {
  2388. // @@protoc_insertion_point(field_mutable_list:message.Dispatch_request_msg.parkspace_info_ex)
  2389. return &parkspace_info_ex_;
  2390. }
  2391. inline const ::message::Parkspace_info& Dispatch_request_msg::parkspace_info_ex(int index) const {
  2392. // @@protoc_insertion_point(field_get:message.Dispatch_request_msg.parkspace_info_ex)
  2393. return parkspace_info_ex_.Get(index);
  2394. }
  2395. inline ::message::Parkspace_info* Dispatch_request_msg::add_parkspace_info_ex() {
  2396. // @@protoc_insertion_point(field_add:message.Dispatch_request_msg.parkspace_info_ex)
  2397. return parkspace_info_ex_.Add();
  2398. }
  2399. inline const ::google::protobuf::RepeatedPtrField< ::message::Parkspace_info >&
  2400. Dispatch_request_msg::parkspace_info_ex() const {
  2401. // @@protoc_insertion_point(field_list:message.Dispatch_request_msg.parkspace_info_ex)
  2402. return parkspace_info_ex_;
  2403. }
  2404. // optional .message.Car_type car_type = 7;
  2405. inline bool Dispatch_request_msg::has_car_type() const {
  2406. return (_has_bits_[0] & 0x00000020u) != 0;
  2407. }
  2408. inline void Dispatch_request_msg::set_has_car_type() {
  2409. _has_bits_[0] |= 0x00000020u;
  2410. }
  2411. inline void Dispatch_request_msg::clear_has_car_type() {
  2412. _has_bits_[0] &= ~0x00000020u;
  2413. }
  2414. inline void Dispatch_request_msg::clear_car_type() {
  2415. car_type_ = 0;
  2416. clear_has_car_type();
  2417. }
  2418. inline ::message::Car_type Dispatch_request_msg::car_type() const {
  2419. // @@protoc_insertion_point(field_get:message.Dispatch_request_msg.car_type)
  2420. return static_cast< ::message::Car_type >(car_type_);
  2421. }
  2422. inline void Dispatch_request_msg::set_car_type(::message::Car_type value) {
  2423. assert(::message::Car_type_IsValid(value));
  2424. set_has_car_type();
  2425. car_type_ = value;
  2426. // @@protoc_insertion_point(field_set:message.Dispatch_request_msg.car_type)
  2427. }
  2428. // -------------------------------------------------------------------
  2429. // Dispatch_response_msg
  2430. // required .message.Base_info base_info = 1;
  2431. inline bool Dispatch_response_msg::has_base_info() const {
  2432. return (_has_bits_[0] & 0x00000002u) != 0;
  2433. }
  2434. inline void Dispatch_response_msg::set_has_base_info() {
  2435. _has_bits_[0] |= 0x00000002u;
  2436. }
  2437. inline void Dispatch_response_msg::clear_has_base_info() {
  2438. _has_bits_[0] &= ~0x00000002u;
  2439. }
  2440. inline const ::message::Base_info& Dispatch_response_msg::_internal_base_info() const {
  2441. return *base_info_;
  2442. }
  2443. inline const ::message::Base_info& Dispatch_response_msg::base_info() const {
  2444. const ::message::Base_info* p = base_info_;
  2445. // @@protoc_insertion_point(field_get:message.Dispatch_response_msg.base_info)
  2446. return p != NULL ? *p : *reinterpret_cast<const ::message::Base_info*>(
  2447. &::message::_Base_info_default_instance_);
  2448. }
  2449. inline ::message::Base_info* Dispatch_response_msg::release_base_info() {
  2450. // @@protoc_insertion_point(field_release:message.Dispatch_response_msg.base_info)
  2451. clear_has_base_info();
  2452. ::message::Base_info* temp = base_info_;
  2453. base_info_ = NULL;
  2454. return temp;
  2455. }
  2456. inline ::message::Base_info* Dispatch_response_msg::mutable_base_info() {
  2457. set_has_base_info();
  2458. if (base_info_ == NULL) {
  2459. auto* p = CreateMaybeMessage<::message::Base_info>(GetArenaNoVirtual());
  2460. base_info_ = p;
  2461. }
  2462. // @@protoc_insertion_point(field_mutable:message.Dispatch_response_msg.base_info)
  2463. return base_info_;
  2464. }
  2465. inline void Dispatch_response_msg::set_allocated_base_info(::message::Base_info* base_info) {
  2466. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  2467. if (message_arena == NULL) {
  2468. delete reinterpret_cast< ::google::protobuf::MessageLite*>(base_info_);
  2469. }
  2470. if (base_info) {
  2471. ::google::protobuf::Arena* submessage_arena = NULL;
  2472. if (message_arena != submessage_arena) {
  2473. base_info = ::google::protobuf::internal::GetOwnedMessage(
  2474. message_arena, base_info, submessage_arena);
  2475. }
  2476. set_has_base_info();
  2477. } else {
  2478. clear_has_base_info();
  2479. }
  2480. base_info_ = base_info;
  2481. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_response_msg.base_info)
  2482. }
  2483. // required string command_key = 2;
  2484. inline bool Dispatch_response_msg::has_command_key() const {
  2485. return (_has_bits_[0] & 0x00000001u) != 0;
  2486. }
  2487. inline void Dispatch_response_msg::set_has_command_key() {
  2488. _has_bits_[0] |= 0x00000001u;
  2489. }
  2490. inline void Dispatch_response_msg::clear_has_command_key() {
  2491. _has_bits_[0] &= ~0x00000001u;
  2492. }
  2493. inline void Dispatch_response_msg::clear_command_key() {
  2494. command_key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2495. clear_has_command_key();
  2496. }
  2497. inline const ::std::string& Dispatch_response_msg::command_key() const {
  2498. // @@protoc_insertion_point(field_get:message.Dispatch_response_msg.command_key)
  2499. return command_key_.GetNoArena();
  2500. }
  2501. inline void Dispatch_response_msg::set_command_key(const ::std::string& value) {
  2502. set_has_command_key();
  2503. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  2504. // @@protoc_insertion_point(field_set:message.Dispatch_response_msg.command_key)
  2505. }
  2506. #if LANG_CXX11
  2507. inline void Dispatch_response_msg::set_command_key(::std::string&& value) {
  2508. set_has_command_key();
  2509. command_key_.SetNoArena(
  2510. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  2511. // @@protoc_insertion_point(field_set_rvalue:message.Dispatch_response_msg.command_key)
  2512. }
  2513. #endif
  2514. inline void Dispatch_response_msg::set_command_key(const char* value) {
  2515. GOOGLE_DCHECK(value != NULL);
  2516. set_has_command_key();
  2517. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  2518. // @@protoc_insertion_point(field_set_char:message.Dispatch_response_msg.command_key)
  2519. }
  2520. inline void Dispatch_response_msg::set_command_key(const char* value, size_t size) {
  2521. set_has_command_key();
  2522. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  2523. ::std::string(reinterpret_cast<const char*>(value), size));
  2524. // @@protoc_insertion_point(field_set_pointer:message.Dispatch_response_msg.command_key)
  2525. }
  2526. inline ::std::string* Dispatch_response_msg::mutable_command_key() {
  2527. set_has_command_key();
  2528. // @@protoc_insertion_point(field_mutable:message.Dispatch_response_msg.command_key)
  2529. return command_key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2530. }
  2531. inline ::std::string* Dispatch_response_msg::release_command_key() {
  2532. // @@protoc_insertion_point(field_release:message.Dispatch_response_msg.command_key)
  2533. if (!has_command_key()) {
  2534. return NULL;
  2535. }
  2536. clear_has_command_key();
  2537. return command_key_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2538. }
  2539. inline void Dispatch_response_msg::set_allocated_command_key(::std::string* command_key) {
  2540. if (command_key != NULL) {
  2541. set_has_command_key();
  2542. } else {
  2543. clear_has_command_key();
  2544. }
  2545. command_key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), command_key);
  2546. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_response_msg.command_key)
  2547. }
  2548. // optional .message.Dispatch_motion_direction dispatch_motion_direction = 3;
  2549. inline bool Dispatch_response_msg::has_dispatch_motion_direction() const {
  2550. return (_has_bits_[0] & 0x00000020u) != 0;
  2551. }
  2552. inline void Dispatch_response_msg::set_has_dispatch_motion_direction() {
  2553. _has_bits_[0] |= 0x00000020u;
  2554. }
  2555. inline void Dispatch_response_msg::clear_has_dispatch_motion_direction() {
  2556. _has_bits_[0] &= ~0x00000020u;
  2557. }
  2558. inline void Dispatch_response_msg::clear_dispatch_motion_direction() {
  2559. dispatch_motion_direction_ = 0;
  2560. clear_has_dispatch_motion_direction();
  2561. }
  2562. inline ::message::Dispatch_motion_direction Dispatch_response_msg::dispatch_motion_direction() const {
  2563. // @@protoc_insertion_point(field_get:message.Dispatch_response_msg.dispatch_motion_direction)
  2564. return static_cast< ::message::Dispatch_motion_direction >(dispatch_motion_direction_);
  2565. }
  2566. inline void Dispatch_response_msg::set_dispatch_motion_direction(::message::Dispatch_motion_direction value) {
  2567. assert(::message::Dispatch_motion_direction_IsValid(value));
  2568. set_has_dispatch_motion_direction();
  2569. dispatch_motion_direction_ = value;
  2570. // @@protoc_insertion_point(field_set:message.Dispatch_response_msg.dispatch_motion_direction)
  2571. }
  2572. // optional .message.Id_struct id_struct = 4;
  2573. inline bool Dispatch_response_msg::has_id_struct() const {
  2574. return (_has_bits_[0] & 0x00000004u) != 0;
  2575. }
  2576. inline void Dispatch_response_msg::set_has_id_struct() {
  2577. _has_bits_[0] |= 0x00000004u;
  2578. }
  2579. inline void Dispatch_response_msg::clear_has_id_struct() {
  2580. _has_bits_[0] &= ~0x00000004u;
  2581. }
  2582. inline const ::message::Id_struct& Dispatch_response_msg::_internal_id_struct() const {
  2583. return *id_struct_;
  2584. }
  2585. inline const ::message::Id_struct& Dispatch_response_msg::id_struct() const {
  2586. const ::message::Id_struct* p = id_struct_;
  2587. // @@protoc_insertion_point(field_get:message.Dispatch_response_msg.id_struct)
  2588. return p != NULL ? *p : *reinterpret_cast<const ::message::Id_struct*>(
  2589. &::message::_Id_struct_default_instance_);
  2590. }
  2591. inline ::message::Id_struct* Dispatch_response_msg::release_id_struct() {
  2592. // @@protoc_insertion_point(field_release:message.Dispatch_response_msg.id_struct)
  2593. clear_has_id_struct();
  2594. ::message::Id_struct* temp = id_struct_;
  2595. id_struct_ = NULL;
  2596. return temp;
  2597. }
  2598. inline ::message::Id_struct* Dispatch_response_msg::mutable_id_struct() {
  2599. set_has_id_struct();
  2600. if (id_struct_ == NULL) {
  2601. auto* p = CreateMaybeMessage<::message::Id_struct>(GetArenaNoVirtual());
  2602. id_struct_ = p;
  2603. }
  2604. // @@protoc_insertion_point(field_mutable:message.Dispatch_response_msg.id_struct)
  2605. return id_struct_;
  2606. }
  2607. inline void Dispatch_response_msg::set_allocated_id_struct(::message::Id_struct* id_struct) {
  2608. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  2609. if (message_arena == NULL) {
  2610. delete reinterpret_cast< ::google::protobuf::MessageLite*>(id_struct_);
  2611. }
  2612. if (id_struct) {
  2613. ::google::protobuf::Arena* submessage_arena = NULL;
  2614. if (message_arena != submessage_arena) {
  2615. id_struct = ::google::protobuf::internal::GetOwnedMessage(
  2616. message_arena, id_struct, submessage_arena);
  2617. }
  2618. set_has_id_struct();
  2619. } else {
  2620. clear_has_id_struct();
  2621. }
  2622. id_struct_ = id_struct;
  2623. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_response_msg.id_struct)
  2624. }
  2625. // optional .message.Locate_information locate_information = 5;
  2626. inline bool Dispatch_response_msg::has_locate_information() const {
  2627. return (_has_bits_[0] & 0x00000008u) != 0;
  2628. }
  2629. inline void Dispatch_response_msg::set_has_locate_information() {
  2630. _has_bits_[0] |= 0x00000008u;
  2631. }
  2632. inline void Dispatch_response_msg::clear_has_locate_information() {
  2633. _has_bits_[0] &= ~0x00000008u;
  2634. }
  2635. inline const ::message::Locate_information& Dispatch_response_msg::_internal_locate_information() const {
  2636. return *locate_information_;
  2637. }
  2638. inline const ::message::Locate_information& Dispatch_response_msg::locate_information() const {
  2639. const ::message::Locate_information* p = locate_information_;
  2640. // @@protoc_insertion_point(field_get:message.Dispatch_response_msg.locate_information)
  2641. return p != NULL ? *p : *reinterpret_cast<const ::message::Locate_information*>(
  2642. &::message::_Locate_information_default_instance_);
  2643. }
  2644. inline ::message::Locate_information* Dispatch_response_msg::release_locate_information() {
  2645. // @@protoc_insertion_point(field_release:message.Dispatch_response_msg.locate_information)
  2646. clear_has_locate_information();
  2647. ::message::Locate_information* temp = locate_information_;
  2648. locate_information_ = NULL;
  2649. return temp;
  2650. }
  2651. inline ::message::Locate_information* Dispatch_response_msg::mutable_locate_information() {
  2652. set_has_locate_information();
  2653. if (locate_information_ == NULL) {
  2654. auto* p = CreateMaybeMessage<::message::Locate_information>(GetArenaNoVirtual());
  2655. locate_information_ = p;
  2656. }
  2657. // @@protoc_insertion_point(field_mutable:message.Dispatch_response_msg.locate_information)
  2658. return locate_information_;
  2659. }
  2660. inline void Dispatch_response_msg::set_allocated_locate_information(::message::Locate_information* locate_information) {
  2661. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  2662. if (message_arena == NULL) {
  2663. delete reinterpret_cast< ::google::protobuf::MessageLite*>(locate_information_);
  2664. }
  2665. if (locate_information) {
  2666. ::google::protobuf::Arena* submessage_arena = NULL;
  2667. if (message_arena != submessage_arena) {
  2668. locate_information = ::google::protobuf::internal::GetOwnedMessage(
  2669. message_arena, locate_information, submessage_arena);
  2670. }
  2671. set_has_locate_information();
  2672. } else {
  2673. clear_has_locate_information();
  2674. }
  2675. locate_information_ = locate_information;
  2676. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_response_msg.locate_information)
  2677. }
  2678. // repeated .message.Parkspace_info parkspace_info_ex = 6;
  2679. inline int Dispatch_response_msg::parkspace_info_ex_size() const {
  2680. return parkspace_info_ex_.size();
  2681. }
  2682. inline ::message::Parkspace_info* Dispatch_response_msg::mutable_parkspace_info_ex(int index) {
  2683. // @@protoc_insertion_point(field_mutable:message.Dispatch_response_msg.parkspace_info_ex)
  2684. return parkspace_info_ex_.Mutable(index);
  2685. }
  2686. inline ::google::protobuf::RepeatedPtrField< ::message::Parkspace_info >*
  2687. Dispatch_response_msg::mutable_parkspace_info_ex() {
  2688. // @@protoc_insertion_point(field_mutable_list:message.Dispatch_response_msg.parkspace_info_ex)
  2689. return &parkspace_info_ex_;
  2690. }
  2691. inline const ::message::Parkspace_info& Dispatch_response_msg::parkspace_info_ex(int index) const {
  2692. // @@protoc_insertion_point(field_get:message.Dispatch_response_msg.parkspace_info_ex)
  2693. return parkspace_info_ex_.Get(index);
  2694. }
  2695. inline ::message::Parkspace_info* Dispatch_response_msg::add_parkspace_info_ex() {
  2696. // @@protoc_insertion_point(field_add:message.Dispatch_response_msg.parkspace_info_ex)
  2697. return parkspace_info_ex_.Add();
  2698. }
  2699. inline const ::google::protobuf::RepeatedPtrField< ::message::Parkspace_info >&
  2700. Dispatch_response_msg::parkspace_info_ex() const {
  2701. // @@protoc_insertion_point(field_list:message.Dispatch_response_msg.parkspace_info_ex)
  2702. return parkspace_info_ex_;
  2703. }
  2704. // optional .message.Car_type car_type = 7;
  2705. inline bool Dispatch_response_msg::has_car_type() const {
  2706. return (_has_bits_[0] & 0x00000040u) != 0;
  2707. }
  2708. inline void Dispatch_response_msg::set_has_car_type() {
  2709. _has_bits_[0] |= 0x00000040u;
  2710. }
  2711. inline void Dispatch_response_msg::clear_has_car_type() {
  2712. _has_bits_[0] &= ~0x00000040u;
  2713. }
  2714. inline void Dispatch_response_msg::clear_car_type() {
  2715. car_type_ = 0;
  2716. clear_has_car_type();
  2717. }
  2718. inline ::message::Car_type Dispatch_response_msg::car_type() const {
  2719. // @@protoc_insertion_point(field_get:message.Dispatch_response_msg.car_type)
  2720. return static_cast< ::message::Car_type >(car_type_);
  2721. }
  2722. inline void Dispatch_response_msg::set_car_type(::message::Car_type value) {
  2723. assert(::message::Car_type_IsValid(value));
  2724. set_has_car_type();
  2725. car_type_ = value;
  2726. // @@protoc_insertion_point(field_set:message.Dispatch_response_msg.car_type)
  2727. }
  2728. // optional .message.Error_manager error_manager = 8;
  2729. inline bool Dispatch_response_msg::has_error_manager() const {
  2730. return (_has_bits_[0] & 0x00000010u) != 0;
  2731. }
  2732. inline void Dispatch_response_msg::set_has_error_manager() {
  2733. _has_bits_[0] |= 0x00000010u;
  2734. }
  2735. inline void Dispatch_response_msg::clear_has_error_manager() {
  2736. _has_bits_[0] &= ~0x00000010u;
  2737. }
  2738. inline const ::message::Error_manager& Dispatch_response_msg::_internal_error_manager() const {
  2739. return *error_manager_;
  2740. }
  2741. inline const ::message::Error_manager& Dispatch_response_msg::error_manager() const {
  2742. const ::message::Error_manager* p = error_manager_;
  2743. // @@protoc_insertion_point(field_get:message.Dispatch_response_msg.error_manager)
  2744. return p != NULL ? *p : *reinterpret_cast<const ::message::Error_manager*>(
  2745. &::message::_Error_manager_default_instance_);
  2746. }
  2747. inline ::message::Error_manager* Dispatch_response_msg::release_error_manager() {
  2748. // @@protoc_insertion_point(field_release:message.Dispatch_response_msg.error_manager)
  2749. clear_has_error_manager();
  2750. ::message::Error_manager* temp = error_manager_;
  2751. error_manager_ = NULL;
  2752. return temp;
  2753. }
  2754. inline ::message::Error_manager* Dispatch_response_msg::mutable_error_manager() {
  2755. set_has_error_manager();
  2756. if (error_manager_ == NULL) {
  2757. auto* p = CreateMaybeMessage<::message::Error_manager>(GetArenaNoVirtual());
  2758. error_manager_ = p;
  2759. }
  2760. // @@protoc_insertion_point(field_mutable:message.Dispatch_response_msg.error_manager)
  2761. return error_manager_;
  2762. }
  2763. inline void Dispatch_response_msg::set_allocated_error_manager(::message::Error_manager* error_manager) {
  2764. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  2765. if (message_arena == NULL) {
  2766. delete reinterpret_cast< ::google::protobuf::MessageLite*>(error_manager_);
  2767. }
  2768. if (error_manager) {
  2769. ::google::protobuf::Arena* submessage_arena = NULL;
  2770. if (message_arena != submessage_arena) {
  2771. error_manager = ::google::protobuf::internal::GetOwnedMessage(
  2772. message_arena, error_manager, submessage_arena);
  2773. }
  2774. set_has_error_manager();
  2775. } else {
  2776. clear_has_error_manager();
  2777. }
  2778. error_manager_ = error_manager;
  2779. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_response_msg.error_manager)
  2780. }
  2781. // -------------------------------------------------------------------
  2782. // Catcher_data
  2783. // required .message.Dispatch_device_type dispatch_device_type = 1;
  2784. inline bool Catcher_data::has_dispatch_device_type() const {
  2785. return (_has_bits_[0] & 0x00040000u) != 0;
  2786. }
  2787. inline void Catcher_data::set_has_dispatch_device_type() {
  2788. _has_bits_[0] |= 0x00040000u;
  2789. }
  2790. inline void Catcher_data::clear_has_dispatch_device_type() {
  2791. _has_bits_[0] &= ~0x00040000u;
  2792. }
  2793. inline void Catcher_data::clear_dispatch_device_type() {
  2794. dispatch_device_type_ = 101;
  2795. clear_has_dispatch_device_type();
  2796. }
  2797. inline ::message::Dispatch_device_type Catcher_data::dispatch_device_type() const {
  2798. // @@protoc_insertion_point(field_get:message.Catcher_data.dispatch_device_type)
  2799. return static_cast< ::message::Dispatch_device_type >(dispatch_device_type_);
  2800. }
  2801. inline void Catcher_data::set_dispatch_device_type(::message::Dispatch_device_type value) {
  2802. assert(::message::Dispatch_device_type_IsValid(value));
  2803. set_has_dispatch_device_type();
  2804. dispatch_device_type_ = value;
  2805. // @@protoc_insertion_point(field_set:message.Catcher_data.dispatch_device_type)
  2806. }
  2807. // required .message.Dispatch_device_status dispatch_device_status = 2;
  2808. inline bool Catcher_data::has_dispatch_device_status() const {
  2809. return (_has_bits_[0] & 0x00000008u) != 0;
  2810. }
  2811. inline void Catcher_data::set_has_dispatch_device_status() {
  2812. _has_bits_[0] |= 0x00000008u;
  2813. }
  2814. inline void Catcher_data::clear_has_dispatch_device_status() {
  2815. _has_bits_[0] &= ~0x00000008u;
  2816. }
  2817. inline void Catcher_data::clear_dispatch_device_status() {
  2818. dispatch_device_status_ = 0;
  2819. clear_has_dispatch_device_status();
  2820. }
  2821. inline ::message::Dispatch_device_status Catcher_data::dispatch_device_status() const {
  2822. // @@protoc_insertion_point(field_get:message.Catcher_data.dispatch_device_status)
  2823. return static_cast< ::message::Dispatch_device_status >(dispatch_device_status_);
  2824. }
  2825. inline void Catcher_data::set_dispatch_device_status(::message::Dispatch_device_status value) {
  2826. assert(::message::Dispatch_device_status_IsValid(value));
  2827. set_has_dispatch_device_status();
  2828. dispatch_device_status_ = value;
  2829. // @@protoc_insertion_point(field_set:message.Catcher_data.dispatch_device_status)
  2830. }
  2831. // required int32 device_id = 3;
  2832. inline bool Catcher_data::has_device_id() const {
  2833. return (_has_bits_[0] & 0x00000010u) != 0;
  2834. }
  2835. inline void Catcher_data::set_has_device_id() {
  2836. _has_bits_[0] |= 0x00000010u;
  2837. }
  2838. inline void Catcher_data::clear_has_device_id() {
  2839. _has_bits_[0] &= ~0x00000010u;
  2840. }
  2841. inline void Catcher_data::clear_device_id() {
  2842. device_id_ = 0;
  2843. clear_has_device_id();
  2844. }
  2845. inline ::google::protobuf::int32 Catcher_data::device_id() const {
  2846. // @@protoc_insertion_point(field_get:message.Catcher_data.device_id)
  2847. return device_id_;
  2848. }
  2849. inline void Catcher_data::set_device_id(::google::protobuf::int32 value) {
  2850. set_has_device_id();
  2851. device_id_ = value;
  2852. // @@protoc_insertion_point(field_set:message.Catcher_data.device_id)
  2853. }
  2854. // optional .message.Hardware_device_status actual_device_status = 4;
  2855. inline bool Catcher_data::has_actual_device_status() const {
  2856. return (_has_bits_[0] & 0x00000020u) != 0;
  2857. }
  2858. inline void Catcher_data::set_has_actual_device_status() {
  2859. _has_bits_[0] |= 0x00000020u;
  2860. }
  2861. inline void Catcher_data::clear_has_actual_device_status() {
  2862. _has_bits_[0] &= ~0x00000020u;
  2863. }
  2864. inline void Catcher_data::clear_actual_device_status() {
  2865. actual_device_status_ = 0;
  2866. clear_has_actual_device_status();
  2867. }
  2868. inline ::message::Hardware_device_status Catcher_data::actual_device_status() const {
  2869. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_device_status)
  2870. return static_cast< ::message::Hardware_device_status >(actual_device_status_);
  2871. }
  2872. inline void Catcher_data::set_actual_device_status(::message::Hardware_device_status value) {
  2873. assert(::message::Hardware_device_status_IsValid(value));
  2874. set_has_actual_device_status();
  2875. actual_device_status_ = value;
  2876. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_device_status)
  2877. }
  2878. // optional .message.Load_status actual_load_status = 5;
  2879. inline bool Catcher_data::has_actual_load_status() const {
  2880. return (_has_bits_[0] & 0x00000040u) != 0;
  2881. }
  2882. inline void Catcher_data::set_has_actual_load_status() {
  2883. _has_bits_[0] |= 0x00000040u;
  2884. }
  2885. inline void Catcher_data::clear_has_actual_load_status() {
  2886. _has_bits_[0] &= ~0x00000040u;
  2887. }
  2888. inline void Catcher_data::clear_actual_load_status() {
  2889. actual_load_status_ = 0;
  2890. clear_has_actual_load_status();
  2891. }
  2892. inline ::message::Load_status Catcher_data::actual_load_status() const {
  2893. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_load_status)
  2894. return static_cast< ::message::Load_status >(actual_load_status_);
  2895. }
  2896. inline void Catcher_data::set_actual_load_status(::message::Load_status value) {
  2897. assert(::message::Load_status_IsValid(value));
  2898. set_has_actual_load_status();
  2899. actual_load_status_ = value;
  2900. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_load_status)
  2901. }
  2902. // optional int32 actual_coordinates_id = 6;
  2903. inline bool Catcher_data::has_actual_coordinates_id() const {
  2904. return (_has_bits_[0] & 0x00000080u) != 0;
  2905. }
  2906. inline void Catcher_data::set_has_actual_coordinates_id() {
  2907. _has_bits_[0] |= 0x00000080u;
  2908. }
  2909. inline void Catcher_data::clear_has_actual_coordinates_id() {
  2910. _has_bits_[0] &= ~0x00000080u;
  2911. }
  2912. inline void Catcher_data::clear_actual_coordinates_id() {
  2913. actual_coordinates_id_ = 0;
  2914. clear_has_actual_coordinates_id();
  2915. }
  2916. inline ::google::protobuf::int32 Catcher_data::actual_coordinates_id() const {
  2917. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_coordinates_id)
  2918. return actual_coordinates_id_;
  2919. }
  2920. inline void Catcher_data::set_actual_coordinates_id(::google::protobuf::int32 value) {
  2921. set_has_actual_coordinates_id();
  2922. actual_coordinates_id_ = value;
  2923. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_coordinates_id)
  2924. }
  2925. // optional float actual_x = 7;
  2926. inline bool Catcher_data::has_actual_x() const {
  2927. return (_has_bits_[0] & 0x00000100u) != 0;
  2928. }
  2929. inline void Catcher_data::set_has_actual_x() {
  2930. _has_bits_[0] |= 0x00000100u;
  2931. }
  2932. inline void Catcher_data::clear_has_actual_x() {
  2933. _has_bits_[0] &= ~0x00000100u;
  2934. }
  2935. inline void Catcher_data::clear_actual_x() {
  2936. actual_x_ = 0;
  2937. clear_has_actual_x();
  2938. }
  2939. inline float Catcher_data::actual_x() const {
  2940. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_x)
  2941. return actual_x_;
  2942. }
  2943. inline void Catcher_data::set_actual_x(float value) {
  2944. set_has_actual_x();
  2945. actual_x_ = value;
  2946. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_x)
  2947. }
  2948. // optional float actual_y = 8;
  2949. inline bool Catcher_data::has_actual_y() const {
  2950. return (_has_bits_[0] & 0x00000200u) != 0;
  2951. }
  2952. inline void Catcher_data::set_has_actual_y() {
  2953. _has_bits_[0] |= 0x00000200u;
  2954. }
  2955. inline void Catcher_data::clear_has_actual_y() {
  2956. _has_bits_[0] &= ~0x00000200u;
  2957. }
  2958. inline void Catcher_data::clear_actual_y() {
  2959. actual_y_ = 0;
  2960. clear_has_actual_y();
  2961. }
  2962. inline float Catcher_data::actual_y() const {
  2963. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_y)
  2964. return actual_y_;
  2965. }
  2966. inline void Catcher_data::set_actual_y(float value) {
  2967. set_has_actual_y();
  2968. actual_y_ = value;
  2969. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_y)
  2970. }
  2971. // optional float actual_b = 9;
  2972. inline bool Catcher_data::has_actual_b() const {
  2973. return (_has_bits_[0] & 0x00000400u) != 0;
  2974. }
  2975. inline void Catcher_data::set_has_actual_b() {
  2976. _has_bits_[0] |= 0x00000400u;
  2977. }
  2978. inline void Catcher_data::clear_has_actual_b() {
  2979. _has_bits_[0] &= ~0x00000400u;
  2980. }
  2981. inline void Catcher_data::clear_actual_b() {
  2982. actual_b_ = 0;
  2983. clear_has_actual_b();
  2984. }
  2985. inline float Catcher_data::actual_b() const {
  2986. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_b)
  2987. return actual_b_;
  2988. }
  2989. inline void Catcher_data::set_actual_b(float value) {
  2990. set_has_actual_b();
  2991. actual_b_ = value;
  2992. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_b)
  2993. }
  2994. // optional float actual_z = 10;
  2995. inline bool Catcher_data::has_actual_z() const {
  2996. return (_has_bits_[0] & 0x00000800u) != 0;
  2997. }
  2998. inline void Catcher_data::set_has_actual_z() {
  2999. _has_bits_[0] |= 0x00000800u;
  3000. }
  3001. inline void Catcher_data::clear_has_actual_z() {
  3002. _has_bits_[0] &= ~0x00000800u;
  3003. }
  3004. inline void Catcher_data::clear_actual_z() {
  3005. actual_z_ = 0;
  3006. clear_has_actual_z();
  3007. }
  3008. inline float Catcher_data::actual_z() const {
  3009. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_z)
  3010. return actual_z_;
  3011. }
  3012. inline void Catcher_data::set_actual_z(float value) {
  3013. set_has_actual_z();
  3014. actual_z_ = value;
  3015. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_z)
  3016. }
  3017. // optional float actual_d1 = 11;
  3018. inline bool Catcher_data::has_actual_d1() const {
  3019. return (_has_bits_[0] & 0x00001000u) != 0;
  3020. }
  3021. inline void Catcher_data::set_has_actual_d1() {
  3022. _has_bits_[0] |= 0x00001000u;
  3023. }
  3024. inline void Catcher_data::clear_has_actual_d1() {
  3025. _has_bits_[0] &= ~0x00001000u;
  3026. }
  3027. inline void Catcher_data::clear_actual_d1() {
  3028. actual_d1_ = 0;
  3029. clear_has_actual_d1();
  3030. }
  3031. inline float Catcher_data::actual_d1() const {
  3032. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_d1)
  3033. return actual_d1_;
  3034. }
  3035. inline void Catcher_data::set_actual_d1(float value) {
  3036. set_has_actual_d1();
  3037. actual_d1_ = value;
  3038. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_d1)
  3039. }
  3040. // optional float actual_d2 = 12;
  3041. inline bool Catcher_data::has_actual_d2() const {
  3042. return (_has_bits_[0] & 0x00002000u) != 0;
  3043. }
  3044. inline void Catcher_data::set_has_actual_d2() {
  3045. _has_bits_[0] |= 0x00002000u;
  3046. }
  3047. inline void Catcher_data::clear_has_actual_d2() {
  3048. _has_bits_[0] &= ~0x00002000u;
  3049. }
  3050. inline void Catcher_data::clear_actual_d2() {
  3051. actual_d2_ = 0;
  3052. clear_has_actual_d2();
  3053. }
  3054. inline float Catcher_data::actual_d2() const {
  3055. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_d2)
  3056. return actual_d2_;
  3057. }
  3058. inline void Catcher_data::set_actual_d2(float value) {
  3059. set_has_actual_d2();
  3060. actual_d2_ = value;
  3061. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_d2)
  3062. }
  3063. // optional .message.Clamp_motion actual_clamp_motion1 = 13;
  3064. inline bool Catcher_data::has_actual_clamp_motion1() const {
  3065. return (_has_bits_[0] & 0x00004000u) != 0;
  3066. }
  3067. inline void Catcher_data::set_has_actual_clamp_motion1() {
  3068. _has_bits_[0] |= 0x00004000u;
  3069. }
  3070. inline void Catcher_data::clear_has_actual_clamp_motion1() {
  3071. _has_bits_[0] &= ~0x00004000u;
  3072. }
  3073. inline void Catcher_data::clear_actual_clamp_motion1() {
  3074. actual_clamp_motion1_ = 0;
  3075. clear_has_actual_clamp_motion1();
  3076. }
  3077. inline ::message::Clamp_motion Catcher_data::actual_clamp_motion1() const {
  3078. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_clamp_motion1)
  3079. return static_cast< ::message::Clamp_motion >(actual_clamp_motion1_);
  3080. }
  3081. inline void Catcher_data::set_actual_clamp_motion1(::message::Clamp_motion value) {
  3082. assert(::message::Clamp_motion_IsValid(value));
  3083. set_has_actual_clamp_motion1();
  3084. actual_clamp_motion1_ = value;
  3085. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_clamp_motion1)
  3086. }
  3087. // optional .message.Clamp_motion actual_clamp_motion2 = 14;
  3088. inline bool Catcher_data::has_actual_clamp_motion2() const {
  3089. return (_has_bits_[0] & 0x00008000u) != 0;
  3090. }
  3091. inline void Catcher_data::set_has_actual_clamp_motion2() {
  3092. _has_bits_[0] |= 0x00008000u;
  3093. }
  3094. inline void Catcher_data::clear_has_actual_clamp_motion2() {
  3095. _has_bits_[0] &= ~0x00008000u;
  3096. }
  3097. inline void Catcher_data::clear_actual_clamp_motion2() {
  3098. actual_clamp_motion2_ = 0;
  3099. clear_has_actual_clamp_motion2();
  3100. }
  3101. inline ::message::Clamp_motion Catcher_data::actual_clamp_motion2() const {
  3102. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_clamp_motion2)
  3103. return static_cast< ::message::Clamp_motion >(actual_clamp_motion2_);
  3104. }
  3105. inline void Catcher_data::set_actual_clamp_motion2(::message::Clamp_motion value) {
  3106. assert(::message::Clamp_motion_IsValid(value));
  3107. set_has_actual_clamp_motion2();
  3108. actual_clamp_motion2_ = value;
  3109. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_clamp_motion2)
  3110. }
  3111. // optional .message.Clamp_motion actual_clamp_motion3 = 15;
  3112. inline bool Catcher_data::has_actual_clamp_motion3() const {
  3113. return (_has_bits_[0] & 0x00010000u) != 0;
  3114. }
  3115. inline void Catcher_data::set_has_actual_clamp_motion3() {
  3116. _has_bits_[0] |= 0x00010000u;
  3117. }
  3118. inline void Catcher_data::clear_has_actual_clamp_motion3() {
  3119. _has_bits_[0] &= ~0x00010000u;
  3120. }
  3121. inline void Catcher_data::clear_actual_clamp_motion3() {
  3122. actual_clamp_motion3_ = 0;
  3123. clear_has_actual_clamp_motion3();
  3124. }
  3125. inline ::message::Clamp_motion Catcher_data::actual_clamp_motion3() const {
  3126. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_clamp_motion3)
  3127. return static_cast< ::message::Clamp_motion >(actual_clamp_motion3_);
  3128. }
  3129. inline void Catcher_data::set_actual_clamp_motion3(::message::Clamp_motion value) {
  3130. assert(::message::Clamp_motion_IsValid(value));
  3131. set_has_actual_clamp_motion3();
  3132. actual_clamp_motion3_ = value;
  3133. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_clamp_motion3)
  3134. }
  3135. // optional .message.Clamp_motion actual_clamp_motion4 = 16;
  3136. inline bool Catcher_data::has_actual_clamp_motion4() const {
  3137. return (_has_bits_[0] & 0x00020000u) != 0;
  3138. }
  3139. inline void Catcher_data::set_has_actual_clamp_motion4() {
  3140. _has_bits_[0] |= 0x00020000u;
  3141. }
  3142. inline void Catcher_data::clear_has_actual_clamp_motion4() {
  3143. _has_bits_[0] &= ~0x00020000u;
  3144. }
  3145. inline void Catcher_data::clear_actual_clamp_motion4() {
  3146. actual_clamp_motion4_ = 0;
  3147. clear_has_actual_clamp_motion4();
  3148. }
  3149. inline ::message::Clamp_motion Catcher_data::actual_clamp_motion4() const {
  3150. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_clamp_motion4)
  3151. return static_cast< ::message::Clamp_motion >(actual_clamp_motion4_);
  3152. }
  3153. inline void Catcher_data::set_actual_clamp_motion4(::message::Clamp_motion value) {
  3154. assert(::message::Clamp_motion_IsValid(value));
  3155. set_has_actual_clamp_motion4();
  3156. actual_clamp_motion4_ = value;
  3157. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_clamp_motion4)
  3158. }
  3159. // optional string actual_error_code = 17;
  3160. inline bool Catcher_data::has_actual_error_code() const {
  3161. return (_has_bits_[0] & 0x00000001u) != 0;
  3162. }
  3163. inline void Catcher_data::set_has_actual_error_code() {
  3164. _has_bits_[0] |= 0x00000001u;
  3165. }
  3166. inline void Catcher_data::clear_has_actual_error_code() {
  3167. _has_bits_[0] &= ~0x00000001u;
  3168. }
  3169. inline void Catcher_data::clear_actual_error_code() {
  3170. actual_error_code_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3171. clear_has_actual_error_code();
  3172. }
  3173. inline const ::std::string& Catcher_data::actual_error_code() const {
  3174. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_error_code)
  3175. return actual_error_code_.GetNoArena();
  3176. }
  3177. inline void Catcher_data::set_actual_error_code(const ::std::string& value) {
  3178. set_has_actual_error_code();
  3179. actual_error_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  3180. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_error_code)
  3181. }
  3182. #if LANG_CXX11
  3183. inline void Catcher_data::set_actual_error_code(::std::string&& value) {
  3184. set_has_actual_error_code();
  3185. actual_error_code_.SetNoArena(
  3186. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  3187. // @@protoc_insertion_point(field_set_rvalue:message.Catcher_data.actual_error_code)
  3188. }
  3189. #endif
  3190. inline void Catcher_data::set_actual_error_code(const char* value) {
  3191. GOOGLE_DCHECK(value != NULL);
  3192. set_has_actual_error_code();
  3193. actual_error_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  3194. // @@protoc_insertion_point(field_set_char:message.Catcher_data.actual_error_code)
  3195. }
  3196. inline void Catcher_data::set_actual_error_code(const char* value, size_t size) {
  3197. set_has_actual_error_code();
  3198. actual_error_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  3199. ::std::string(reinterpret_cast<const char*>(value), size));
  3200. // @@protoc_insertion_point(field_set_pointer:message.Catcher_data.actual_error_code)
  3201. }
  3202. inline ::std::string* Catcher_data::mutable_actual_error_code() {
  3203. set_has_actual_error_code();
  3204. // @@protoc_insertion_point(field_mutable:message.Catcher_data.actual_error_code)
  3205. return actual_error_code_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3206. }
  3207. inline ::std::string* Catcher_data::release_actual_error_code() {
  3208. // @@protoc_insertion_point(field_release:message.Catcher_data.actual_error_code)
  3209. if (!has_actual_error_code()) {
  3210. return NULL;
  3211. }
  3212. clear_has_actual_error_code();
  3213. return actual_error_code_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3214. }
  3215. inline void Catcher_data::set_allocated_actual_error_code(::std::string* actual_error_code) {
  3216. if (actual_error_code != NULL) {
  3217. set_has_actual_error_code();
  3218. } else {
  3219. clear_has_actual_error_code();
  3220. }
  3221. actual_error_code_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actual_error_code);
  3222. // @@protoc_insertion_point(field_set_allocated:message.Catcher_data.actual_error_code)
  3223. }
  3224. // optional string actual_warning_code = 18;
  3225. inline bool Catcher_data::has_actual_warning_code() const {
  3226. return (_has_bits_[0] & 0x00000002u) != 0;
  3227. }
  3228. inline void Catcher_data::set_has_actual_warning_code() {
  3229. _has_bits_[0] |= 0x00000002u;
  3230. }
  3231. inline void Catcher_data::clear_has_actual_warning_code() {
  3232. _has_bits_[0] &= ~0x00000002u;
  3233. }
  3234. inline void Catcher_data::clear_actual_warning_code() {
  3235. actual_warning_code_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3236. clear_has_actual_warning_code();
  3237. }
  3238. inline const ::std::string& Catcher_data::actual_warning_code() const {
  3239. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_warning_code)
  3240. return actual_warning_code_.GetNoArena();
  3241. }
  3242. inline void Catcher_data::set_actual_warning_code(const ::std::string& value) {
  3243. set_has_actual_warning_code();
  3244. actual_warning_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  3245. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_warning_code)
  3246. }
  3247. #if LANG_CXX11
  3248. inline void Catcher_data::set_actual_warning_code(::std::string&& value) {
  3249. set_has_actual_warning_code();
  3250. actual_warning_code_.SetNoArena(
  3251. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  3252. // @@protoc_insertion_point(field_set_rvalue:message.Catcher_data.actual_warning_code)
  3253. }
  3254. #endif
  3255. inline void Catcher_data::set_actual_warning_code(const char* value) {
  3256. GOOGLE_DCHECK(value != NULL);
  3257. set_has_actual_warning_code();
  3258. actual_warning_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  3259. // @@protoc_insertion_point(field_set_char:message.Catcher_data.actual_warning_code)
  3260. }
  3261. inline void Catcher_data::set_actual_warning_code(const char* value, size_t size) {
  3262. set_has_actual_warning_code();
  3263. actual_warning_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  3264. ::std::string(reinterpret_cast<const char*>(value), size));
  3265. // @@protoc_insertion_point(field_set_pointer:message.Catcher_data.actual_warning_code)
  3266. }
  3267. inline ::std::string* Catcher_data::mutable_actual_warning_code() {
  3268. set_has_actual_warning_code();
  3269. // @@protoc_insertion_point(field_mutable:message.Catcher_data.actual_warning_code)
  3270. return actual_warning_code_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3271. }
  3272. inline ::std::string* Catcher_data::release_actual_warning_code() {
  3273. // @@protoc_insertion_point(field_release:message.Catcher_data.actual_warning_code)
  3274. if (!has_actual_warning_code()) {
  3275. return NULL;
  3276. }
  3277. clear_has_actual_warning_code();
  3278. return actual_warning_code_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3279. }
  3280. inline void Catcher_data::set_allocated_actual_warning_code(::std::string* actual_warning_code) {
  3281. if (actual_warning_code != NULL) {
  3282. set_has_actual_warning_code();
  3283. } else {
  3284. clear_has_actual_warning_code();
  3285. }
  3286. actual_warning_code_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actual_warning_code);
  3287. // @@protoc_insertion_point(field_set_allocated:message.Catcher_data.actual_warning_code)
  3288. }
  3289. // optional string actual_error_description = 19;
  3290. inline bool Catcher_data::has_actual_error_description() const {
  3291. return (_has_bits_[0] & 0x00000004u) != 0;
  3292. }
  3293. inline void Catcher_data::set_has_actual_error_description() {
  3294. _has_bits_[0] |= 0x00000004u;
  3295. }
  3296. inline void Catcher_data::clear_has_actual_error_description() {
  3297. _has_bits_[0] &= ~0x00000004u;
  3298. }
  3299. inline void Catcher_data::clear_actual_error_description() {
  3300. actual_error_description_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3301. clear_has_actual_error_description();
  3302. }
  3303. inline const ::std::string& Catcher_data::actual_error_description() const {
  3304. // @@protoc_insertion_point(field_get:message.Catcher_data.actual_error_description)
  3305. return actual_error_description_.GetNoArena();
  3306. }
  3307. inline void Catcher_data::set_actual_error_description(const ::std::string& value) {
  3308. set_has_actual_error_description();
  3309. actual_error_description_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  3310. // @@protoc_insertion_point(field_set:message.Catcher_data.actual_error_description)
  3311. }
  3312. #if LANG_CXX11
  3313. inline void Catcher_data::set_actual_error_description(::std::string&& value) {
  3314. set_has_actual_error_description();
  3315. actual_error_description_.SetNoArena(
  3316. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  3317. // @@protoc_insertion_point(field_set_rvalue:message.Catcher_data.actual_error_description)
  3318. }
  3319. #endif
  3320. inline void Catcher_data::set_actual_error_description(const char* value) {
  3321. GOOGLE_DCHECK(value != NULL);
  3322. set_has_actual_error_description();
  3323. actual_error_description_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  3324. // @@protoc_insertion_point(field_set_char:message.Catcher_data.actual_error_description)
  3325. }
  3326. inline void Catcher_data::set_actual_error_description(const char* value, size_t size) {
  3327. set_has_actual_error_description();
  3328. actual_error_description_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  3329. ::std::string(reinterpret_cast<const char*>(value), size));
  3330. // @@protoc_insertion_point(field_set_pointer:message.Catcher_data.actual_error_description)
  3331. }
  3332. inline ::std::string* Catcher_data::mutable_actual_error_description() {
  3333. set_has_actual_error_description();
  3334. // @@protoc_insertion_point(field_mutable:message.Catcher_data.actual_error_description)
  3335. return actual_error_description_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3336. }
  3337. inline ::std::string* Catcher_data::release_actual_error_description() {
  3338. // @@protoc_insertion_point(field_release:message.Catcher_data.actual_error_description)
  3339. if (!has_actual_error_description()) {
  3340. return NULL;
  3341. }
  3342. clear_has_actual_error_description();
  3343. return actual_error_description_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3344. }
  3345. inline void Catcher_data::set_allocated_actual_error_description(::std::string* actual_error_description) {
  3346. if (actual_error_description != NULL) {
  3347. set_has_actual_error_description();
  3348. } else {
  3349. clear_has_actual_error_description();
  3350. }
  3351. actual_error_description_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actual_error_description);
  3352. // @@protoc_insertion_point(field_set_allocated:message.Catcher_data.actual_error_description)
  3353. }
  3354. // -------------------------------------------------------------------
  3355. // Carrier_data
  3356. // required .message.Dispatch_device_type dispatch_device_type = 1;
  3357. inline bool Carrier_data::has_dispatch_device_type() const {
  3358. return (_has_bits_[0] & 0x00040000u) != 0;
  3359. }
  3360. inline void Carrier_data::set_has_dispatch_device_type() {
  3361. _has_bits_[0] |= 0x00040000u;
  3362. }
  3363. inline void Carrier_data::clear_has_dispatch_device_type() {
  3364. _has_bits_[0] &= ~0x00040000u;
  3365. }
  3366. inline void Carrier_data::clear_dispatch_device_type() {
  3367. dispatch_device_type_ = 101;
  3368. clear_has_dispatch_device_type();
  3369. }
  3370. inline ::message::Dispatch_device_type Carrier_data::dispatch_device_type() const {
  3371. // @@protoc_insertion_point(field_get:message.Carrier_data.dispatch_device_type)
  3372. return static_cast< ::message::Dispatch_device_type >(dispatch_device_type_);
  3373. }
  3374. inline void Carrier_data::set_dispatch_device_type(::message::Dispatch_device_type value) {
  3375. assert(::message::Dispatch_device_type_IsValid(value));
  3376. set_has_dispatch_device_type();
  3377. dispatch_device_type_ = value;
  3378. // @@protoc_insertion_point(field_set:message.Carrier_data.dispatch_device_type)
  3379. }
  3380. // required .message.Dispatch_device_status dispatch_device_status = 2;
  3381. inline bool Carrier_data::has_dispatch_device_status() const {
  3382. return (_has_bits_[0] & 0x00000008u) != 0;
  3383. }
  3384. inline void Carrier_data::set_has_dispatch_device_status() {
  3385. _has_bits_[0] |= 0x00000008u;
  3386. }
  3387. inline void Carrier_data::clear_has_dispatch_device_status() {
  3388. _has_bits_[0] &= ~0x00000008u;
  3389. }
  3390. inline void Carrier_data::clear_dispatch_device_status() {
  3391. dispatch_device_status_ = 0;
  3392. clear_has_dispatch_device_status();
  3393. }
  3394. inline ::message::Dispatch_device_status Carrier_data::dispatch_device_status() const {
  3395. // @@protoc_insertion_point(field_get:message.Carrier_data.dispatch_device_status)
  3396. return static_cast< ::message::Dispatch_device_status >(dispatch_device_status_);
  3397. }
  3398. inline void Carrier_data::set_dispatch_device_status(::message::Dispatch_device_status value) {
  3399. assert(::message::Dispatch_device_status_IsValid(value));
  3400. set_has_dispatch_device_status();
  3401. dispatch_device_status_ = value;
  3402. // @@protoc_insertion_point(field_set:message.Carrier_data.dispatch_device_status)
  3403. }
  3404. // required int32 device_id = 3;
  3405. inline bool Carrier_data::has_device_id() const {
  3406. return (_has_bits_[0] & 0x00000010u) != 0;
  3407. }
  3408. inline void Carrier_data::set_has_device_id() {
  3409. _has_bits_[0] |= 0x00000010u;
  3410. }
  3411. inline void Carrier_data::clear_has_device_id() {
  3412. _has_bits_[0] &= ~0x00000010u;
  3413. }
  3414. inline void Carrier_data::clear_device_id() {
  3415. device_id_ = 0;
  3416. clear_has_device_id();
  3417. }
  3418. inline ::google::protobuf::int32 Carrier_data::device_id() const {
  3419. // @@protoc_insertion_point(field_get:message.Carrier_data.device_id)
  3420. return device_id_;
  3421. }
  3422. inline void Carrier_data::set_device_id(::google::protobuf::int32 value) {
  3423. set_has_device_id();
  3424. device_id_ = value;
  3425. // @@protoc_insertion_point(field_set:message.Carrier_data.device_id)
  3426. }
  3427. // optional .message.Hardware_device_status actual_device_status = 4;
  3428. inline bool Carrier_data::has_actual_device_status() const {
  3429. return (_has_bits_[0] & 0x00000020u) != 0;
  3430. }
  3431. inline void Carrier_data::set_has_actual_device_status() {
  3432. _has_bits_[0] |= 0x00000020u;
  3433. }
  3434. inline void Carrier_data::clear_has_actual_device_status() {
  3435. _has_bits_[0] &= ~0x00000020u;
  3436. }
  3437. inline void Carrier_data::clear_actual_device_status() {
  3438. actual_device_status_ = 0;
  3439. clear_has_actual_device_status();
  3440. }
  3441. inline ::message::Hardware_device_status Carrier_data::actual_device_status() const {
  3442. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_device_status)
  3443. return static_cast< ::message::Hardware_device_status >(actual_device_status_);
  3444. }
  3445. inline void Carrier_data::set_actual_device_status(::message::Hardware_device_status value) {
  3446. assert(::message::Hardware_device_status_IsValid(value));
  3447. set_has_actual_device_status();
  3448. actual_device_status_ = value;
  3449. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_device_status)
  3450. }
  3451. // optional .message.Load_status actual_load_status = 5;
  3452. inline bool Carrier_data::has_actual_load_status() const {
  3453. return (_has_bits_[0] & 0x00000040u) != 0;
  3454. }
  3455. inline void Carrier_data::set_has_actual_load_status() {
  3456. _has_bits_[0] |= 0x00000040u;
  3457. }
  3458. inline void Carrier_data::clear_has_actual_load_status() {
  3459. _has_bits_[0] &= ~0x00000040u;
  3460. }
  3461. inline void Carrier_data::clear_actual_load_status() {
  3462. actual_load_status_ = 0;
  3463. clear_has_actual_load_status();
  3464. }
  3465. inline ::message::Load_status Carrier_data::actual_load_status() const {
  3466. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_load_status)
  3467. return static_cast< ::message::Load_status >(actual_load_status_);
  3468. }
  3469. inline void Carrier_data::set_actual_load_status(::message::Load_status value) {
  3470. assert(::message::Load_status_IsValid(value));
  3471. set_has_actual_load_status();
  3472. actual_load_status_ = value;
  3473. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_load_status)
  3474. }
  3475. // optional int32 actual_coordinates_id = 6;
  3476. inline bool Carrier_data::has_actual_coordinates_id() const {
  3477. return (_has_bits_[0] & 0x00000080u) != 0;
  3478. }
  3479. inline void Carrier_data::set_has_actual_coordinates_id() {
  3480. _has_bits_[0] |= 0x00000080u;
  3481. }
  3482. inline void Carrier_data::clear_has_actual_coordinates_id() {
  3483. _has_bits_[0] &= ~0x00000080u;
  3484. }
  3485. inline void Carrier_data::clear_actual_coordinates_id() {
  3486. actual_coordinates_id_ = 0;
  3487. clear_has_actual_coordinates_id();
  3488. }
  3489. inline ::google::protobuf::int32 Carrier_data::actual_coordinates_id() const {
  3490. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_coordinates_id)
  3491. return actual_coordinates_id_;
  3492. }
  3493. inline void Carrier_data::set_actual_coordinates_id(::google::protobuf::int32 value) {
  3494. set_has_actual_coordinates_id();
  3495. actual_coordinates_id_ = value;
  3496. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_coordinates_id)
  3497. }
  3498. // optional float actual_x = 7;
  3499. inline bool Carrier_data::has_actual_x() const {
  3500. return (_has_bits_[0] & 0x00000100u) != 0;
  3501. }
  3502. inline void Carrier_data::set_has_actual_x() {
  3503. _has_bits_[0] |= 0x00000100u;
  3504. }
  3505. inline void Carrier_data::clear_has_actual_x() {
  3506. _has_bits_[0] &= ~0x00000100u;
  3507. }
  3508. inline void Carrier_data::clear_actual_x() {
  3509. actual_x_ = 0;
  3510. clear_has_actual_x();
  3511. }
  3512. inline float Carrier_data::actual_x() const {
  3513. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_x)
  3514. return actual_x_;
  3515. }
  3516. inline void Carrier_data::set_actual_x(float value) {
  3517. set_has_actual_x();
  3518. actual_x_ = value;
  3519. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_x)
  3520. }
  3521. // optional float actual_y = 8;
  3522. inline bool Carrier_data::has_actual_y() const {
  3523. return (_has_bits_[0] & 0x00000200u) != 0;
  3524. }
  3525. inline void Carrier_data::set_has_actual_y() {
  3526. _has_bits_[0] |= 0x00000200u;
  3527. }
  3528. inline void Carrier_data::clear_has_actual_y() {
  3529. _has_bits_[0] &= ~0x00000200u;
  3530. }
  3531. inline void Carrier_data::clear_actual_y() {
  3532. actual_y_ = 0;
  3533. clear_has_actual_y();
  3534. }
  3535. inline float Carrier_data::actual_y() const {
  3536. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_y)
  3537. return actual_y_;
  3538. }
  3539. inline void Carrier_data::set_actual_y(float value) {
  3540. set_has_actual_y();
  3541. actual_y_ = value;
  3542. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_y)
  3543. }
  3544. // optional float actual_z = 9;
  3545. inline bool Carrier_data::has_actual_z() const {
  3546. return (_has_bits_[0] & 0x00000400u) != 0;
  3547. }
  3548. inline void Carrier_data::set_has_actual_z() {
  3549. _has_bits_[0] |= 0x00000400u;
  3550. }
  3551. inline void Carrier_data::clear_has_actual_z() {
  3552. _has_bits_[0] &= ~0x00000400u;
  3553. }
  3554. inline void Carrier_data::clear_actual_z() {
  3555. actual_z_ = 0;
  3556. clear_has_actual_z();
  3557. }
  3558. inline float Carrier_data::actual_z() const {
  3559. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_z)
  3560. return actual_z_;
  3561. }
  3562. inline void Carrier_data::set_actual_z(float value) {
  3563. set_has_actual_z();
  3564. actual_z_ = value;
  3565. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_z)
  3566. }
  3567. // optional float actual_y1 = 10;
  3568. inline bool Carrier_data::has_actual_y1() const {
  3569. return (_has_bits_[0] & 0x00000800u) != 0;
  3570. }
  3571. inline void Carrier_data::set_has_actual_y1() {
  3572. _has_bits_[0] |= 0x00000800u;
  3573. }
  3574. inline void Carrier_data::clear_has_actual_y1() {
  3575. _has_bits_[0] &= ~0x00000800u;
  3576. }
  3577. inline void Carrier_data::clear_actual_y1() {
  3578. actual_y1_ = 0;
  3579. clear_has_actual_y1();
  3580. }
  3581. inline float Carrier_data::actual_y1() const {
  3582. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_y1)
  3583. return actual_y1_;
  3584. }
  3585. inline void Carrier_data::set_actual_y1(float value) {
  3586. set_has_actual_y1();
  3587. actual_y1_ = value;
  3588. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_y1)
  3589. }
  3590. // optional float actual_y2 = 11;
  3591. inline bool Carrier_data::has_actual_y2() const {
  3592. return (_has_bits_[0] & 0x00001000u) != 0;
  3593. }
  3594. inline void Carrier_data::set_has_actual_y2() {
  3595. _has_bits_[0] |= 0x00001000u;
  3596. }
  3597. inline void Carrier_data::clear_has_actual_y2() {
  3598. _has_bits_[0] &= ~0x00001000u;
  3599. }
  3600. inline void Carrier_data::clear_actual_y2() {
  3601. actual_y2_ = 0;
  3602. clear_has_actual_y2();
  3603. }
  3604. inline float Carrier_data::actual_y2() const {
  3605. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_y2)
  3606. return actual_y2_;
  3607. }
  3608. inline void Carrier_data::set_actual_y2(float value) {
  3609. set_has_actual_y2();
  3610. actual_y2_ = value;
  3611. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_y2)
  3612. }
  3613. // optional .message.Clamp_motion actual_clamp_motion1 = 12;
  3614. inline bool Carrier_data::has_actual_clamp_motion1() const {
  3615. return (_has_bits_[0] & 0x00002000u) != 0;
  3616. }
  3617. inline void Carrier_data::set_has_actual_clamp_motion1() {
  3618. _has_bits_[0] |= 0x00002000u;
  3619. }
  3620. inline void Carrier_data::clear_has_actual_clamp_motion1() {
  3621. _has_bits_[0] &= ~0x00002000u;
  3622. }
  3623. inline void Carrier_data::clear_actual_clamp_motion1() {
  3624. actual_clamp_motion1_ = 0;
  3625. clear_has_actual_clamp_motion1();
  3626. }
  3627. inline ::message::Clamp_motion Carrier_data::actual_clamp_motion1() const {
  3628. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_clamp_motion1)
  3629. return static_cast< ::message::Clamp_motion >(actual_clamp_motion1_);
  3630. }
  3631. inline void Carrier_data::set_actual_clamp_motion1(::message::Clamp_motion value) {
  3632. assert(::message::Clamp_motion_IsValid(value));
  3633. set_has_actual_clamp_motion1();
  3634. actual_clamp_motion1_ = value;
  3635. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_clamp_motion1)
  3636. }
  3637. // optional .message.Clamp_motion actual_clamp_motion2 = 13;
  3638. inline bool Carrier_data::has_actual_clamp_motion2() const {
  3639. return (_has_bits_[0] & 0x00004000u) != 0;
  3640. }
  3641. inline void Carrier_data::set_has_actual_clamp_motion2() {
  3642. _has_bits_[0] |= 0x00004000u;
  3643. }
  3644. inline void Carrier_data::clear_has_actual_clamp_motion2() {
  3645. _has_bits_[0] &= ~0x00004000u;
  3646. }
  3647. inline void Carrier_data::clear_actual_clamp_motion2() {
  3648. actual_clamp_motion2_ = 0;
  3649. clear_has_actual_clamp_motion2();
  3650. }
  3651. inline ::message::Clamp_motion Carrier_data::actual_clamp_motion2() const {
  3652. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_clamp_motion2)
  3653. return static_cast< ::message::Clamp_motion >(actual_clamp_motion2_);
  3654. }
  3655. inline void Carrier_data::set_actual_clamp_motion2(::message::Clamp_motion value) {
  3656. assert(::message::Clamp_motion_IsValid(value));
  3657. set_has_actual_clamp_motion2();
  3658. actual_clamp_motion2_ = value;
  3659. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_clamp_motion2)
  3660. }
  3661. // optional .message.Small_sports_car_motion actual_small_sports_car_motion = 14;
  3662. inline bool Carrier_data::has_actual_small_sports_car_motion() const {
  3663. return (_has_bits_[0] & 0x00008000u) != 0;
  3664. }
  3665. inline void Carrier_data::set_has_actual_small_sports_car_motion() {
  3666. _has_bits_[0] |= 0x00008000u;
  3667. }
  3668. inline void Carrier_data::clear_has_actual_small_sports_car_motion() {
  3669. _has_bits_[0] &= ~0x00008000u;
  3670. }
  3671. inline void Carrier_data::clear_actual_small_sports_car_motion() {
  3672. actual_small_sports_car_motion_ = 0;
  3673. clear_has_actual_small_sports_car_motion();
  3674. }
  3675. inline ::message::Small_sports_car_motion Carrier_data::actual_small_sports_car_motion() const {
  3676. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_small_sports_car_motion)
  3677. return static_cast< ::message::Small_sports_car_motion >(actual_small_sports_car_motion_);
  3678. }
  3679. inline void Carrier_data::set_actual_small_sports_car_motion(::message::Small_sports_car_motion value) {
  3680. assert(::message::Small_sports_car_motion_IsValid(value));
  3681. set_has_actual_small_sports_car_motion();
  3682. actual_small_sports_car_motion_ = value;
  3683. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_small_sports_car_motion)
  3684. }
  3685. // optional .message.Joint_motion actual_joint_motion_x1 = 15;
  3686. inline bool Carrier_data::has_actual_joint_motion_x1() const {
  3687. return (_has_bits_[0] & 0x00010000u) != 0;
  3688. }
  3689. inline void Carrier_data::set_has_actual_joint_motion_x1() {
  3690. _has_bits_[0] |= 0x00010000u;
  3691. }
  3692. inline void Carrier_data::clear_has_actual_joint_motion_x1() {
  3693. _has_bits_[0] &= ~0x00010000u;
  3694. }
  3695. inline void Carrier_data::clear_actual_joint_motion_x1() {
  3696. actual_joint_motion_x1_ = 0;
  3697. clear_has_actual_joint_motion_x1();
  3698. }
  3699. inline ::message::Joint_motion Carrier_data::actual_joint_motion_x1() const {
  3700. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_joint_motion_x1)
  3701. return static_cast< ::message::Joint_motion >(actual_joint_motion_x1_);
  3702. }
  3703. inline void Carrier_data::set_actual_joint_motion_x1(::message::Joint_motion value) {
  3704. assert(::message::Joint_motion_IsValid(value));
  3705. set_has_actual_joint_motion_x1();
  3706. actual_joint_motion_x1_ = value;
  3707. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_joint_motion_x1)
  3708. }
  3709. // optional .message.Joint_motion actual_joint_motion_x2 = 16;
  3710. inline bool Carrier_data::has_actual_joint_motion_x2() const {
  3711. return (_has_bits_[0] & 0x00020000u) != 0;
  3712. }
  3713. inline void Carrier_data::set_has_actual_joint_motion_x2() {
  3714. _has_bits_[0] |= 0x00020000u;
  3715. }
  3716. inline void Carrier_data::clear_has_actual_joint_motion_x2() {
  3717. _has_bits_[0] &= ~0x00020000u;
  3718. }
  3719. inline void Carrier_data::clear_actual_joint_motion_x2() {
  3720. actual_joint_motion_x2_ = 0;
  3721. clear_has_actual_joint_motion_x2();
  3722. }
  3723. inline ::message::Joint_motion Carrier_data::actual_joint_motion_x2() const {
  3724. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_joint_motion_x2)
  3725. return static_cast< ::message::Joint_motion >(actual_joint_motion_x2_);
  3726. }
  3727. inline void Carrier_data::set_actual_joint_motion_x2(::message::Joint_motion value) {
  3728. assert(::message::Joint_motion_IsValid(value));
  3729. set_has_actual_joint_motion_x2();
  3730. actual_joint_motion_x2_ = value;
  3731. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_joint_motion_x2)
  3732. }
  3733. // optional string actual_error_code = 17;
  3734. inline bool Carrier_data::has_actual_error_code() const {
  3735. return (_has_bits_[0] & 0x00000001u) != 0;
  3736. }
  3737. inline void Carrier_data::set_has_actual_error_code() {
  3738. _has_bits_[0] |= 0x00000001u;
  3739. }
  3740. inline void Carrier_data::clear_has_actual_error_code() {
  3741. _has_bits_[0] &= ~0x00000001u;
  3742. }
  3743. inline void Carrier_data::clear_actual_error_code() {
  3744. actual_error_code_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3745. clear_has_actual_error_code();
  3746. }
  3747. inline const ::std::string& Carrier_data::actual_error_code() const {
  3748. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_error_code)
  3749. return actual_error_code_.GetNoArena();
  3750. }
  3751. inline void Carrier_data::set_actual_error_code(const ::std::string& value) {
  3752. set_has_actual_error_code();
  3753. actual_error_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  3754. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_error_code)
  3755. }
  3756. #if LANG_CXX11
  3757. inline void Carrier_data::set_actual_error_code(::std::string&& value) {
  3758. set_has_actual_error_code();
  3759. actual_error_code_.SetNoArena(
  3760. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  3761. // @@protoc_insertion_point(field_set_rvalue:message.Carrier_data.actual_error_code)
  3762. }
  3763. #endif
  3764. inline void Carrier_data::set_actual_error_code(const char* value) {
  3765. GOOGLE_DCHECK(value != NULL);
  3766. set_has_actual_error_code();
  3767. actual_error_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  3768. // @@protoc_insertion_point(field_set_char:message.Carrier_data.actual_error_code)
  3769. }
  3770. inline void Carrier_data::set_actual_error_code(const char* value, size_t size) {
  3771. set_has_actual_error_code();
  3772. actual_error_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  3773. ::std::string(reinterpret_cast<const char*>(value), size));
  3774. // @@protoc_insertion_point(field_set_pointer:message.Carrier_data.actual_error_code)
  3775. }
  3776. inline ::std::string* Carrier_data::mutable_actual_error_code() {
  3777. set_has_actual_error_code();
  3778. // @@protoc_insertion_point(field_mutable:message.Carrier_data.actual_error_code)
  3779. return actual_error_code_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3780. }
  3781. inline ::std::string* Carrier_data::release_actual_error_code() {
  3782. // @@protoc_insertion_point(field_release:message.Carrier_data.actual_error_code)
  3783. if (!has_actual_error_code()) {
  3784. return NULL;
  3785. }
  3786. clear_has_actual_error_code();
  3787. return actual_error_code_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3788. }
  3789. inline void Carrier_data::set_allocated_actual_error_code(::std::string* actual_error_code) {
  3790. if (actual_error_code != NULL) {
  3791. set_has_actual_error_code();
  3792. } else {
  3793. clear_has_actual_error_code();
  3794. }
  3795. actual_error_code_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actual_error_code);
  3796. // @@protoc_insertion_point(field_set_allocated:message.Carrier_data.actual_error_code)
  3797. }
  3798. // optional string actual_warning_code = 18;
  3799. inline bool Carrier_data::has_actual_warning_code() const {
  3800. return (_has_bits_[0] & 0x00000002u) != 0;
  3801. }
  3802. inline void Carrier_data::set_has_actual_warning_code() {
  3803. _has_bits_[0] |= 0x00000002u;
  3804. }
  3805. inline void Carrier_data::clear_has_actual_warning_code() {
  3806. _has_bits_[0] &= ~0x00000002u;
  3807. }
  3808. inline void Carrier_data::clear_actual_warning_code() {
  3809. actual_warning_code_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3810. clear_has_actual_warning_code();
  3811. }
  3812. inline const ::std::string& Carrier_data::actual_warning_code() const {
  3813. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_warning_code)
  3814. return actual_warning_code_.GetNoArena();
  3815. }
  3816. inline void Carrier_data::set_actual_warning_code(const ::std::string& value) {
  3817. set_has_actual_warning_code();
  3818. actual_warning_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  3819. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_warning_code)
  3820. }
  3821. #if LANG_CXX11
  3822. inline void Carrier_data::set_actual_warning_code(::std::string&& value) {
  3823. set_has_actual_warning_code();
  3824. actual_warning_code_.SetNoArena(
  3825. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  3826. // @@protoc_insertion_point(field_set_rvalue:message.Carrier_data.actual_warning_code)
  3827. }
  3828. #endif
  3829. inline void Carrier_data::set_actual_warning_code(const char* value) {
  3830. GOOGLE_DCHECK(value != NULL);
  3831. set_has_actual_warning_code();
  3832. actual_warning_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  3833. // @@protoc_insertion_point(field_set_char:message.Carrier_data.actual_warning_code)
  3834. }
  3835. inline void Carrier_data::set_actual_warning_code(const char* value, size_t size) {
  3836. set_has_actual_warning_code();
  3837. actual_warning_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  3838. ::std::string(reinterpret_cast<const char*>(value), size));
  3839. // @@protoc_insertion_point(field_set_pointer:message.Carrier_data.actual_warning_code)
  3840. }
  3841. inline ::std::string* Carrier_data::mutable_actual_warning_code() {
  3842. set_has_actual_warning_code();
  3843. // @@protoc_insertion_point(field_mutable:message.Carrier_data.actual_warning_code)
  3844. return actual_warning_code_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3845. }
  3846. inline ::std::string* Carrier_data::release_actual_warning_code() {
  3847. // @@protoc_insertion_point(field_release:message.Carrier_data.actual_warning_code)
  3848. if (!has_actual_warning_code()) {
  3849. return NULL;
  3850. }
  3851. clear_has_actual_warning_code();
  3852. return actual_warning_code_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3853. }
  3854. inline void Carrier_data::set_allocated_actual_warning_code(::std::string* actual_warning_code) {
  3855. if (actual_warning_code != NULL) {
  3856. set_has_actual_warning_code();
  3857. } else {
  3858. clear_has_actual_warning_code();
  3859. }
  3860. actual_warning_code_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actual_warning_code);
  3861. // @@protoc_insertion_point(field_set_allocated:message.Carrier_data.actual_warning_code)
  3862. }
  3863. // optional string actual_error_description = 19;
  3864. inline bool Carrier_data::has_actual_error_description() const {
  3865. return (_has_bits_[0] & 0x00000004u) != 0;
  3866. }
  3867. inline void Carrier_data::set_has_actual_error_description() {
  3868. _has_bits_[0] |= 0x00000004u;
  3869. }
  3870. inline void Carrier_data::clear_has_actual_error_description() {
  3871. _has_bits_[0] &= ~0x00000004u;
  3872. }
  3873. inline void Carrier_data::clear_actual_error_description() {
  3874. actual_error_description_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3875. clear_has_actual_error_description();
  3876. }
  3877. inline const ::std::string& Carrier_data::actual_error_description() const {
  3878. // @@protoc_insertion_point(field_get:message.Carrier_data.actual_error_description)
  3879. return actual_error_description_.GetNoArena();
  3880. }
  3881. inline void Carrier_data::set_actual_error_description(const ::std::string& value) {
  3882. set_has_actual_error_description();
  3883. actual_error_description_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  3884. // @@protoc_insertion_point(field_set:message.Carrier_data.actual_error_description)
  3885. }
  3886. #if LANG_CXX11
  3887. inline void Carrier_data::set_actual_error_description(::std::string&& value) {
  3888. set_has_actual_error_description();
  3889. actual_error_description_.SetNoArena(
  3890. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  3891. // @@protoc_insertion_point(field_set_rvalue:message.Carrier_data.actual_error_description)
  3892. }
  3893. #endif
  3894. inline void Carrier_data::set_actual_error_description(const char* value) {
  3895. GOOGLE_DCHECK(value != NULL);
  3896. set_has_actual_error_description();
  3897. actual_error_description_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  3898. // @@protoc_insertion_point(field_set_char:message.Carrier_data.actual_error_description)
  3899. }
  3900. inline void Carrier_data::set_actual_error_description(const char* value, size_t size) {
  3901. set_has_actual_error_description();
  3902. actual_error_description_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  3903. ::std::string(reinterpret_cast<const char*>(value), size));
  3904. // @@protoc_insertion_point(field_set_pointer:message.Carrier_data.actual_error_description)
  3905. }
  3906. inline ::std::string* Carrier_data::mutable_actual_error_description() {
  3907. set_has_actual_error_description();
  3908. // @@protoc_insertion_point(field_mutable:message.Carrier_data.actual_error_description)
  3909. return actual_error_description_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3910. }
  3911. inline ::std::string* Carrier_data::release_actual_error_description() {
  3912. // @@protoc_insertion_point(field_release:message.Carrier_data.actual_error_description)
  3913. if (!has_actual_error_description()) {
  3914. return NULL;
  3915. }
  3916. clear_has_actual_error_description();
  3917. return actual_error_description_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  3918. }
  3919. inline void Carrier_data::set_allocated_actual_error_description(::std::string* actual_error_description) {
  3920. if (actual_error_description != NULL) {
  3921. set_has_actual_error_description();
  3922. } else {
  3923. clear_has_actual_error_description();
  3924. }
  3925. actual_error_description_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actual_error_description);
  3926. // @@protoc_insertion_point(field_set_allocated:message.Carrier_data.actual_error_description)
  3927. }
  3928. // -------------------------------------------------------------------
  3929. // Passageway_data
  3930. // required .message.Dispatch_device_type dispatch_device_type = 1;
  3931. inline bool Passageway_data::has_dispatch_device_type() const {
  3932. return (_has_bits_[0] & 0x00010000u) != 0;
  3933. }
  3934. inline void Passageway_data::set_has_dispatch_device_type() {
  3935. _has_bits_[0] |= 0x00010000u;
  3936. }
  3937. inline void Passageway_data::clear_has_dispatch_device_type() {
  3938. _has_bits_[0] &= ~0x00010000u;
  3939. }
  3940. inline void Passageway_data::clear_dispatch_device_type() {
  3941. dispatch_device_type_ = 101;
  3942. clear_has_dispatch_device_type();
  3943. }
  3944. inline ::message::Dispatch_device_type Passageway_data::dispatch_device_type() const {
  3945. // @@protoc_insertion_point(field_get:message.Passageway_data.dispatch_device_type)
  3946. return static_cast< ::message::Dispatch_device_type >(dispatch_device_type_);
  3947. }
  3948. inline void Passageway_data::set_dispatch_device_type(::message::Dispatch_device_type value) {
  3949. assert(::message::Dispatch_device_type_IsValid(value));
  3950. set_has_dispatch_device_type();
  3951. dispatch_device_type_ = value;
  3952. // @@protoc_insertion_point(field_set:message.Passageway_data.dispatch_device_type)
  3953. }
  3954. // required .message.Dispatch_device_status dispatch_device_status = 2;
  3955. inline bool Passageway_data::has_dispatch_device_status() const {
  3956. return (_has_bits_[0] & 0x00000008u) != 0;
  3957. }
  3958. inline void Passageway_data::set_has_dispatch_device_status() {
  3959. _has_bits_[0] |= 0x00000008u;
  3960. }
  3961. inline void Passageway_data::clear_has_dispatch_device_status() {
  3962. _has_bits_[0] &= ~0x00000008u;
  3963. }
  3964. inline void Passageway_data::clear_dispatch_device_status() {
  3965. dispatch_device_status_ = 0;
  3966. clear_has_dispatch_device_status();
  3967. }
  3968. inline ::message::Dispatch_device_status Passageway_data::dispatch_device_status() const {
  3969. // @@protoc_insertion_point(field_get:message.Passageway_data.dispatch_device_status)
  3970. return static_cast< ::message::Dispatch_device_status >(dispatch_device_status_);
  3971. }
  3972. inline void Passageway_data::set_dispatch_device_status(::message::Dispatch_device_status value) {
  3973. assert(::message::Dispatch_device_status_IsValid(value));
  3974. set_has_dispatch_device_status();
  3975. dispatch_device_status_ = value;
  3976. // @@protoc_insertion_point(field_set:message.Passageway_data.dispatch_device_status)
  3977. }
  3978. // required int32 device_id = 3;
  3979. inline bool Passageway_data::has_device_id() const {
  3980. return (_has_bits_[0] & 0x00000010u) != 0;
  3981. }
  3982. inline void Passageway_data::set_has_device_id() {
  3983. _has_bits_[0] |= 0x00000010u;
  3984. }
  3985. inline void Passageway_data::clear_has_device_id() {
  3986. _has_bits_[0] &= ~0x00000010u;
  3987. }
  3988. inline void Passageway_data::clear_device_id() {
  3989. device_id_ = 0;
  3990. clear_has_device_id();
  3991. }
  3992. inline ::google::protobuf::int32 Passageway_data::device_id() const {
  3993. // @@protoc_insertion_point(field_get:message.Passageway_data.device_id)
  3994. return device_id_;
  3995. }
  3996. inline void Passageway_data::set_device_id(::google::protobuf::int32 value) {
  3997. set_has_device_id();
  3998. device_id_ = value;
  3999. // @@protoc_insertion_point(field_set:message.Passageway_data.device_id)
  4000. }
  4001. // optional .message.Hardware_device_status actual_device_status = 4;
  4002. inline bool Passageway_data::has_actual_device_status() const {
  4003. return (_has_bits_[0] & 0x00000020u) != 0;
  4004. }
  4005. inline void Passageway_data::set_has_actual_device_status() {
  4006. _has_bits_[0] |= 0x00000020u;
  4007. }
  4008. inline void Passageway_data::clear_has_actual_device_status() {
  4009. _has_bits_[0] &= ~0x00000020u;
  4010. }
  4011. inline void Passageway_data::clear_actual_device_status() {
  4012. actual_device_status_ = 0;
  4013. clear_has_actual_device_status();
  4014. }
  4015. inline ::message::Hardware_device_status Passageway_data::actual_device_status() const {
  4016. // @@protoc_insertion_point(field_get:message.Passageway_data.actual_device_status)
  4017. return static_cast< ::message::Hardware_device_status >(actual_device_status_);
  4018. }
  4019. inline void Passageway_data::set_actual_device_status(::message::Hardware_device_status value) {
  4020. assert(::message::Hardware_device_status_IsValid(value));
  4021. set_has_actual_device_status();
  4022. actual_device_status_ = value;
  4023. // @@protoc_insertion_point(field_set:message.Passageway_data.actual_device_status)
  4024. }
  4025. // optional .message.Load_status actual_inside_load_status = 5;
  4026. inline bool Passageway_data::has_actual_inside_load_status() const {
  4027. return (_has_bits_[0] & 0x00000040u) != 0;
  4028. }
  4029. inline void Passageway_data::set_has_actual_inside_load_status() {
  4030. _has_bits_[0] |= 0x00000040u;
  4031. }
  4032. inline void Passageway_data::clear_has_actual_inside_load_status() {
  4033. _has_bits_[0] &= ~0x00000040u;
  4034. }
  4035. inline void Passageway_data::clear_actual_inside_load_status() {
  4036. actual_inside_load_status_ = 0;
  4037. clear_has_actual_inside_load_status();
  4038. }
  4039. inline ::message::Load_status Passageway_data::actual_inside_load_status() const {
  4040. // @@protoc_insertion_point(field_get:message.Passageway_data.actual_inside_load_status)
  4041. return static_cast< ::message::Load_status >(actual_inside_load_status_);
  4042. }
  4043. inline void Passageway_data::set_actual_inside_load_status(::message::Load_status value) {
  4044. assert(::message::Load_status_IsValid(value));
  4045. set_has_actual_inside_load_status();
  4046. actual_inside_load_status_ = value;
  4047. // @@protoc_insertion_point(field_set:message.Passageway_data.actual_inside_load_status)
  4048. }
  4049. // optional .message.Load_status actual_outside_load_status = 6;
  4050. inline bool Passageway_data::has_actual_outside_load_status() const {
  4051. return (_has_bits_[0] & 0x00000080u) != 0;
  4052. }
  4053. inline void Passageway_data::set_has_actual_outside_load_status() {
  4054. _has_bits_[0] |= 0x00000080u;
  4055. }
  4056. inline void Passageway_data::clear_has_actual_outside_load_status() {
  4057. _has_bits_[0] &= ~0x00000080u;
  4058. }
  4059. inline void Passageway_data::clear_actual_outside_load_status() {
  4060. actual_outside_load_status_ = 0;
  4061. clear_has_actual_outside_load_status();
  4062. }
  4063. inline ::message::Load_status Passageway_data::actual_outside_load_status() const {
  4064. // @@protoc_insertion_point(field_get:message.Passageway_data.actual_outside_load_status)
  4065. return static_cast< ::message::Load_status >(actual_outside_load_status_);
  4066. }
  4067. inline void Passageway_data::set_actual_outside_load_status(::message::Load_status value) {
  4068. assert(::message::Load_status_IsValid(value));
  4069. set_has_actual_outside_load_status();
  4070. actual_outside_load_status_ = value;
  4071. // @@protoc_insertion_point(field_set:message.Passageway_data.actual_outside_load_status)
  4072. }
  4073. // optional .message.Overstep_the_boundary actual_front_overstep_the_boundary = 7;
  4074. inline bool Passageway_data::has_actual_front_overstep_the_boundary() const {
  4075. return (_has_bits_[0] & 0x00000100u) != 0;
  4076. }
  4077. inline void Passageway_data::set_has_actual_front_overstep_the_boundary() {
  4078. _has_bits_[0] |= 0x00000100u;
  4079. }
  4080. inline void Passageway_data::clear_has_actual_front_overstep_the_boundary() {
  4081. _has_bits_[0] &= ~0x00000100u;
  4082. }
  4083. inline void Passageway_data::clear_actual_front_overstep_the_boundary() {
  4084. actual_front_overstep_the_boundary_ = 0;
  4085. clear_has_actual_front_overstep_the_boundary();
  4086. }
  4087. inline ::message::Overstep_the_boundary Passageway_data::actual_front_overstep_the_boundary() const {
  4088. // @@protoc_insertion_point(field_get:message.Passageway_data.actual_front_overstep_the_boundary)
  4089. return static_cast< ::message::Overstep_the_boundary >(actual_front_overstep_the_boundary_);
  4090. }
  4091. inline void Passageway_data::set_actual_front_overstep_the_boundary(::message::Overstep_the_boundary value) {
  4092. assert(::message::Overstep_the_boundary_IsValid(value));
  4093. set_has_actual_front_overstep_the_boundary();
  4094. actual_front_overstep_the_boundary_ = value;
  4095. // @@protoc_insertion_point(field_set:message.Passageway_data.actual_front_overstep_the_boundary)
  4096. }
  4097. // optional .message.Overstep_the_boundary actual_back_overstep_the_boundary = 8;
  4098. inline bool Passageway_data::has_actual_back_overstep_the_boundary() const {
  4099. return (_has_bits_[0] & 0x00000200u) != 0;
  4100. }
  4101. inline void Passageway_data::set_has_actual_back_overstep_the_boundary() {
  4102. _has_bits_[0] |= 0x00000200u;
  4103. }
  4104. inline void Passageway_data::clear_has_actual_back_overstep_the_boundary() {
  4105. _has_bits_[0] &= ~0x00000200u;
  4106. }
  4107. inline void Passageway_data::clear_actual_back_overstep_the_boundary() {
  4108. actual_back_overstep_the_boundary_ = 0;
  4109. clear_has_actual_back_overstep_the_boundary();
  4110. }
  4111. inline ::message::Overstep_the_boundary Passageway_data::actual_back_overstep_the_boundary() const {
  4112. // @@protoc_insertion_point(field_get:message.Passageway_data.actual_back_overstep_the_boundary)
  4113. return static_cast< ::message::Overstep_the_boundary >(actual_back_overstep_the_boundary_);
  4114. }
  4115. inline void Passageway_data::set_actual_back_overstep_the_boundary(::message::Overstep_the_boundary value) {
  4116. assert(::message::Overstep_the_boundary_IsValid(value));
  4117. set_has_actual_back_overstep_the_boundary();
  4118. actual_back_overstep_the_boundary_ = value;
  4119. // @@protoc_insertion_point(field_set:message.Passageway_data.actual_back_overstep_the_boundary)
  4120. }
  4121. // optional .message.Overstep_the_boundary actual_height_overstep_the_boundary = 9;
  4122. inline bool Passageway_data::has_actual_height_overstep_the_boundary() const {
  4123. return (_has_bits_[0] & 0x00000400u) != 0;
  4124. }
  4125. inline void Passageway_data::set_has_actual_height_overstep_the_boundary() {
  4126. _has_bits_[0] |= 0x00000400u;
  4127. }
  4128. inline void Passageway_data::clear_has_actual_height_overstep_the_boundary() {
  4129. _has_bits_[0] &= ~0x00000400u;
  4130. }
  4131. inline void Passageway_data::clear_actual_height_overstep_the_boundary() {
  4132. actual_height_overstep_the_boundary_ = 0;
  4133. clear_has_actual_height_overstep_the_boundary();
  4134. }
  4135. inline ::message::Overstep_the_boundary Passageway_data::actual_height_overstep_the_boundary() const {
  4136. // @@protoc_insertion_point(field_get:message.Passageway_data.actual_height_overstep_the_boundary)
  4137. return static_cast< ::message::Overstep_the_boundary >(actual_height_overstep_the_boundary_);
  4138. }
  4139. inline void Passageway_data::set_actual_height_overstep_the_boundary(::message::Overstep_the_boundary value) {
  4140. assert(::message::Overstep_the_boundary_IsValid(value));
  4141. set_has_actual_height_overstep_the_boundary();
  4142. actual_height_overstep_the_boundary_ = value;
  4143. // @@protoc_insertion_point(field_set:message.Passageway_data.actual_height_overstep_the_boundary)
  4144. }
  4145. // optional .message.Load_status actual_outside_door_sensor = 10;
  4146. inline bool Passageway_data::has_actual_outside_door_sensor() const {
  4147. return (_has_bits_[0] & 0x00000800u) != 0;
  4148. }
  4149. inline void Passageway_data::set_has_actual_outside_door_sensor() {
  4150. _has_bits_[0] |= 0x00000800u;
  4151. }
  4152. inline void Passageway_data::clear_has_actual_outside_door_sensor() {
  4153. _has_bits_[0] &= ~0x00000800u;
  4154. }
  4155. inline void Passageway_data::clear_actual_outside_door_sensor() {
  4156. actual_outside_door_sensor_ = 0;
  4157. clear_has_actual_outside_door_sensor();
  4158. }
  4159. inline ::message::Load_status Passageway_data::actual_outside_door_sensor() const {
  4160. // @@protoc_insertion_point(field_get:message.Passageway_data.actual_outside_door_sensor)
  4161. return static_cast< ::message::Load_status >(actual_outside_door_sensor_);
  4162. }
  4163. inline void Passageway_data::set_actual_outside_door_sensor(::message::Load_status value) {
  4164. assert(::message::Load_status_IsValid(value));
  4165. set_has_actual_outside_door_sensor();
  4166. actual_outside_door_sensor_ = value;
  4167. // @@protoc_insertion_point(field_set:message.Passageway_data.actual_outside_door_sensor)
  4168. }
  4169. // optional .message.Door_motion actual_inside_door_motion = 11;
  4170. inline bool Passageway_data::has_actual_inside_door_motion() const {
  4171. return (_has_bits_[0] & 0x00001000u) != 0;
  4172. }
  4173. inline void Passageway_data::set_has_actual_inside_door_motion() {
  4174. _has_bits_[0] |= 0x00001000u;
  4175. }
  4176. inline void Passageway_data::clear_has_actual_inside_door_motion() {
  4177. _has_bits_[0] &= ~0x00001000u;
  4178. }
  4179. inline void Passageway_data::clear_actual_inside_door_motion() {
  4180. actual_inside_door_motion_ = 0;
  4181. clear_has_actual_inside_door_motion();
  4182. }
  4183. inline ::message::Door_motion Passageway_data::actual_inside_door_motion() const {
  4184. // @@protoc_insertion_point(field_get:message.Passageway_data.actual_inside_door_motion)
  4185. return static_cast< ::message::Door_motion >(actual_inside_door_motion_);
  4186. }
  4187. inline void Passageway_data::set_actual_inside_door_motion(::message::Door_motion value) {
  4188. assert(::message::Door_motion_IsValid(value));
  4189. set_has_actual_inside_door_motion();
  4190. actual_inside_door_motion_ = value;
  4191. // @@protoc_insertion_point(field_set:message.Passageway_data.actual_inside_door_motion)
  4192. }
  4193. // optional .message.Door_motion actual_outside_door_motion = 12;
  4194. inline bool Passageway_data::has_actual_outside_door_motion() const {
  4195. return (_has_bits_[0] & 0x00002000u) != 0;
  4196. }
  4197. inline void Passageway_data::set_has_actual_outside_door_motion() {
  4198. _has_bits_[0] |= 0x00002000u;
  4199. }
  4200. inline void Passageway_data::clear_has_actual_outside_door_motion() {
  4201. _has_bits_[0] &= ~0x00002000u;
  4202. }
  4203. inline void Passageway_data::clear_actual_outside_door_motion() {
  4204. actual_outside_door_motion_ = 0;
  4205. clear_has_actual_outside_door_motion();
  4206. }
  4207. inline ::message::Door_motion Passageway_data::actual_outside_door_motion() const {
  4208. // @@protoc_insertion_point(field_get:message.Passageway_data.actual_outside_door_motion)
  4209. return static_cast< ::message::Door_motion >(actual_outside_door_motion_);
  4210. }
  4211. inline void Passageway_data::set_actual_outside_door_motion(::message::Door_motion value) {
  4212. assert(::message::Door_motion_IsValid(value));
  4213. set_has_actual_outside_door_motion();
  4214. actual_outside_door_motion_ = value;
  4215. // @@protoc_insertion_point(field_set:message.Passageway_data.actual_outside_door_motion)
  4216. }
  4217. // optional .message.Load_status actual_turntable_load_status = 13;
  4218. inline bool Passageway_data::has_actual_turntable_load_status() const {
  4219. return (_has_bits_[0] & 0x00004000u) != 0;
  4220. }
  4221. inline void Passageway_data::set_has_actual_turntable_load_status() {
  4222. _has_bits_[0] |= 0x00004000u;
  4223. }
  4224. inline void Passageway_data::clear_has_actual_turntable_load_status() {
  4225. _has_bits_[0] &= ~0x00004000u;
  4226. }
  4227. inline void Passageway_data::clear_actual_turntable_load_status() {
  4228. actual_turntable_load_status_ = 0;
  4229. clear_has_actual_turntable_load_status();
  4230. }
  4231. inline ::message::Load_status Passageway_data::actual_turntable_load_status() const {
  4232. // @@protoc_insertion_point(field_get:message.Passageway_data.actual_turntable_load_status)
  4233. return static_cast< ::message::Load_status >(actual_turntable_load_status_);
  4234. }
  4235. inline void Passageway_data::set_actual_turntable_load_status(::message::Load_status value) {
  4236. assert(::message::Load_status_IsValid(value));
  4237. set_has_actual_turntable_load_status();
  4238. actual_turntable_load_status_ = value;
  4239. // @@protoc_insertion_point(field_set:message.Passageway_data.actual_turntable_load_status)
  4240. }
  4241. // optional .message.Turntable_direction actual_turntable_direction = 14;
  4242. inline bool Passageway_data::has_actual_turntable_direction() const {
  4243. return (_has_bits_[0] & 0x00008000u) != 0;
  4244. }
  4245. inline void Passageway_data::set_has_actual_turntable_direction() {
  4246. _has_bits_[0] |= 0x00008000u;
  4247. }
  4248. inline void Passageway_data::clear_has_actual_turntable_direction() {
  4249. _has_bits_[0] &= ~0x00008000u;
  4250. }
  4251. inline void Passageway_data::clear_actual_turntable_direction() {
  4252. actual_turntable_direction_ = 0;
  4253. clear_has_actual_turntable_direction();
  4254. }
  4255. inline ::message::Turntable_direction Passageway_data::actual_turntable_direction() const {
  4256. // @@protoc_insertion_point(field_get:message.Passageway_data.actual_turntable_direction)
  4257. return static_cast< ::message::Turntable_direction >(actual_turntable_direction_);
  4258. }
  4259. inline void Passageway_data::set_actual_turntable_direction(::message::Turntable_direction value) {
  4260. assert(::message::Turntable_direction_IsValid(value));
  4261. set_has_actual_turntable_direction();
  4262. actual_turntable_direction_ = value;
  4263. // @@protoc_insertion_point(field_set:message.Passageway_data.actual_turntable_direction)
  4264. }
  4265. // optional string actual_error_code = 15;
  4266. inline bool Passageway_data::has_actual_error_code() const {
  4267. return (_has_bits_[0] & 0x00000001u) != 0;
  4268. }
  4269. inline void Passageway_data::set_has_actual_error_code() {
  4270. _has_bits_[0] |= 0x00000001u;
  4271. }
  4272. inline void Passageway_data::clear_has_actual_error_code() {
  4273. _has_bits_[0] &= ~0x00000001u;
  4274. }
  4275. inline void Passageway_data::clear_actual_error_code() {
  4276. actual_error_code_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  4277. clear_has_actual_error_code();
  4278. }
  4279. inline const ::std::string& Passageway_data::actual_error_code() const {
  4280. // @@protoc_insertion_point(field_get:message.Passageway_data.actual_error_code)
  4281. return actual_error_code_.GetNoArena();
  4282. }
  4283. inline void Passageway_data::set_actual_error_code(const ::std::string& value) {
  4284. set_has_actual_error_code();
  4285. actual_error_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  4286. // @@protoc_insertion_point(field_set:message.Passageway_data.actual_error_code)
  4287. }
  4288. #if LANG_CXX11
  4289. inline void Passageway_data::set_actual_error_code(::std::string&& value) {
  4290. set_has_actual_error_code();
  4291. actual_error_code_.SetNoArena(
  4292. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  4293. // @@protoc_insertion_point(field_set_rvalue:message.Passageway_data.actual_error_code)
  4294. }
  4295. #endif
  4296. inline void Passageway_data::set_actual_error_code(const char* value) {
  4297. GOOGLE_DCHECK(value != NULL);
  4298. set_has_actual_error_code();
  4299. actual_error_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  4300. // @@protoc_insertion_point(field_set_char:message.Passageway_data.actual_error_code)
  4301. }
  4302. inline void Passageway_data::set_actual_error_code(const char* value, size_t size) {
  4303. set_has_actual_error_code();
  4304. actual_error_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  4305. ::std::string(reinterpret_cast<const char*>(value), size));
  4306. // @@protoc_insertion_point(field_set_pointer:message.Passageway_data.actual_error_code)
  4307. }
  4308. inline ::std::string* Passageway_data::mutable_actual_error_code() {
  4309. set_has_actual_error_code();
  4310. // @@protoc_insertion_point(field_mutable:message.Passageway_data.actual_error_code)
  4311. return actual_error_code_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  4312. }
  4313. inline ::std::string* Passageway_data::release_actual_error_code() {
  4314. // @@protoc_insertion_point(field_release:message.Passageway_data.actual_error_code)
  4315. if (!has_actual_error_code()) {
  4316. return NULL;
  4317. }
  4318. clear_has_actual_error_code();
  4319. return actual_error_code_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  4320. }
  4321. inline void Passageway_data::set_allocated_actual_error_code(::std::string* actual_error_code) {
  4322. if (actual_error_code != NULL) {
  4323. set_has_actual_error_code();
  4324. } else {
  4325. clear_has_actual_error_code();
  4326. }
  4327. actual_error_code_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actual_error_code);
  4328. // @@protoc_insertion_point(field_set_allocated:message.Passageway_data.actual_error_code)
  4329. }
  4330. // optional string actual_warning_code = 16;
  4331. inline bool Passageway_data::has_actual_warning_code() const {
  4332. return (_has_bits_[0] & 0x00000002u) != 0;
  4333. }
  4334. inline void Passageway_data::set_has_actual_warning_code() {
  4335. _has_bits_[0] |= 0x00000002u;
  4336. }
  4337. inline void Passageway_data::clear_has_actual_warning_code() {
  4338. _has_bits_[0] &= ~0x00000002u;
  4339. }
  4340. inline void Passageway_data::clear_actual_warning_code() {
  4341. actual_warning_code_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  4342. clear_has_actual_warning_code();
  4343. }
  4344. inline const ::std::string& Passageway_data::actual_warning_code() const {
  4345. // @@protoc_insertion_point(field_get:message.Passageway_data.actual_warning_code)
  4346. return actual_warning_code_.GetNoArena();
  4347. }
  4348. inline void Passageway_data::set_actual_warning_code(const ::std::string& value) {
  4349. set_has_actual_warning_code();
  4350. actual_warning_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  4351. // @@protoc_insertion_point(field_set:message.Passageway_data.actual_warning_code)
  4352. }
  4353. #if LANG_CXX11
  4354. inline void Passageway_data::set_actual_warning_code(::std::string&& value) {
  4355. set_has_actual_warning_code();
  4356. actual_warning_code_.SetNoArena(
  4357. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  4358. // @@protoc_insertion_point(field_set_rvalue:message.Passageway_data.actual_warning_code)
  4359. }
  4360. #endif
  4361. inline void Passageway_data::set_actual_warning_code(const char* value) {
  4362. GOOGLE_DCHECK(value != NULL);
  4363. set_has_actual_warning_code();
  4364. actual_warning_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  4365. // @@protoc_insertion_point(field_set_char:message.Passageway_data.actual_warning_code)
  4366. }
  4367. inline void Passageway_data::set_actual_warning_code(const char* value, size_t size) {
  4368. set_has_actual_warning_code();
  4369. actual_warning_code_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  4370. ::std::string(reinterpret_cast<const char*>(value), size));
  4371. // @@protoc_insertion_point(field_set_pointer:message.Passageway_data.actual_warning_code)
  4372. }
  4373. inline ::std::string* Passageway_data::mutable_actual_warning_code() {
  4374. set_has_actual_warning_code();
  4375. // @@protoc_insertion_point(field_mutable:message.Passageway_data.actual_warning_code)
  4376. return actual_warning_code_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  4377. }
  4378. inline ::std::string* Passageway_data::release_actual_warning_code() {
  4379. // @@protoc_insertion_point(field_release:message.Passageway_data.actual_warning_code)
  4380. if (!has_actual_warning_code()) {
  4381. return NULL;
  4382. }
  4383. clear_has_actual_warning_code();
  4384. return actual_warning_code_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  4385. }
  4386. inline void Passageway_data::set_allocated_actual_warning_code(::std::string* actual_warning_code) {
  4387. if (actual_warning_code != NULL) {
  4388. set_has_actual_warning_code();
  4389. } else {
  4390. clear_has_actual_warning_code();
  4391. }
  4392. actual_warning_code_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actual_warning_code);
  4393. // @@protoc_insertion_point(field_set_allocated:message.Passageway_data.actual_warning_code)
  4394. }
  4395. // optional string actual_error_description = 17;
  4396. inline bool Passageway_data::has_actual_error_description() const {
  4397. return (_has_bits_[0] & 0x00000004u) != 0;
  4398. }
  4399. inline void Passageway_data::set_has_actual_error_description() {
  4400. _has_bits_[0] |= 0x00000004u;
  4401. }
  4402. inline void Passageway_data::clear_has_actual_error_description() {
  4403. _has_bits_[0] &= ~0x00000004u;
  4404. }
  4405. inline void Passageway_data::clear_actual_error_description() {
  4406. actual_error_description_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  4407. clear_has_actual_error_description();
  4408. }
  4409. inline const ::std::string& Passageway_data::actual_error_description() const {
  4410. // @@protoc_insertion_point(field_get:message.Passageway_data.actual_error_description)
  4411. return actual_error_description_.GetNoArena();
  4412. }
  4413. inline void Passageway_data::set_actual_error_description(const ::std::string& value) {
  4414. set_has_actual_error_description();
  4415. actual_error_description_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  4416. // @@protoc_insertion_point(field_set:message.Passageway_data.actual_error_description)
  4417. }
  4418. #if LANG_CXX11
  4419. inline void Passageway_data::set_actual_error_description(::std::string&& value) {
  4420. set_has_actual_error_description();
  4421. actual_error_description_.SetNoArena(
  4422. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  4423. // @@protoc_insertion_point(field_set_rvalue:message.Passageway_data.actual_error_description)
  4424. }
  4425. #endif
  4426. inline void Passageway_data::set_actual_error_description(const char* value) {
  4427. GOOGLE_DCHECK(value != NULL);
  4428. set_has_actual_error_description();
  4429. actual_error_description_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  4430. // @@protoc_insertion_point(field_set_char:message.Passageway_data.actual_error_description)
  4431. }
  4432. inline void Passageway_data::set_actual_error_description(const char* value, size_t size) {
  4433. set_has_actual_error_description();
  4434. actual_error_description_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  4435. ::std::string(reinterpret_cast<const char*>(value), size));
  4436. // @@protoc_insertion_point(field_set_pointer:message.Passageway_data.actual_error_description)
  4437. }
  4438. inline ::std::string* Passageway_data::mutable_actual_error_description() {
  4439. set_has_actual_error_description();
  4440. // @@protoc_insertion_point(field_mutable:message.Passageway_data.actual_error_description)
  4441. return actual_error_description_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  4442. }
  4443. inline ::std::string* Passageway_data::release_actual_error_description() {
  4444. // @@protoc_insertion_point(field_release:message.Passageway_data.actual_error_description)
  4445. if (!has_actual_error_description()) {
  4446. return NULL;
  4447. }
  4448. clear_has_actual_error_description();
  4449. return actual_error_description_.ReleaseNonDefaultNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  4450. }
  4451. inline void Passageway_data::set_allocated_actual_error_description(::std::string* actual_error_description) {
  4452. if (actual_error_description != NULL) {
  4453. set_has_actual_error_description();
  4454. } else {
  4455. clear_has_actual_error_description();
  4456. }
  4457. actual_error_description_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), actual_error_description);
  4458. // @@protoc_insertion_point(field_set_allocated:message.Passageway_data.actual_error_description)
  4459. }
  4460. // -------------------------------------------------------------------
  4461. // Dispatch_manager_status_msg
  4462. // required .message.Base_info base_info = 1;
  4463. inline bool Dispatch_manager_status_msg::has_base_info() const {
  4464. return (_has_bits_[0] & 0x00000001u) != 0;
  4465. }
  4466. inline void Dispatch_manager_status_msg::set_has_base_info() {
  4467. _has_bits_[0] |= 0x00000001u;
  4468. }
  4469. inline void Dispatch_manager_status_msg::clear_has_base_info() {
  4470. _has_bits_[0] &= ~0x00000001u;
  4471. }
  4472. inline const ::message::Base_info& Dispatch_manager_status_msg::_internal_base_info() const {
  4473. return *base_info_;
  4474. }
  4475. inline const ::message::Base_info& Dispatch_manager_status_msg::base_info() const {
  4476. const ::message::Base_info* p = base_info_;
  4477. // @@protoc_insertion_point(field_get:message.Dispatch_manager_status_msg.base_info)
  4478. return p != NULL ? *p : *reinterpret_cast<const ::message::Base_info*>(
  4479. &::message::_Base_info_default_instance_);
  4480. }
  4481. inline ::message::Base_info* Dispatch_manager_status_msg::release_base_info() {
  4482. // @@protoc_insertion_point(field_release:message.Dispatch_manager_status_msg.base_info)
  4483. clear_has_base_info();
  4484. ::message::Base_info* temp = base_info_;
  4485. base_info_ = NULL;
  4486. return temp;
  4487. }
  4488. inline ::message::Base_info* Dispatch_manager_status_msg::mutable_base_info() {
  4489. set_has_base_info();
  4490. if (base_info_ == NULL) {
  4491. auto* p = CreateMaybeMessage<::message::Base_info>(GetArenaNoVirtual());
  4492. base_info_ = p;
  4493. }
  4494. // @@protoc_insertion_point(field_mutable:message.Dispatch_manager_status_msg.base_info)
  4495. return base_info_;
  4496. }
  4497. inline void Dispatch_manager_status_msg::set_allocated_base_info(::message::Base_info* base_info) {
  4498. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  4499. if (message_arena == NULL) {
  4500. delete reinterpret_cast< ::google::protobuf::MessageLite*>(base_info_);
  4501. }
  4502. if (base_info) {
  4503. ::google::protobuf::Arena* submessage_arena = NULL;
  4504. if (message_arena != submessage_arena) {
  4505. base_info = ::google::protobuf::internal::GetOwnedMessage(
  4506. message_arena, base_info, submessage_arena);
  4507. }
  4508. set_has_base_info();
  4509. } else {
  4510. clear_has_base_info();
  4511. }
  4512. base_info_ = base_info;
  4513. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_manager_status_msg.base_info)
  4514. }
  4515. // required int32 dispatch_id = 2;
  4516. inline bool Dispatch_manager_status_msg::has_dispatch_id() const {
  4517. return (_has_bits_[0] & 0x00000002u) != 0;
  4518. }
  4519. inline void Dispatch_manager_status_msg::set_has_dispatch_id() {
  4520. _has_bits_[0] |= 0x00000002u;
  4521. }
  4522. inline void Dispatch_manager_status_msg::clear_has_dispatch_id() {
  4523. _has_bits_[0] &= ~0x00000002u;
  4524. }
  4525. inline void Dispatch_manager_status_msg::clear_dispatch_id() {
  4526. dispatch_id_ = 0;
  4527. clear_has_dispatch_id();
  4528. }
  4529. inline ::google::protobuf::int32 Dispatch_manager_status_msg::dispatch_id() const {
  4530. // @@protoc_insertion_point(field_get:message.Dispatch_manager_status_msg.dispatch_id)
  4531. return dispatch_id_;
  4532. }
  4533. inline void Dispatch_manager_status_msg::set_dispatch_id(::google::protobuf::int32 value) {
  4534. set_has_dispatch_id();
  4535. dispatch_id_ = value;
  4536. // @@protoc_insertion_point(field_set:message.Dispatch_manager_status_msg.dispatch_id)
  4537. }
  4538. // required .message.Dispatch_manager_status dispatch_manager_status = 3;
  4539. inline bool Dispatch_manager_status_msg::has_dispatch_manager_status() const {
  4540. return (_has_bits_[0] & 0x00000004u) != 0;
  4541. }
  4542. inline void Dispatch_manager_status_msg::set_has_dispatch_manager_status() {
  4543. _has_bits_[0] |= 0x00000004u;
  4544. }
  4545. inline void Dispatch_manager_status_msg::clear_has_dispatch_manager_status() {
  4546. _has_bits_[0] &= ~0x00000004u;
  4547. }
  4548. inline void Dispatch_manager_status_msg::clear_dispatch_manager_status() {
  4549. dispatch_manager_status_ = 0;
  4550. clear_has_dispatch_manager_status();
  4551. }
  4552. inline ::message::Dispatch_manager_status Dispatch_manager_status_msg::dispatch_manager_status() const {
  4553. // @@protoc_insertion_point(field_get:message.Dispatch_manager_status_msg.dispatch_manager_status)
  4554. return static_cast< ::message::Dispatch_manager_status >(dispatch_manager_status_);
  4555. }
  4556. inline void Dispatch_manager_status_msg::set_dispatch_manager_status(::message::Dispatch_manager_status value) {
  4557. assert(::message::Dispatch_manager_status_IsValid(value));
  4558. set_has_dispatch_manager_status();
  4559. dispatch_manager_status_ = value;
  4560. // @@protoc_insertion_point(field_set:message.Dispatch_manager_status_msg.dispatch_manager_status)
  4561. }
  4562. // repeated .message.Catcher_data catcher_data_map = 4;
  4563. inline int Dispatch_manager_status_msg::catcher_data_map_size() const {
  4564. return catcher_data_map_.size();
  4565. }
  4566. inline void Dispatch_manager_status_msg::clear_catcher_data_map() {
  4567. catcher_data_map_.Clear();
  4568. }
  4569. inline ::message::Catcher_data* Dispatch_manager_status_msg::mutable_catcher_data_map(int index) {
  4570. // @@protoc_insertion_point(field_mutable:message.Dispatch_manager_status_msg.catcher_data_map)
  4571. return catcher_data_map_.Mutable(index);
  4572. }
  4573. inline ::google::protobuf::RepeatedPtrField< ::message::Catcher_data >*
  4574. Dispatch_manager_status_msg::mutable_catcher_data_map() {
  4575. // @@protoc_insertion_point(field_mutable_list:message.Dispatch_manager_status_msg.catcher_data_map)
  4576. return &catcher_data_map_;
  4577. }
  4578. inline const ::message::Catcher_data& Dispatch_manager_status_msg::catcher_data_map(int index) const {
  4579. // @@protoc_insertion_point(field_get:message.Dispatch_manager_status_msg.catcher_data_map)
  4580. return catcher_data_map_.Get(index);
  4581. }
  4582. inline ::message::Catcher_data* Dispatch_manager_status_msg::add_catcher_data_map() {
  4583. // @@protoc_insertion_point(field_add:message.Dispatch_manager_status_msg.catcher_data_map)
  4584. return catcher_data_map_.Add();
  4585. }
  4586. inline const ::google::protobuf::RepeatedPtrField< ::message::Catcher_data >&
  4587. Dispatch_manager_status_msg::catcher_data_map() const {
  4588. // @@protoc_insertion_point(field_list:message.Dispatch_manager_status_msg.catcher_data_map)
  4589. return catcher_data_map_;
  4590. }
  4591. // repeated .message.Carrier_data carrier_data_map = 5;
  4592. inline int Dispatch_manager_status_msg::carrier_data_map_size() const {
  4593. return carrier_data_map_.size();
  4594. }
  4595. inline void Dispatch_manager_status_msg::clear_carrier_data_map() {
  4596. carrier_data_map_.Clear();
  4597. }
  4598. inline ::message::Carrier_data* Dispatch_manager_status_msg::mutable_carrier_data_map(int index) {
  4599. // @@protoc_insertion_point(field_mutable:message.Dispatch_manager_status_msg.carrier_data_map)
  4600. return carrier_data_map_.Mutable(index);
  4601. }
  4602. inline ::google::protobuf::RepeatedPtrField< ::message::Carrier_data >*
  4603. Dispatch_manager_status_msg::mutable_carrier_data_map() {
  4604. // @@protoc_insertion_point(field_mutable_list:message.Dispatch_manager_status_msg.carrier_data_map)
  4605. return &carrier_data_map_;
  4606. }
  4607. inline const ::message::Carrier_data& Dispatch_manager_status_msg::carrier_data_map(int index) const {
  4608. // @@protoc_insertion_point(field_get:message.Dispatch_manager_status_msg.carrier_data_map)
  4609. return carrier_data_map_.Get(index);
  4610. }
  4611. inline ::message::Carrier_data* Dispatch_manager_status_msg::add_carrier_data_map() {
  4612. // @@protoc_insertion_point(field_add:message.Dispatch_manager_status_msg.carrier_data_map)
  4613. return carrier_data_map_.Add();
  4614. }
  4615. inline const ::google::protobuf::RepeatedPtrField< ::message::Carrier_data >&
  4616. Dispatch_manager_status_msg::carrier_data_map() const {
  4617. // @@protoc_insertion_point(field_list:message.Dispatch_manager_status_msg.carrier_data_map)
  4618. return carrier_data_map_;
  4619. }
  4620. // repeated .message.Passageway_data passageway_data_map = 6;
  4621. inline int Dispatch_manager_status_msg::passageway_data_map_size() const {
  4622. return passageway_data_map_.size();
  4623. }
  4624. inline void Dispatch_manager_status_msg::clear_passageway_data_map() {
  4625. passageway_data_map_.Clear();
  4626. }
  4627. inline ::message::Passageway_data* Dispatch_manager_status_msg::mutable_passageway_data_map(int index) {
  4628. // @@protoc_insertion_point(field_mutable:message.Dispatch_manager_status_msg.passageway_data_map)
  4629. return passageway_data_map_.Mutable(index);
  4630. }
  4631. inline ::google::protobuf::RepeatedPtrField< ::message::Passageway_data >*
  4632. Dispatch_manager_status_msg::mutable_passageway_data_map() {
  4633. // @@protoc_insertion_point(field_mutable_list:message.Dispatch_manager_status_msg.passageway_data_map)
  4634. return &passageway_data_map_;
  4635. }
  4636. inline const ::message::Passageway_data& Dispatch_manager_status_msg::passageway_data_map(int index) const {
  4637. // @@protoc_insertion_point(field_get:message.Dispatch_manager_status_msg.passageway_data_map)
  4638. return passageway_data_map_.Get(index);
  4639. }
  4640. inline ::message::Passageway_data* Dispatch_manager_status_msg::add_passageway_data_map() {
  4641. // @@protoc_insertion_point(field_add:message.Dispatch_manager_status_msg.passageway_data_map)
  4642. return passageway_data_map_.Add();
  4643. }
  4644. inline const ::google::protobuf::RepeatedPtrField< ::message::Passageway_data >&
  4645. Dispatch_manager_status_msg::passageway_data_map() const {
  4646. // @@protoc_insertion_point(field_list:message.Dispatch_manager_status_msg.passageway_data_map)
  4647. return passageway_data_map_;
  4648. }
  4649. // -------------------------------------------------------------------
  4650. // Dispatch_manager_data_msg
  4651. #ifdef __GNUC__
  4652. #pragma GCC diagnostic pop
  4653. #endif // __GNUC__
  4654. // -------------------------------------------------------------------
  4655. // -------------------------------------------------------------------
  4656. // -------------------------------------------------------------------
  4657. // -------------------------------------------------------------------
  4658. // -------------------------------------------------------------------
  4659. // -------------------------------------------------------------------
  4660. // -------------------------------------------------------------------
  4661. // @@protoc_insertion_point(namespace_scope)
  4662. } // namespace message
  4663. namespace google {
  4664. namespace protobuf {
  4665. template <> struct is_proto_enum< ::message::Terminal_status> : ::std::true_type {};
  4666. template <>
  4667. inline const EnumDescriptor* GetEnumDescriptor< ::message::Terminal_status>() {
  4668. return ::message::Terminal_status_descriptor();
  4669. }
  4670. template <> struct is_proto_enum< ::message::Passageway_direction> : ::std::true_type {};
  4671. template <>
  4672. inline const EnumDescriptor* GetEnumDescriptor< ::message::Passageway_direction>() {
  4673. return ::message::Passageway_direction_descriptor();
  4674. }
  4675. template <> struct is_proto_enum< ::message::Dispatch_motion_direction> : ::std::true_type {};
  4676. template <>
  4677. inline const EnumDescriptor* GetEnumDescriptor< ::message::Dispatch_motion_direction>() {
  4678. return ::message::Dispatch_motion_direction_descriptor();
  4679. }
  4680. template <> struct is_proto_enum< ::message::Dispatch_manager_status> : ::std::true_type {};
  4681. template <>
  4682. inline const EnumDescriptor* GetEnumDescriptor< ::message::Dispatch_manager_status>() {
  4683. return ::message::Dispatch_manager_status_descriptor();
  4684. }
  4685. template <> struct is_proto_enum< ::message::Dispatch_device_status> : ::std::true_type {};
  4686. template <>
  4687. inline const EnumDescriptor* GetEnumDescriptor< ::message::Dispatch_device_status>() {
  4688. return ::message::Dispatch_device_status_descriptor();
  4689. }
  4690. template <> struct is_proto_enum< ::message::Dispatch_task_level> : ::std::true_type {};
  4691. template <>
  4692. inline const EnumDescriptor* GetEnumDescriptor< ::message::Dispatch_task_level>() {
  4693. return ::message::Dispatch_task_level_descriptor();
  4694. }
  4695. template <> struct is_proto_enum< ::message::Clamp_motion> : ::std::true_type {};
  4696. template <>
  4697. inline const EnumDescriptor* GetEnumDescriptor< ::message::Clamp_motion>() {
  4698. return ::message::Clamp_motion_descriptor();
  4699. }
  4700. template <> struct is_proto_enum< ::message::Joint_motion> : ::std::true_type {};
  4701. template <>
  4702. inline const EnumDescriptor* GetEnumDescriptor< ::message::Joint_motion>() {
  4703. return ::message::Joint_motion_descriptor();
  4704. }
  4705. template <> struct is_proto_enum< ::message::Small_sports_car_motion> : ::std::true_type {};
  4706. template <>
  4707. inline const EnumDescriptor* GetEnumDescriptor< ::message::Small_sports_car_motion>() {
  4708. return ::message::Small_sports_car_motion_descriptor();
  4709. }
  4710. template <> struct is_proto_enum< ::message::Respons_status> : ::std::true_type {};
  4711. template <>
  4712. inline const EnumDescriptor* GetEnumDescriptor< ::message::Respons_status>() {
  4713. return ::message::Respons_status_descriptor();
  4714. }
  4715. template <> struct is_proto_enum< ::message::Hardware_device_status> : ::std::true_type {};
  4716. template <>
  4717. inline const EnumDescriptor* GetEnumDescriptor< ::message::Hardware_device_status>() {
  4718. return ::message::Hardware_device_status_descriptor();
  4719. }
  4720. template <> struct is_proto_enum< ::message::Load_status> : ::std::true_type {};
  4721. template <>
  4722. inline const EnumDescriptor* GetEnumDescriptor< ::message::Load_status>() {
  4723. return ::message::Load_status_descriptor();
  4724. }
  4725. template <> struct is_proto_enum< ::message::Turntable_direction> : ::std::true_type {};
  4726. template <>
  4727. inline const EnumDescriptor* GetEnumDescriptor< ::message::Turntable_direction>() {
  4728. return ::message::Turntable_direction_descriptor();
  4729. }
  4730. template <> struct is_proto_enum< ::message::Door_motion> : ::std::true_type {};
  4731. template <>
  4732. inline const EnumDescriptor* GetEnumDescriptor< ::message::Door_motion>() {
  4733. return ::message::Door_motion_descriptor();
  4734. }
  4735. template <> struct is_proto_enum< ::message::Overstep_the_boundary> : ::std::true_type {};
  4736. template <>
  4737. inline const EnumDescriptor* GetEnumDescriptor< ::message::Overstep_the_boundary>() {
  4738. return ::message::Overstep_the_boundary_descriptor();
  4739. }
  4740. } // namespace protobuf
  4741. } // namespace google
  4742. // @@protoc_insertion_point(global_scope)
  4743. #endif // PROTOBUF_INCLUDED_dispatch_5fmessage_2eproto