dispatch_parameter.pb.h 165 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134
  1. // Generated by the protocol buffer compiler. DO NOT EDIT!
  2. // source: dispatch_parameter.proto
  3. #ifndef PROTOBUF_dispatch_5fparameter_2eproto__INCLUDED
  4. #define PROTOBUF_dispatch_5fparameter_2eproto__INCLUDED
  5. #include <string>
  6. #include <google/protobuf/stubs/common.h>
  7. #if GOOGLE_PROTOBUF_VERSION < 3005000
  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 3005000 < 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/metadata.h>
  23. #include <google/protobuf/message.h>
  24. #include <google/protobuf/repeated_field.h> // IWYU pragma: export
  25. #include <google/protobuf/extension_set.h> // IWYU pragma: export
  26. #include <google/protobuf/generated_enum_reflection.h>
  27. #include <google/protobuf/unknown_field_set.h>
  28. // @@protoc_insertion_point(includes)
  29. namespace protobuf_dispatch_5fparameter_2eproto {
  30. // Internal implementation detail -- do not use these members.
  31. struct TableStruct {
  32. static const ::google::protobuf::internal::ParseTableField entries[];
  33. static const ::google::protobuf::internal::AuxillaryParseTableField aux[];
  34. static const ::google::protobuf::internal::ParseTable schema[12];
  35. static const ::google::protobuf::internal::FieldMetadata field_metadata[];
  36. static const ::google::protobuf::internal::SerializationTable serialization_table[];
  37. static const ::google::protobuf::uint32 offsets[];
  38. };
  39. void AddDescriptors();
  40. void InitDefaultsCatcher_parameterImpl();
  41. void InitDefaultsCatcher_parameter();
  42. void InitDefaultsCarrier_parameterImpl();
  43. void InitDefaultsCarrier_parameter();
  44. void InitDefaultsPassageway_parameterImpl();
  45. void InitDefaultsPassageway_parameter();
  46. void InitDefaultsLaser_parameter_allImpl();
  47. void InitDefaultsLaser_parameter_all();
  48. void InitDefaultsPackspace_coordinates_parameterImpl();
  49. void InitDefaultsPackspace_coordinates_parameter();
  50. void InitDefaultsPassageway_coordinates_parameterImpl();
  51. void InitDefaultsPassageway_coordinates_parameter();
  52. void InitDefaultsCarrier_coordinates_parameterImpl();
  53. void InitDefaultsCarrier_coordinates_parameter();
  54. void InitDefaultsCatcher_coordinates_parameterImpl();
  55. void InitDefaultsCatcher_coordinates_parameter();
  56. void InitDefaultsCarrier_box_parameterImpl();
  57. void InitDefaultsCarrier_box_parameter();
  58. void InitDefaultsCatcher_box_parameterImpl();
  59. void InitDefaultsCatcher_box_parameter();
  60. void InitDefaultsAxis_range_parameterImpl();
  61. void InitDefaultsAxis_range_parameter();
  62. void InitDefaultsDispatch_coordinates_parameter_allImpl();
  63. void InitDefaultsDispatch_coordinates_parameter_all();
  64. inline void InitDefaults() {
  65. InitDefaultsCatcher_parameter();
  66. InitDefaultsCarrier_parameter();
  67. InitDefaultsPassageway_parameter();
  68. InitDefaultsLaser_parameter_all();
  69. InitDefaultsPackspace_coordinates_parameter();
  70. InitDefaultsPassageway_coordinates_parameter();
  71. InitDefaultsCarrier_coordinates_parameter();
  72. InitDefaultsCatcher_coordinates_parameter();
  73. InitDefaultsCarrier_box_parameter();
  74. InitDefaultsCatcher_box_parameter();
  75. InitDefaultsAxis_range_parameter();
  76. InitDefaultsDispatch_coordinates_parameter_all();
  77. }
  78. } // namespace protobuf_dispatch_5fparameter_2eproto
  79. namespace Dispatch_proto {
  80. class Axis_range_parameter;
  81. class Axis_range_parameterDefaultTypeInternal;
  82. extern Axis_range_parameterDefaultTypeInternal _Axis_range_parameter_default_instance_;
  83. class Carrier_box_parameter;
  84. class Carrier_box_parameterDefaultTypeInternal;
  85. extern Carrier_box_parameterDefaultTypeInternal _Carrier_box_parameter_default_instance_;
  86. class Carrier_coordinates_parameter;
  87. class Carrier_coordinates_parameterDefaultTypeInternal;
  88. extern Carrier_coordinates_parameterDefaultTypeInternal _Carrier_coordinates_parameter_default_instance_;
  89. class Carrier_parameter;
  90. class Carrier_parameterDefaultTypeInternal;
  91. extern Carrier_parameterDefaultTypeInternal _Carrier_parameter_default_instance_;
  92. class Catcher_box_parameter;
  93. class Catcher_box_parameterDefaultTypeInternal;
  94. extern Catcher_box_parameterDefaultTypeInternal _Catcher_box_parameter_default_instance_;
  95. class Catcher_coordinates_parameter;
  96. class Catcher_coordinates_parameterDefaultTypeInternal;
  97. extern Catcher_coordinates_parameterDefaultTypeInternal _Catcher_coordinates_parameter_default_instance_;
  98. class Catcher_parameter;
  99. class Catcher_parameterDefaultTypeInternal;
  100. extern Catcher_parameterDefaultTypeInternal _Catcher_parameter_default_instance_;
  101. class Dispatch_coordinates_parameter_all;
  102. class Dispatch_coordinates_parameter_allDefaultTypeInternal;
  103. extern Dispatch_coordinates_parameter_allDefaultTypeInternal _Dispatch_coordinates_parameter_all_default_instance_;
  104. class Laser_parameter_all;
  105. class Laser_parameter_allDefaultTypeInternal;
  106. extern Laser_parameter_allDefaultTypeInternal _Laser_parameter_all_default_instance_;
  107. class Packspace_coordinates_parameter;
  108. class Packspace_coordinates_parameterDefaultTypeInternal;
  109. extern Packspace_coordinates_parameterDefaultTypeInternal _Packspace_coordinates_parameter_default_instance_;
  110. class Passageway_coordinates_parameter;
  111. class Passageway_coordinates_parameterDefaultTypeInternal;
  112. extern Passageway_coordinates_parameterDefaultTypeInternal _Passageway_coordinates_parameter_default_instance_;
  113. class Passageway_parameter;
  114. class Passageway_parameterDefaultTypeInternal;
  115. extern Passageway_parameterDefaultTypeInternal _Passageway_parameter_default_instance_;
  116. } // namespace Dispatch_proto
  117. namespace Dispatch_proto {
  118. enum Passageway_functioning_pattern {
  119. PASSAGEWAY_FUNCTIONING_PATTERN_UNKNOWN = 0,
  120. PASSAGEWAY_FUNCTIONING_PATTERN_INLET = 1,
  121. PASSAGEWAY_FUNCTIONING_PATTERN_OUTLET = 2,
  122. PASSAGEWAY_FUNCTIONING_PATTERN_BIDIRECTION = 3
  123. };
  124. bool Passageway_functioning_pattern_IsValid(int value);
  125. const Passageway_functioning_pattern Passageway_functioning_pattern_MIN = PASSAGEWAY_FUNCTIONING_PATTERN_UNKNOWN;
  126. const Passageway_functioning_pattern Passageway_functioning_pattern_MAX = PASSAGEWAY_FUNCTIONING_PATTERN_BIDIRECTION;
  127. const int Passageway_functioning_pattern_ARRAYSIZE = Passageway_functioning_pattern_MAX + 1;
  128. const ::google::protobuf::EnumDescriptor* Passageway_functioning_pattern_descriptor();
  129. inline const ::std::string& Passageway_functioning_pattern_Name(Passageway_functioning_pattern value) {
  130. return ::google::protobuf::internal::NameOfEnum(
  131. Passageway_functioning_pattern_descriptor(), value);
  132. }
  133. inline bool Passageway_functioning_pattern_Parse(
  134. const ::std::string& name, Passageway_functioning_pattern* value) {
  135. return ::google::protobuf::internal::ParseNamedEnum<Passageway_functioning_pattern>(
  136. Passageway_functioning_pattern_descriptor(), name, value);
  137. }
  138. // ===================================================================
  139. class Catcher_parameter : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Dispatch_proto.Catcher_parameter) */ {
  140. public:
  141. Catcher_parameter();
  142. virtual ~Catcher_parameter();
  143. Catcher_parameter(const Catcher_parameter& from);
  144. inline Catcher_parameter& operator=(const Catcher_parameter& from) {
  145. CopyFrom(from);
  146. return *this;
  147. }
  148. #if LANG_CXX11
  149. Catcher_parameter(Catcher_parameter&& from) noexcept
  150. : Catcher_parameter() {
  151. *this = ::std::move(from);
  152. }
  153. inline Catcher_parameter& operator=(Catcher_parameter&& from) noexcept {
  154. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  155. if (this != &from) InternalSwap(&from);
  156. } else {
  157. CopyFrom(from);
  158. }
  159. return *this;
  160. }
  161. #endif
  162. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  163. return _internal_metadata_.unknown_fields();
  164. }
  165. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  166. return _internal_metadata_.mutable_unknown_fields();
  167. }
  168. static const ::google::protobuf::Descriptor* descriptor();
  169. static const Catcher_parameter& default_instance();
  170. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  171. static inline const Catcher_parameter* internal_default_instance() {
  172. return reinterpret_cast<const Catcher_parameter*>(
  173. &_Catcher_parameter_default_instance_);
  174. }
  175. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  176. 0;
  177. void Swap(Catcher_parameter* other);
  178. friend void swap(Catcher_parameter& a, Catcher_parameter& b) {
  179. a.Swap(&b);
  180. }
  181. // implements Message ----------------------------------------------
  182. inline Catcher_parameter* New() const PROTOBUF_FINAL { return New(NULL); }
  183. Catcher_parameter* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  184. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  185. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  186. void CopyFrom(const Catcher_parameter& from);
  187. void MergeFrom(const Catcher_parameter& from);
  188. void Clear() PROTOBUF_FINAL;
  189. bool IsInitialized() const PROTOBUF_FINAL;
  190. size_t ByteSizeLong() const PROTOBUF_FINAL;
  191. bool MergePartialFromCodedStream(
  192. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  193. void SerializeWithCachedSizes(
  194. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  195. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  196. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  197. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  198. private:
  199. void SharedCtor();
  200. void SharedDtor();
  201. void SetCachedSize(int size) const PROTOBUF_FINAL;
  202. void InternalSwap(Catcher_parameter* other);
  203. private:
  204. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  205. return NULL;
  206. }
  207. inline void* MaybeArenaPtr() const {
  208. return NULL;
  209. }
  210. public:
  211. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  212. // nested types ----------------------------------------------------
  213. // accessors -------------------------------------------------------
  214. // required int32 id = 1;
  215. bool has_id() const;
  216. void clear_id();
  217. static const int kIdFieldNumber = 1;
  218. ::google::protobuf::int32 id() const;
  219. void set_id(::google::protobuf::int32 value);
  220. // @@protoc_insertion_point(class_scope:Dispatch_proto.Catcher_parameter)
  221. private:
  222. void set_has_id();
  223. void clear_has_id();
  224. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  225. ::google::protobuf::internal::HasBits<1> _has_bits_;
  226. mutable int _cached_size_;
  227. ::google::protobuf::int32 id_;
  228. friend struct ::protobuf_dispatch_5fparameter_2eproto::TableStruct;
  229. friend void ::protobuf_dispatch_5fparameter_2eproto::InitDefaultsCatcher_parameterImpl();
  230. };
  231. // -------------------------------------------------------------------
  232. class Carrier_parameter : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Dispatch_proto.Carrier_parameter) */ {
  233. public:
  234. Carrier_parameter();
  235. virtual ~Carrier_parameter();
  236. Carrier_parameter(const Carrier_parameter& from);
  237. inline Carrier_parameter& operator=(const Carrier_parameter& from) {
  238. CopyFrom(from);
  239. return *this;
  240. }
  241. #if LANG_CXX11
  242. Carrier_parameter(Carrier_parameter&& from) noexcept
  243. : Carrier_parameter() {
  244. *this = ::std::move(from);
  245. }
  246. inline Carrier_parameter& operator=(Carrier_parameter&& from) noexcept {
  247. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  248. if (this != &from) InternalSwap(&from);
  249. } else {
  250. CopyFrom(from);
  251. }
  252. return *this;
  253. }
  254. #endif
  255. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  256. return _internal_metadata_.unknown_fields();
  257. }
  258. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  259. return _internal_metadata_.mutable_unknown_fields();
  260. }
  261. static const ::google::protobuf::Descriptor* descriptor();
  262. static const Carrier_parameter& default_instance();
  263. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  264. static inline const Carrier_parameter* internal_default_instance() {
  265. return reinterpret_cast<const Carrier_parameter*>(
  266. &_Carrier_parameter_default_instance_);
  267. }
  268. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  269. 1;
  270. void Swap(Carrier_parameter* other);
  271. friend void swap(Carrier_parameter& a, Carrier_parameter& b) {
  272. a.Swap(&b);
  273. }
  274. // implements Message ----------------------------------------------
  275. inline Carrier_parameter* New() const PROTOBUF_FINAL { return New(NULL); }
  276. Carrier_parameter* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  277. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  278. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  279. void CopyFrom(const Carrier_parameter& from);
  280. void MergeFrom(const Carrier_parameter& from);
  281. void Clear() PROTOBUF_FINAL;
  282. bool IsInitialized() const PROTOBUF_FINAL;
  283. size_t ByteSizeLong() const PROTOBUF_FINAL;
  284. bool MergePartialFromCodedStream(
  285. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  286. void SerializeWithCachedSizes(
  287. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  288. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  289. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  290. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  291. private:
  292. void SharedCtor();
  293. void SharedDtor();
  294. void SetCachedSize(int size) const PROTOBUF_FINAL;
  295. void InternalSwap(Carrier_parameter* other);
  296. private:
  297. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  298. return NULL;
  299. }
  300. inline void* MaybeArenaPtr() const {
  301. return NULL;
  302. }
  303. public:
  304. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  305. // nested types ----------------------------------------------------
  306. // accessors -------------------------------------------------------
  307. // required int32 id = 1;
  308. bool has_id() const;
  309. void clear_id();
  310. static const int kIdFieldNumber = 1;
  311. ::google::protobuf::int32 id() const;
  312. void set_id(::google::protobuf::int32 value);
  313. // @@protoc_insertion_point(class_scope:Dispatch_proto.Carrier_parameter)
  314. private:
  315. void set_has_id();
  316. void clear_has_id();
  317. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  318. ::google::protobuf::internal::HasBits<1> _has_bits_;
  319. mutable int _cached_size_;
  320. ::google::protobuf::int32 id_;
  321. friend struct ::protobuf_dispatch_5fparameter_2eproto::TableStruct;
  322. friend void ::protobuf_dispatch_5fparameter_2eproto::InitDefaultsCarrier_parameterImpl();
  323. };
  324. // -------------------------------------------------------------------
  325. class Passageway_parameter : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Dispatch_proto.Passageway_parameter) */ {
  326. public:
  327. Passageway_parameter();
  328. virtual ~Passageway_parameter();
  329. Passageway_parameter(const Passageway_parameter& from);
  330. inline Passageway_parameter& operator=(const Passageway_parameter& from) {
  331. CopyFrom(from);
  332. return *this;
  333. }
  334. #if LANG_CXX11
  335. Passageway_parameter(Passageway_parameter&& from) noexcept
  336. : Passageway_parameter() {
  337. *this = ::std::move(from);
  338. }
  339. inline Passageway_parameter& operator=(Passageway_parameter&& from) noexcept {
  340. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  341. if (this != &from) InternalSwap(&from);
  342. } else {
  343. CopyFrom(from);
  344. }
  345. return *this;
  346. }
  347. #endif
  348. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  349. return _internal_metadata_.unknown_fields();
  350. }
  351. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  352. return _internal_metadata_.mutable_unknown_fields();
  353. }
  354. static const ::google::protobuf::Descriptor* descriptor();
  355. static const Passageway_parameter& default_instance();
  356. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  357. static inline const Passageway_parameter* internal_default_instance() {
  358. return reinterpret_cast<const Passageway_parameter*>(
  359. &_Passageway_parameter_default_instance_);
  360. }
  361. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  362. 2;
  363. void Swap(Passageway_parameter* other);
  364. friend void swap(Passageway_parameter& a, Passageway_parameter& b) {
  365. a.Swap(&b);
  366. }
  367. // implements Message ----------------------------------------------
  368. inline Passageway_parameter* New() const PROTOBUF_FINAL { return New(NULL); }
  369. Passageway_parameter* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  370. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  371. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  372. void CopyFrom(const Passageway_parameter& from);
  373. void MergeFrom(const Passageway_parameter& from);
  374. void Clear() PROTOBUF_FINAL;
  375. bool IsInitialized() const PROTOBUF_FINAL;
  376. size_t ByteSizeLong() const PROTOBUF_FINAL;
  377. bool MergePartialFromCodedStream(
  378. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  379. void SerializeWithCachedSizes(
  380. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  381. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  382. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  383. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  384. private:
  385. void SharedCtor();
  386. void SharedDtor();
  387. void SetCachedSize(int size) const PROTOBUF_FINAL;
  388. void InternalSwap(Passageway_parameter* other);
  389. private:
  390. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  391. return NULL;
  392. }
  393. inline void* MaybeArenaPtr() const {
  394. return NULL;
  395. }
  396. public:
  397. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  398. // nested types ----------------------------------------------------
  399. // accessors -------------------------------------------------------
  400. // required int32 id = 1;
  401. bool has_id() const;
  402. void clear_id();
  403. static const int kIdFieldNumber = 1;
  404. ::google::protobuf::int32 id() const;
  405. void set_id(::google::protobuf::int32 value);
  406. // @@protoc_insertion_point(class_scope:Dispatch_proto.Passageway_parameter)
  407. private:
  408. void set_has_id();
  409. void clear_has_id();
  410. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  411. ::google::protobuf::internal::HasBits<1> _has_bits_;
  412. mutable int _cached_size_;
  413. ::google::protobuf::int32 id_;
  414. friend struct ::protobuf_dispatch_5fparameter_2eproto::TableStruct;
  415. friend void ::protobuf_dispatch_5fparameter_2eproto::InitDefaultsPassageway_parameterImpl();
  416. };
  417. // -------------------------------------------------------------------
  418. class Laser_parameter_all : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Dispatch_proto.Laser_parameter_all) */ {
  419. public:
  420. Laser_parameter_all();
  421. virtual ~Laser_parameter_all();
  422. Laser_parameter_all(const Laser_parameter_all& from);
  423. inline Laser_parameter_all& operator=(const Laser_parameter_all& from) {
  424. CopyFrom(from);
  425. return *this;
  426. }
  427. #if LANG_CXX11
  428. Laser_parameter_all(Laser_parameter_all&& from) noexcept
  429. : Laser_parameter_all() {
  430. *this = ::std::move(from);
  431. }
  432. inline Laser_parameter_all& operator=(Laser_parameter_all&& from) noexcept {
  433. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  434. if (this != &from) InternalSwap(&from);
  435. } else {
  436. CopyFrom(from);
  437. }
  438. return *this;
  439. }
  440. #endif
  441. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  442. return _internal_metadata_.unknown_fields();
  443. }
  444. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  445. return _internal_metadata_.mutable_unknown_fields();
  446. }
  447. static const ::google::protobuf::Descriptor* descriptor();
  448. static const Laser_parameter_all& default_instance();
  449. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  450. static inline const Laser_parameter_all* internal_default_instance() {
  451. return reinterpret_cast<const Laser_parameter_all*>(
  452. &_Laser_parameter_all_default_instance_);
  453. }
  454. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  455. 3;
  456. void Swap(Laser_parameter_all* other);
  457. friend void swap(Laser_parameter_all& a, Laser_parameter_all& b) {
  458. a.Swap(&b);
  459. }
  460. // implements Message ----------------------------------------------
  461. inline Laser_parameter_all* New() const PROTOBUF_FINAL { return New(NULL); }
  462. Laser_parameter_all* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  463. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  464. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  465. void CopyFrom(const Laser_parameter_all& from);
  466. void MergeFrom(const Laser_parameter_all& from);
  467. void Clear() PROTOBUF_FINAL;
  468. bool IsInitialized() const PROTOBUF_FINAL;
  469. size_t ByteSizeLong() const PROTOBUF_FINAL;
  470. bool MergePartialFromCodedStream(
  471. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  472. void SerializeWithCachedSizes(
  473. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  474. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  475. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  476. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  477. private:
  478. void SharedCtor();
  479. void SharedDtor();
  480. void SetCachedSize(int size) const PROTOBUF_FINAL;
  481. void InternalSwap(Laser_parameter_all* other);
  482. private:
  483. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  484. return NULL;
  485. }
  486. inline void* MaybeArenaPtr() const {
  487. return NULL;
  488. }
  489. public:
  490. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  491. // nested types ----------------------------------------------------
  492. // accessors -------------------------------------------------------
  493. // repeated .Dispatch_proto.Catcher_parameter catcher_parameters = 2;
  494. int catcher_parameters_size() const;
  495. void clear_catcher_parameters();
  496. static const int kCatcherParametersFieldNumber = 2;
  497. const ::Dispatch_proto::Catcher_parameter& catcher_parameters(int index) const;
  498. ::Dispatch_proto::Catcher_parameter* mutable_catcher_parameters(int index);
  499. ::Dispatch_proto::Catcher_parameter* add_catcher_parameters();
  500. ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Catcher_parameter >*
  501. mutable_catcher_parameters();
  502. const ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Catcher_parameter >&
  503. catcher_parameters() const;
  504. // repeated .Dispatch_proto.Carrier_parameter carrier_parameters = 4;
  505. int carrier_parameters_size() const;
  506. void clear_carrier_parameters();
  507. static const int kCarrierParametersFieldNumber = 4;
  508. const ::Dispatch_proto::Carrier_parameter& carrier_parameters(int index) const;
  509. ::Dispatch_proto::Carrier_parameter* mutable_carrier_parameters(int index);
  510. ::Dispatch_proto::Carrier_parameter* add_carrier_parameters();
  511. ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Carrier_parameter >*
  512. mutable_carrier_parameters();
  513. const ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Carrier_parameter >&
  514. carrier_parameters() const;
  515. // repeated .Dispatch_proto.Passageway_parameter passageway_parameters = 6;
  516. int passageway_parameters_size() const;
  517. void clear_passageway_parameters();
  518. static const int kPassagewayParametersFieldNumber = 6;
  519. const ::Dispatch_proto::Passageway_parameter& passageway_parameters(int index) const;
  520. ::Dispatch_proto::Passageway_parameter* mutable_passageway_parameters(int index);
  521. ::Dispatch_proto::Passageway_parameter* add_passageway_parameters();
  522. ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Passageway_parameter >*
  523. mutable_passageway_parameters();
  524. const ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Passageway_parameter >&
  525. passageway_parameters() const;
  526. // required int32 catcher_size = 1;
  527. bool has_catcher_size() const;
  528. void clear_catcher_size();
  529. static const int kCatcherSizeFieldNumber = 1;
  530. ::google::protobuf::int32 catcher_size() const;
  531. void set_catcher_size(::google::protobuf::int32 value);
  532. // required int32 carrier_size = 3;
  533. bool has_carrier_size() const;
  534. void clear_carrier_size();
  535. static const int kCarrierSizeFieldNumber = 3;
  536. ::google::protobuf::int32 carrier_size() const;
  537. void set_carrier_size(::google::protobuf::int32 value);
  538. // required int32 passageway_size = 5;
  539. bool has_passageway_size() const;
  540. void clear_passageway_size();
  541. static const int kPassagewaySizeFieldNumber = 5;
  542. ::google::protobuf::int32 passageway_size() const;
  543. void set_passageway_size(::google::protobuf::int32 value);
  544. // @@protoc_insertion_point(class_scope:Dispatch_proto.Laser_parameter_all)
  545. private:
  546. void set_has_catcher_size();
  547. void clear_has_catcher_size();
  548. void set_has_carrier_size();
  549. void clear_has_carrier_size();
  550. void set_has_passageway_size();
  551. void clear_has_passageway_size();
  552. // helper for ByteSizeLong()
  553. size_t RequiredFieldsByteSizeFallback() const;
  554. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  555. ::google::protobuf::internal::HasBits<1> _has_bits_;
  556. mutable int _cached_size_;
  557. ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Catcher_parameter > catcher_parameters_;
  558. ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Carrier_parameter > carrier_parameters_;
  559. ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Passageway_parameter > passageway_parameters_;
  560. ::google::protobuf::int32 catcher_size_;
  561. ::google::protobuf::int32 carrier_size_;
  562. ::google::protobuf::int32 passageway_size_;
  563. friend struct ::protobuf_dispatch_5fparameter_2eproto::TableStruct;
  564. friend void ::protobuf_dispatch_5fparameter_2eproto::InitDefaultsLaser_parameter_allImpl();
  565. };
  566. // -------------------------------------------------------------------
  567. class Packspace_coordinates_parameter : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Dispatch_proto.Packspace_coordinates_parameter) */ {
  568. public:
  569. Packspace_coordinates_parameter();
  570. virtual ~Packspace_coordinates_parameter();
  571. Packspace_coordinates_parameter(const Packspace_coordinates_parameter& from);
  572. inline Packspace_coordinates_parameter& operator=(const Packspace_coordinates_parameter& from) {
  573. CopyFrom(from);
  574. return *this;
  575. }
  576. #if LANG_CXX11
  577. Packspace_coordinates_parameter(Packspace_coordinates_parameter&& from) noexcept
  578. : Packspace_coordinates_parameter() {
  579. *this = ::std::move(from);
  580. }
  581. inline Packspace_coordinates_parameter& operator=(Packspace_coordinates_parameter&& from) noexcept {
  582. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  583. if (this != &from) InternalSwap(&from);
  584. } else {
  585. CopyFrom(from);
  586. }
  587. return *this;
  588. }
  589. #endif
  590. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  591. return _internal_metadata_.unknown_fields();
  592. }
  593. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  594. return _internal_metadata_.mutable_unknown_fields();
  595. }
  596. static const ::google::protobuf::Descriptor* descriptor();
  597. static const Packspace_coordinates_parameter& default_instance();
  598. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  599. static inline const Packspace_coordinates_parameter* internal_default_instance() {
  600. return reinterpret_cast<const Packspace_coordinates_parameter*>(
  601. &_Packspace_coordinates_parameter_default_instance_);
  602. }
  603. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  604. 4;
  605. void Swap(Packspace_coordinates_parameter* other);
  606. friend void swap(Packspace_coordinates_parameter& a, Packspace_coordinates_parameter& b) {
  607. a.Swap(&b);
  608. }
  609. // implements Message ----------------------------------------------
  610. inline Packspace_coordinates_parameter* New() const PROTOBUF_FINAL { return New(NULL); }
  611. Packspace_coordinates_parameter* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  612. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  613. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  614. void CopyFrom(const Packspace_coordinates_parameter& from);
  615. void MergeFrom(const Packspace_coordinates_parameter& from);
  616. void Clear() PROTOBUF_FINAL;
  617. bool IsInitialized() const PROTOBUF_FINAL;
  618. size_t ByteSizeLong() const PROTOBUF_FINAL;
  619. bool MergePartialFromCodedStream(
  620. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  621. void SerializeWithCachedSizes(
  622. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  623. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  624. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  625. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  626. private:
  627. void SharedCtor();
  628. void SharedDtor();
  629. void SetCachedSize(int size) const PROTOBUF_FINAL;
  630. void InternalSwap(Packspace_coordinates_parameter* other);
  631. private:
  632. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  633. return NULL;
  634. }
  635. inline void* MaybeArenaPtr() const {
  636. return NULL;
  637. }
  638. public:
  639. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  640. // nested types ----------------------------------------------------
  641. // accessors -------------------------------------------------------
  642. // optional int32 id = 1 [default = 0];
  643. bool has_id() const;
  644. void clear_id();
  645. static const int kIdFieldNumber = 1;
  646. ::google::protobuf::int32 id() const;
  647. void set_id(::google::protobuf::int32 value);
  648. // optional int32 x = 2 [default = 0];
  649. bool has_x() const;
  650. void clear_x();
  651. static const int kXFieldNumber = 2;
  652. ::google::protobuf::int32 x() const;
  653. void set_x(::google::protobuf::int32 value);
  654. // optional int32 y = 3 [default = 0];
  655. bool has_y() const;
  656. void clear_y();
  657. static const int kYFieldNumber = 3;
  658. ::google::protobuf::int32 y() const;
  659. void set_y(::google::protobuf::int32 value);
  660. // optional int32 z = 4 [default = 0];
  661. bool has_z() const;
  662. void clear_z();
  663. static const int kZFieldNumber = 4;
  664. ::google::protobuf::int32 z() const;
  665. void set_z(::google::protobuf::int32 value);
  666. // @@protoc_insertion_point(class_scope:Dispatch_proto.Packspace_coordinates_parameter)
  667. private:
  668. void set_has_id();
  669. void clear_has_id();
  670. void set_has_x();
  671. void clear_has_x();
  672. void set_has_y();
  673. void clear_has_y();
  674. void set_has_z();
  675. void clear_has_z();
  676. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  677. ::google::protobuf::internal::HasBits<1> _has_bits_;
  678. mutable int _cached_size_;
  679. ::google::protobuf::int32 id_;
  680. ::google::protobuf::int32 x_;
  681. ::google::protobuf::int32 y_;
  682. ::google::protobuf::int32 z_;
  683. friend struct ::protobuf_dispatch_5fparameter_2eproto::TableStruct;
  684. friend void ::protobuf_dispatch_5fparameter_2eproto::InitDefaultsPackspace_coordinates_parameterImpl();
  685. };
  686. // -------------------------------------------------------------------
  687. class Passageway_coordinates_parameter : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Dispatch_proto.Passageway_coordinates_parameter) */ {
  688. public:
  689. Passageway_coordinates_parameter();
  690. virtual ~Passageway_coordinates_parameter();
  691. Passageway_coordinates_parameter(const Passageway_coordinates_parameter& from);
  692. inline Passageway_coordinates_parameter& operator=(const Passageway_coordinates_parameter& from) {
  693. CopyFrom(from);
  694. return *this;
  695. }
  696. #if LANG_CXX11
  697. Passageway_coordinates_parameter(Passageway_coordinates_parameter&& from) noexcept
  698. : Passageway_coordinates_parameter() {
  699. *this = ::std::move(from);
  700. }
  701. inline Passageway_coordinates_parameter& operator=(Passageway_coordinates_parameter&& from) noexcept {
  702. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  703. if (this != &from) InternalSwap(&from);
  704. } else {
  705. CopyFrom(from);
  706. }
  707. return *this;
  708. }
  709. #endif
  710. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  711. return _internal_metadata_.unknown_fields();
  712. }
  713. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  714. return _internal_metadata_.mutable_unknown_fields();
  715. }
  716. static const ::google::protobuf::Descriptor* descriptor();
  717. static const Passageway_coordinates_parameter& default_instance();
  718. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  719. static inline const Passageway_coordinates_parameter* internal_default_instance() {
  720. return reinterpret_cast<const Passageway_coordinates_parameter*>(
  721. &_Passageway_coordinates_parameter_default_instance_);
  722. }
  723. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  724. 5;
  725. void Swap(Passageway_coordinates_parameter* other);
  726. friend void swap(Passageway_coordinates_parameter& a, Passageway_coordinates_parameter& b) {
  727. a.Swap(&b);
  728. }
  729. // implements Message ----------------------------------------------
  730. inline Passageway_coordinates_parameter* New() const PROTOBUF_FINAL { return New(NULL); }
  731. Passageway_coordinates_parameter* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  732. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  733. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  734. void CopyFrom(const Passageway_coordinates_parameter& from);
  735. void MergeFrom(const Passageway_coordinates_parameter& from);
  736. void Clear() PROTOBUF_FINAL;
  737. bool IsInitialized() const PROTOBUF_FINAL;
  738. size_t ByteSizeLong() const PROTOBUF_FINAL;
  739. bool MergePartialFromCodedStream(
  740. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  741. void SerializeWithCachedSizes(
  742. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  743. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  744. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  745. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  746. private:
  747. void SharedCtor();
  748. void SharedDtor();
  749. void SetCachedSize(int size) const PROTOBUF_FINAL;
  750. void InternalSwap(Passageway_coordinates_parameter* other);
  751. private:
  752. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  753. return NULL;
  754. }
  755. inline void* MaybeArenaPtr() const {
  756. return NULL;
  757. }
  758. public:
  759. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  760. // nested types ----------------------------------------------------
  761. // accessors -------------------------------------------------------
  762. // optional int32 id = 1 [default = 0];
  763. bool has_id() const;
  764. void clear_id();
  765. static const int kIdFieldNumber = 1;
  766. ::google::protobuf::int32 id() const;
  767. void set_id(::google::protobuf::int32 value);
  768. // optional int32 x = 2 [default = 0];
  769. bool has_x() const;
  770. void clear_x();
  771. static const int kXFieldNumber = 2;
  772. ::google::protobuf::int32 x() const;
  773. void set_x(::google::protobuf::int32 value);
  774. // optional int32 y = 3 [default = 0];
  775. bool has_y() const;
  776. void clear_y();
  777. static const int kYFieldNumber = 3;
  778. ::google::protobuf::int32 y() const;
  779. void set_y(::google::protobuf::int32 value);
  780. // optional int32 z = 4 [default = 0];
  781. bool has_z() const;
  782. void clear_z();
  783. static const int kZFieldNumber = 4;
  784. ::google::protobuf::int32 z() const;
  785. void set_z(::google::protobuf::int32 value);
  786. // @@protoc_insertion_point(class_scope:Dispatch_proto.Passageway_coordinates_parameter)
  787. private:
  788. void set_has_id();
  789. void clear_has_id();
  790. void set_has_x();
  791. void clear_has_x();
  792. void set_has_y();
  793. void clear_has_y();
  794. void set_has_z();
  795. void clear_has_z();
  796. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  797. ::google::protobuf::internal::HasBits<1> _has_bits_;
  798. mutable int _cached_size_;
  799. ::google::protobuf::int32 id_;
  800. ::google::protobuf::int32 x_;
  801. ::google::protobuf::int32 y_;
  802. ::google::protobuf::int32 z_;
  803. friend struct ::protobuf_dispatch_5fparameter_2eproto::TableStruct;
  804. friend void ::protobuf_dispatch_5fparameter_2eproto::InitDefaultsPassageway_coordinates_parameterImpl();
  805. };
  806. // -------------------------------------------------------------------
  807. class Carrier_coordinates_parameter : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Dispatch_proto.Carrier_coordinates_parameter) */ {
  808. public:
  809. Carrier_coordinates_parameter();
  810. virtual ~Carrier_coordinates_parameter();
  811. Carrier_coordinates_parameter(const Carrier_coordinates_parameter& from);
  812. inline Carrier_coordinates_parameter& operator=(const Carrier_coordinates_parameter& from) {
  813. CopyFrom(from);
  814. return *this;
  815. }
  816. #if LANG_CXX11
  817. Carrier_coordinates_parameter(Carrier_coordinates_parameter&& from) noexcept
  818. : Carrier_coordinates_parameter() {
  819. *this = ::std::move(from);
  820. }
  821. inline Carrier_coordinates_parameter& operator=(Carrier_coordinates_parameter&& from) noexcept {
  822. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  823. if (this != &from) InternalSwap(&from);
  824. } else {
  825. CopyFrom(from);
  826. }
  827. return *this;
  828. }
  829. #endif
  830. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  831. return _internal_metadata_.unknown_fields();
  832. }
  833. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  834. return _internal_metadata_.mutable_unknown_fields();
  835. }
  836. static const ::google::protobuf::Descriptor* descriptor();
  837. static const Carrier_coordinates_parameter& default_instance();
  838. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  839. static inline const Carrier_coordinates_parameter* internal_default_instance() {
  840. return reinterpret_cast<const Carrier_coordinates_parameter*>(
  841. &_Carrier_coordinates_parameter_default_instance_);
  842. }
  843. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  844. 6;
  845. void Swap(Carrier_coordinates_parameter* other);
  846. friend void swap(Carrier_coordinates_parameter& a, Carrier_coordinates_parameter& b) {
  847. a.Swap(&b);
  848. }
  849. // implements Message ----------------------------------------------
  850. inline Carrier_coordinates_parameter* New() const PROTOBUF_FINAL { return New(NULL); }
  851. Carrier_coordinates_parameter* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  852. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  853. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  854. void CopyFrom(const Carrier_coordinates_parameter& from);
  855. void MergeFrom(const Carrier_coordinates_parameter& from);
  856. void Clear() PROTOBUF_FINAL;
  857. bool IsInitialized() const PROTOBUF_FINAL;
  858. size_t ByteSizeLong() const PROTOBUF_FINAL;
  859. bool MergePartialFromCodedStream(
  860. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  861. void SerializeWithCachedSizes(
  862. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  863. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  864. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  865. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  866. private:
  867. void SharedCtor();
  868. void SharedDtor();
  869. void SetCachedSize(int size) const PROTOBUF_FINAL;
  870. void InternalSwap(Carrier_coordinates_parameter* other);
  871. private:
  872. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  873. return NULL;
  874. }
  875. inline void* MaybeArenaPtr() const {
  876. return NULL;
  877. }
  878. public:
  879. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  880. // nested types ----------------------------------------------------
  881. // accessors -------------------------------------------------------
  882. // optional int32 id = 1 [default = 0];
  883. bool has_id() const;
  884. void clear_id();
  885. static const int kIdFieldNumber = 1;
  886. ::google::protobuf::int32 id() const;
  887. void set_id(::google::protobuf::int32 value);
  888. // optional int32 x = 2 [default = 0];
  889. bool has_x() const;
  890. void clear_x();
  891. static const int kXFieldNumber = 2;
  892. ::google::protobuf::int32 x() const;
  893. void set_x(::google::protobuf::int32 value);
  894. // optional int32 y = 3 [default = 0];
  895. bool has_y() const;
  896. void clear_y();
  897. static const int kYFieldNumber = 3;
  898. ::google::protobuf::int32 y() const;
  899. void set_y(::google::protobuf::int32 value);
  900. // optional int32 z = 4 [default = 0];
  901. bool has_z() const;
  902. void clear_z();
  903. static const int kZFieldNumber = 4;
  904. ::google::protobuf::int32 z() const;
  905. void set_z(::google::protobuf::int32 value);
  906. // @@protoc_insertion_point(class_scope:Dispatch_proto.Carrier_coordinates_parameter)
  907. private:
  908. void set_has_id();
  909. void clear_has_id();
  910. void set_has_x();
  911. void clear_has_x();
  912. void set_has_y();
  913. void clear_has_y();
  914. void set_has_z();
  915. void clear_has_z();
  916. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  917. ::google::protobuf::internal::HasBits<1> _has_bits_;
  918. mutable int _cached_size_;
  919. ::google::protobuf::int32 id_;
  920. ::google::protobuf::int32 x_;
  921. ::google::protobuf::int32 y_;
  922. ::google::protobuf::int32 z_;
  923. friend struct ::protobuf_dispatch_5fparameter_2eproto::TableStruct;
  924. friend void ::protobuf_dispatch_5fparameter_2eproto::InitDefaultsCarrier_coordinates_parameterImpl();
  925. };
  926. // -------------------------------------------------------------------
  927. class Catcher_coordinates_parameter : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Dispatch_proto.Catcher_coordinates_parameter) */ {
  928. public:
  929. Catcher_coordinates_parameter();
  930. virtual ~Catcher_coordinates_parameter();
  931. Catcher_coordinates_parameter(const Catcher_coordinates_parameter& from);
  932. inline Catcher_coordinates_parameter& operator=(const Catcher_coordinates_parameter& from) {
  933. CopyFrom(from);
  934. return *this;
  935. }
  936. #if LANG_CXX11
  937. Catcher_coordinates_parameter(Catcher_coordinates_parameter&& from) noexcept
  938. : Catcher_coordinates_parameter() {
  939. *this = ::std::move(from);
  940. }
  941. inline Catcher_coordinates_parameter& operator=(Catcher_coordinates_parameter&& from) noexcept {
  942. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  943. if (this != &from) InternalSwap(&from);
  944. } else {
  945. CopyFrom(from);
  946. }
  947. return *this;
  948. }
  949. #endif
  950. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  951. return _internal_metadata_.unknown_fields();
  952. }
  953. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  954. return _internal_metadata_.mutable_unknown_fields();
  955. }
  956. static const ::google::protobuf::Descriptor* descriptor();
  957. static const Catcher_coordinates_parameter& default_instance();
  958. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  959. static inline const Catcher_coordinates_parameter* internal_default_instance() {
  960. return reinterpret_cast<const Catcher_coordinates_parameter*>(
  961. &_Catcher_coordinates_parameter_default_instance_);
  962. }
  963. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  964. 7;
  965. void Swap(Catcher_coordinates_parameter* other);
  966. friend void swap(Catcher_coordinates_parameter& a, Catcher_coordinates_parameter& b) {
  967. a.Swap(&b);
  968. }
  969. // implements Message ----------------------------------------------
  970. inline Catcher_coordinates_parameter* New() const PROTOBUF_FINAL { return New(NULL); }
  971. Catcher_coordinates_parameter* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  972. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  973. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  974. void CopyFrom(const Catcher_coordinates_parameter& from);
  975. void MergeFrom(const Catcher_coordinates_parameter& from);
  976. void Clear() PROTOBUF_FINAL;
  977. bool IsInitialized() const PROTOBUF_FINAL;
  978. size_t ByteSizeLong() const PROTOBUF_FINAL;
  979. bool MergePartialFromCodedStream(
  980. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  981. void SerializeWithCachedSizes(
  982. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  983. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  984. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  985. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  986. private:
  987. void SharedCtor();
  988. void SharedDtor();
  989. void SetCachedSize(int size) const PROTOBUF_FINAL;
  990. void InternalSwap(Catcher_coordinates_parameter* other);
  991. private:
  992. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  993. return NULL;
  994. }
  995. inline void* MaybeArenaPtr() const {
  996. return NULL;
  997. }
  998. public:
  999. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  1000. // nested types ----------------------------------------------------
  1001. // accessors -------------------------------------------------------
  1002. // optional int32 id = 1 [default = 0];
  1003. bool has_id() const;
  1004. void clear_id();
  1005. static const int kIdFieldNumber = 1;
  1006. ::google::protobuf::int32 id() const;
  1007. void set_id(::google::protobuf::int32 value);
  1008. // optional int32 x = 2 [default = 0];
  1009. bool has_x() const;
  1010. void clear_x();
  1011. static const int kXFieldNumber = 2;
  1012. ::google::protobuf::int32 x() const;
  1013. void set_x(::google::protobuf::int32 value);
  1014. // optional int32 y = 3 [default = 0];
  1015. bool has_y() const;
  1016. void clear_y();
  1017. static const int kYFieldNumber = 3;
  1018. ::google::protobuf::int32 y() const;
  1019. void set_y(::google::protobuf::int32 value);
  1020. // optional int32 z = 4 [default = 0];
  1021. bool has_z() const;
  1022. void clear_z();
  1023. static const int kZFieldNumber = 4;
  1024. ::google::protobuf::int32 z() const;
  1025. void set_z(::google::protobuf::int32 value);
  1026. // @@protoc_insertion_point(class_scope:Dispatch_proto.Catcher_coordinates_parameter)
  1027. private:
  1028. void set_has_id();
  1029. void clear_has_id();
  1030. void set_has_x();
  1031. void clear_has_x();
  1032. void set_has_y();
  1033. void clear_has_y();
  1034. void set_has_z();
  1035. void clear_has_z();
  1036. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  1037. ::google::protobuf::internal::HasBits<1> _has_bits_;
  1038. mutable int _cached_size_;
  1039. ::google::protobuf::int32 id_;
  1040. ::google::protobuf::int32 x_;
  1041. ::google::protobuf::int32 y_;
  1042. ::google::protobuf::int32 z_;
  1043. friend struct ::protobuf_dispatch_5fparameter_2eproto::TableStruct;
  1044. friend void ::protobuf_dispatch_5fparameter_2eproto::InitDefaultsCatcher_coordinates_parameterImpl();
  1045. };
  1046. // -------------------------------------------------------------------
  1047. class Carrier_box_parameter : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Dispatch_proto.Carrier_box_parameter) */ {
  1048. public:
  1049. Carrier_box_parameter();
  1050. virtual ~Carrier_box_parameter();
  1051. Carrier_box_parameter(const Carrier_box_parameter& from);
  1052. inline Carrier_box_parameter& operator=(const Carrier_box_parameter& from) {
  1053. CopyFrom(from);
  1054. return *this;
  1055. }
  1056. #if LANG_CXX11
  1057. Carrier_box_parameter(Carrier_box_parameter&& from) noexcept
  1058. : Carrier_box_parameter() {
  1059. *this = ::std::move(from);
  1060. }
  1061. inline Carrier_box_parameter& operator=(Carrier_box_parameter&& from) noexcept {
  1062. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  1063. if (this != &from) InternalSwap(&from);
  1064. } else {
  1065. CopyFrom(from);
  1066. }
  1067. return *this;
  1068. }
  1069. #endif
  1070. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  1071. return _internal_metadata_.unknown_fields();
  1072. }
  1073. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  1074. return _internal_metadata_.mutable_unknown_fields();
  1075. }
  1076. static const ::google::protobuf::Descriptor* descriptor();
  1077. static const Carrier_box_parameter& default_instance();
  1078. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  1079. static inline const Carrier_box_parameter* internal_default_instance() {
  1080. return reinterpret_cast<const Carrier_box_parameter*>(
  1081. &_Carrier_box_parameter_default_instance_);
  1082. }
  1083. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  1084. 8;
  1085. void Swap(Carrier_box_parameter* other);
  1086. friend void swap(Carrier_box_parameter& a, Carrier_box_parameter& b) {
  1087. a.Swap(&b);
  1088. }
  1089. // implements Message ----------------------------------------------
  1090. inline Carrier_box_parameter* New() const PROTOBUF_FINAL { return New(NULL); }
  1091. Carrier_box_parameter* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  1092. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  1093. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  1094. void CopyFrom(const Carrier_box_parameter& from);
  1095. void MergeFrom(const Carrier_box_parameter& from);
  1096. void Clear() PROTOBUF_FINAL;
  1097. bool IsInitialized() const PROTOBUF_FINAL;
  1098. size_t ByteSizeLong() const PROTOBUF_FINAL;
  1099. bool MergePartialFromCodedStream(
  1100. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  1101. void SerializeWithCachedSizes(
  1102. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  1103. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  1104. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  1105. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  1106. private:
  1107. void SharedCtor();
  1108. void SharedDtor();
  1109. void SetCachedSize(int size) const PROTOBUF_FINAL;
  1110. void InternalSwap(Carrier_box_parameter* other);
  1111. private:
  1112. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  1113. return NULL;
  1114. }
  1115. inline void* MaybeArenaPtr() const {
  1116. return NULL;
  1117. }
  1118. public:
  1119. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  1120. // nested types ----------------------------------------------------
  1121. // accessors -------------------------------------------------------
  1122. // optional int32 x_min = 1 [default = -1000000];
  1123. bool has_x_min() const;
  1124. void clear_x_min();
  1125. static const int kXMinFieldNumber = 1;
  1126. ::google::protobuf::int32 x_min() const;
  1127. void set_x_min(::google::protobuf::int32 value);
  1128. // optional int32 x_max = 2 [default = 1000000];
  1129. bool has_x_max() const;
  1130. void clear_x_max();
  1131. static const int kXMaxFieldNumber = 2;
  1132. ::google::protobuf::int32 x_max() const;
  1133. void set_x_max(::google::protobuf::int32 value);
  1134. // optional int32 y_min = 3 [default = -1000000];
  1135. bool has_y_min() const;
  1136. void clear_y_min();
  1137. static const int kYMinFieldNumber = 3;
  1138. ::google::protobuf::int32 y_min() const;
  1139. void set_y_min(::google::protobuf::int32 value);
  1140. // optional int32 y_max = 4 [default = 1000000];
  1141. bool has_y_max() const;
  1142. void clear_y_max();
  1143. static const int kYMaxFieldNumber = 4;
  1144. ::google::protobuf::int32 y_max() const;
  1145. void set_y_max(::google::protobuf::int32 value);
  1146. // optional int32 z_min = 5 [default = -1000000];
  1147. bool has_z_min() const;
  1148. void clear_z_min();
  1149. static const int kZMinFieldNumber = 5;
  1150. ::google::protobuf::int32 z_min() const;
  1151. void set_z_min(::google::protobuf::int32 value);
  1152. // optional int32 z_max = 6 [default = 1000000];
  1153. bool has_z_max() const;
  1154. void clear_z_max();
  1155. static const int kZMaxFieldNumber = 6;
  1156. ::google::protobuf::int32 z_max() const;
  1157. void set_z_max(::google::protobuf::int32 value);
  1158. // @@protoc_insertion_point(class_scope:Dispatch_proto.Carrier_box_parameter)
  1159. private:
  1160. void set_has_x_min();
  1161. void clear_has_x_min();
  1162. void set_has_x_max();
  1163. void clear_has_x_max();
  1164. void set_has_y_min();
  1165. void clear_has_y_min();
  1166. void set_has_y_max();
  1167. void clear_has_y_max();
  1168. void set_has_z_min();
  1169. void clear_has_z_min();
  1170. void set_has_z_max();
  1171. void clear_has_z_max();
  1172. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  1173. ::google::protobuf::internal::HasBits<1> _has_bits_;
  1174. mutable int _cached_size_;
  1175. ::google::protobuf::int32 x_min_;
  1176. ::google::protobuf::int32 x_max_;
  1177. ::google::protobuf::int32 y_min_;
  1178. ::google::protobuf::int32 y_max_;
  1179. ::google::protobuf::int32 z_min_;
  1180. ::google::protobuf::int32 z_max_;
  1181. friend struct ::protobuf_dispatch_5fparameter_2eproto::TableStruct;
  1182. friend void ::protobuf_dispatch_5fparameter_2eproto::InitDefaultsCarrier_box_parameterImpl();
  1183. };
  1184. // -------------------------------------------------------------------
  1185. class Catcher_box_parameter : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Dispatch_proto.Catcher_box_parameter) */ {
  1186. public:
  1187. Catcher_box_parameter();
  1188. virtual ~Catcher_box_parameter();
  1189. Catcher_box_parameter(const Catcher_box_parameter& from);
  1190. inline Catcher_box_parameter& operator=(const Catcher_box_parameter& from) {
  1191. CopyFrom(from);
  1192. return *this;
  1193. }
  1194. #if LANG_CXX11
  1195. Catcher_box_parameter(Catcher_box_parameter&& from) noexcept
  1196. : Catcher_box_parameter() {
  1197. *this = ::std::move(from);
  1198. }
  1199. inline Catcher_box_parameter& operator=(Catcher_box_parameter&& from) noexcept {
  1200. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  1201. if (this != &from) InternalSwap(&from);
  1202. } else {
  1203. CopyFrom(from);
  1204. }
  1205. return *this;
  1206. }
  1207. #endif
  1208. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  1209. return _internal_metadata_.unknown_fields();
  1210. }
  1211. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  1212. return _internal_metadata_.mutable_unknown_fields();
  1213. }
  1214. static const ::google::protobuf::Descriptor* descriptor();
  1215. static const Catcher_box_parameter& default_instance();
  1216. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  1217. static inline const Catcher_box_parameter* internal_default_instance() {
  1218. return reinterpret_cast<const Catcher_box_parameter*>(
  1219. &_Catcher_box_parameter_default_instance_);
  1220. }
  1221. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  1222. 9;
  1223. void Swap(Catcher_box_parameter* other);
  1224. friend void swap(Catcher_box_parameter& a, Catcher_box_parameter& b) {
  1225. a.Swap(&b);
  1226. }
  1227. // implements Message ----------------------------------------------
  1228. inline Catcher_box_parameter* New() const PROTOBUF_FINAL { return New(NULL); }
  1229. Catcher_box_parameter* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  1230. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  1231. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  1232. void CopyFrom(const Catcher_box_parameter& from);
  1233. void MergeFrom(const Catcher_box_parameter& from);
  1234. void Clear() PROTOBUF_FINAL;
  1235. bool IsInitialized() const PROTOBUF_FINAL;
  1236. size_t ByteSizeLong() const PROTOBUF_FINAL;
  1237. bool MergePartialFromCodedStream(
  1238. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  1239. void SerializeWithCachedSizes(
  1240. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  1241. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  1242. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  1243. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  1244. private:
  1245. void SharedCtor();
  1246. void SharedDtor();
  1247. void SetCachedSize(int size) const PROTOBUF_FINAL;
  1248. void InternalSwap(Catcher_box_parameter* other);
  1249. private:
  1250. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  1251. return NULL;
  1252. }
  1253. inline void* MaybeArenaPtr() const {
  1254. return NULL;
  1255. }
  1256. public:
  1257. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  1258. // nested types ----------------------------------------------------
  1259. // accessors -------------------------------------------------------
  1260. // optional int32 x_min = 1 [default = -1000000];
  1261. bool has_x_min() const;
  1262. void clear_x_min();
  1263. static const int kXMinFieldNumber = 1;
  1264. ::google::protobuf::int32 x_min() const;
  1265. void set_x_min(::google::protobuf::int32 value);
  1266. // optional int32 x_max = 2 [default = 1000000];
  1267. bool has_x_max() const;
  1268. void clear_x_max();
  1269. static const int kXMaxFieldNumber = 2;
  1270. ::google::protobuf::int32 x_max() const;
  1271. void set_x_max(::google::protobuf::int32 value);
  1272. // optional int32 y_min = 3 [default = -1000000];
  1273. bool has_y_min() const;
  1274. void clear_y_min();
  1275. static const int kYMinFieldNumber = 3;
  1276. ::google::protobuf::int32 y_min() const;
  1277. void set_y_min(::google::protobuf::int32 value);
  1278. // optional int32 y_max = 4 [default = 1000000];
  1279. bool has_y_max() const;
  1280. void clear_y_max();
  1281. static const int kYMaxFieldNumber = 4;
  1282. ::google::protobuf::int32 y_max() const;
  1283. void set_y_max(::google::protobuf::int32 value);
  1284. // optional int32 z_min = 5 [default = -1000000];
  1285. bool has_z_min() const;
  1286. void clear_z_min();
  1287. static const int kZMinFieldNumber = 5;
  1288. ::google::protobuf::int32 z_min() const;
  1289. void set_z_min(::google::protobuf::int32 value);
  1290. // optional int32 z_max = 6 [default = 1000000];
  1291. bool has_z_max() const;
  1292. void clear_z_max();
  1293. static const int kZMaxFieldNumber = 6;
  1294. ::google::protobuf::int32 z_max() const;
  1295. void set_z_max(::google::protobuf::int32 value);
  1296. // @@protoc_insertion_point(class_scope:Dispatch_proto.Catcher_box_parameter)
  1297. private:
  1298. void set_has_x_min();
  1299. void clear_has_x_min();
  1300. void set_has_x_max();
  1301. void clear_has_x_max();
  1302. void set_has_y_min();
  1303. void clear_has_y_min();
  1304. void set_has_y_max();
  1305. void clear_has_y_max();
  1306. void set_has_z_min();
  1307. void clear_has_z_min();
  1308. void set_has_z_max();
  1309. void clear_has_z_max();
  1310. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  1311. ::google::protobuf::internal::HasBits<1> _has_bits_;
  1312. mutable int _cached_size_;
  1313. ::google::protobuf::int32 x_min_;
  1314. ::google::protobuf::int32 x_max_;
  1315. ::google::protobuf::int32 y_min_;
  1316. ::google::protobuf::int32 y_max_;
  1317. ::google::protobuf::int32 z_min_;
  1318. ::google::protobuf::int32 z_max_;
  1319. friend struct ::protobuf_dispatch_5fparameter_2eproto::TableStruct;
  1320. friend void ::protobuf_dispatch_5fparameter_2eproto::InitDefaultsCatcher_box_parameterImpl();
  1321. };
  1322. // -------------------------------------------------------------------
  1323. class Axis_range_parameter : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Dispatch_proto.Axis_range_parameter) */ {
  1324. public:
  1325. Axis_range_parameter();
  1326. virtual ~Axis_range_parameter();
  1327. Axis_range_parameter(const Axis_range_parameter& from);
  1328. inline Axis_range_parameter& operator=(const Axis_range_parameter& from) {
  1329. CopyFrom(from);
  1330. return *this;
  1331. }
  1332. #if LANG_CXX11
  1333. Axis_range_parameter(Axis_range_parameter&& from) noexcept
  1334. : Axis_range_parameter() {
  1335. *this = ::std::move(from);
  1336. }
  1337. inline Axis_range_parameter& operator=(Axis_range_parameter&& from) noexcept {
  1338. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  1339. if (this != &from) InternalSwap(&from);
  1340. } else {
  1341. CopyFrom(from);
  1342. }
  1343. return *this;
  1344. }
  1345. #endif
  1346. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  1347. return _internal_metadata_.unknown_fields();
  1348. }
  1349. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  1350. return _internal_metadata_.mutable_unknown_fields();
  1351. }
  1352. static const ::google::protobuf::Descriptor* descriptor();
  1353. static const Axis_range_parameter& default_instance();
  1354. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  1355. static inline const Axis_range_parameter* internal_default_instance() {
  1356. return reinterpret_cast<const Axis_range_parameter*>(
  1357. &_Axis_range_parameter_default_instance_);
  1358. }
  1359. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  1360. 10;
  1361. void Swap(Axis_range_parameter* other);
  1362. friend void swap(Axis_range_parameter& a, Axis_range_parameter& b) {
  1363. a.Swap(&b);
  1364. }
  1365. // implements Message ----------------------------------------------
  1366. inline Axis_range_parameter* New() const PROTOBUF_FINAL { return New(NULL); }
  1367. Axis_range_parameter* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  1368. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  1369. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  1370. void CopyFrom(const Axis_range_parameter& from);
  1371. void MergeFrom(const Axis_range_parameter& from);
  1372. void Clear() PROTOBUF_FINAL;
  1373. bool IsInitialized() const PROTOBUF_FINAL;
  1374. size_t ByteSizeLong() const PROTOBUF_FINAL;
  1375. bool MergePartialFromCodedStream(
  1376. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  1377. void SerializeWithCachedSizes(
  1378. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  1379. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  1380. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  1381. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  1382. private:
  1383. void SharedCtor();
  1384. void SharedDtor();
  1385. void SetCachedSize(int size) const PROTOBUF_FINAL;
  1386. void InternalSwap(Axis_range_parameter* other);
  1387. private:
  1388. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  1389. return NULL;
  1390. }
  1391. inline void* MaybeArenaPtr() const {
  1392. return NULL;
  1393. }
  1394. public:
  1395. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  1396. // nested types ----------------------------------------------------
  1397. // accessors -------------------------------------------------------
  1398. // optional int32 min = 1 [default = -1000000];
  1399. bool has_min() const;
  1400. void clear_min();
  1401. static const int kMinFieldNumber = 1;
  1402. ::google::protobuf::int32 min() const;
  1403. void set_min(::google::protobuf::int32 value);
  1404. // optional int32 max = 2 [default = 1000000];
  1405. bool has_max() const;
  1406. void clear_max();
  1407. static const int kMaxFieldNumber = 2;
  1408. ::google::protobuf::int32 max() const;
  1409. void set_max(::google::protobuf::int32 value);
  1410. // @@protoc_insertion_point(class_scope:Dispatch_proto.Axis_range_parameter)
  1411. private:
  1412. void set_has_min();
  1413. void clear_has_min();
  1414. void set_has_max();
  1415. void clear_has_max();
  1416. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  1417. ::google::protobuf::internal::HasBits<1> _has_bits_;
  1418. mutable int _cached_size_;
  1419. ::google::protobuf::int32 min_;
  1420. ::google::protobuf::int32 max_;
  1421. friend struct ::protobuf_dispatch_5fparameter_2eproto::TableStruct;
  1422. friend void ::protobuf_dispatch_5fparameter_2eproto::InitDefaultsAxis_range_parameterImpl();
  1423. };
  1424. // -------------------------------------------------------------------
  1425. class Dispatch_coordinates_parameter_all : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Dispatch_proto.Dispatch_coordinates_parameter_all) */ {
  1426. public:
  1427. Dispatch_coordinates_parameter_all();
  1428. virtual ~Dispatch_coordinates_parameter_all();
  1429. Dispatch_coordinates_parameter_all(const Dispatch_coordinates_parameter_all& from);
  1430. inline Dispatch_coordinates_parameter_all& operator=(const Dispatch_coordinates_parameter_all& from) {
  1431. CopyFrom(from);
  1432. return *this;
  1433. }
  1434. #if LANG_CXX11
  1435. Dispatch_coordinates_parameter_all(Dispatch_coordinates_parameter_all&& from) noexcept
  1436. : Dispatch_coordinates_parameter_all() {
  1437. *this = ::std::move(from);
  1438. }
  1439. inline Dispatch_coordinates_parameter_all& operator=(Dispatch_coordinates_parameter_all&& from) noexcept {
  1440. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  1441. if (this != &from) InternalSwap(&from);
  1442. } else {
  1443. CopyFrom(from);
  1444. }
  1445. return *this;
  1446. }
  1447. #endif
  1448. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  1449. return _internal_metadata_.unknown_fields();
  1450. }
  1451. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  1452. return _internal_metadata_.mutable_unknown_fields();
  1453. }
  1454. static const ::google::protobuf::Descriptor* descriptor();
  1455. static const Dispatch_coordinates_parameter_all& default_instance();
  1456. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  1457. static inline const Dispatch_coordinates_parameter_all* internal_default_instance() {
  1458. return reinterpret_cast<const Dispatch_coordinates_parameter_all*>(
  1459. &_Dispatch_coordinates_parameter_all_default_instance_);
  1460. }
  1461. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  1462. 11;
  1463. void Swap(Dispatch_coordinates_parameter_all* other);
  1464. friend void swap(Dispatch_coordinates_parameter_all& a, Dispatch_coordinates_parameter_all& b) {
  1465. a.Swap(&b);
  1466. }
  1467. // implements Message ----------------------------------------------
  1468. inline Dispatch_coordinates_parameter_all* New() const PROTOBUF_FINAL { return New(NULL); }
  1469. Dispatch_coordinates_parameter_all* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  1470. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  1471. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  1472. void CopyFrom(const Dispatch_coordinates_parameter_all& from);
  1473. void MergeFrom(const Dispatch_coordinates_parameter_all& from);
  1474. void Clear() PROTOBUF_FINAL;
  1475. bool IsInitialized() const PROTOBUF_FINAL;
  1476. size_t ByteSizeLong() const PROTOBUF_FINAL;
  1477. bool MergePartialFromCodedStream(
  1478. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  1479. void SerializeWithCachedSizes(
  1480. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  1481. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  1482. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  1483. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  1484. private:
  1485. void SharedCtor();
  1486. void SharedDtor();
  1487. void SetCachedSize(int size) const PROTOBUF_FINAL;
  1488. void InternalSwap(Dispatch_coordinates_parameter_all* other);
  1489. private:
  1490. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  1491. return NULL;
  1492. }
  1493. inline void* MaybeArenaPtr() const {
  1494. return NULL;
  1495. }
  1496. public:
  1497. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  1498. // nested types ----------------------------------------------------
  1499. // accessors -------------------------------------------------------
  1500. // repeated .Dispatch_proto.Packspace_coordinates_parameter packspace_coordinates_parameters = 1;
  1501. int packspace_coordinates_parameters_size() const;
  1502. void clear_packspace_coordinates_parameters();
  1503. static const int kPackspaceCoordinatesParametersFieldNumber = 1;
  1504. const ::Dispatch_proto::Packspace_coordinates_parameter& packspace_coordinates_parameters(int index) const;
  1505. ::Dispatch_proto::Packspace_coordinates_parameter* mutable_packspace_coordinates_parameters(int index);
  1506. ::Dispatch_proto::Packspace_coordinates_parameter* add_packspace_coordinates_parameters();
  1507. ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Packspace_coordinates_parameter >*
  1508. mutable_packspace_coordinates_parameters();
  1509. const ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Packspace_coordinates_parameter >&
  1510. packspace_coordinates_parameters() const;
  1511. // repeated .Dispatch_proto.Passageway_coordinates_parameter passageway_coordinates_parameters = 2;
  1512. int passageway_coordinates_parameters_size() const;
  1513. void clear_passageway_coordinates_parameters();
  1514. static const int kPassagewayCoordinatesParametersFieldNumber = 2;
  1515. const ::Dispatch_proto::Passageway_coordinates_parameter& passageway_coordinates_parameters(int index) const;
  1516. ::Dispatch_proto::Passageway_coordinates_parameter* mutable_passageway_coordinates_parameters(int index);
  1517. ::Dispatch_proto::Passageway_coordinates_parameter* add_passageway_coordinates_parameters();
  1518. ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Passageway_coordinates_parameter >*
  1519. mutable_passageway_coordinates_parameters();
  1520. const ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Passageway_coordinates_parameter >&
  1521. passageway_coordinates_parameters() const;
  1522. // repeated .Dispatch_proto.Carrier_coordinates_parameter carrier_coordinates_parameters = 3;
  1523. int carrier_coordinates_parameters_size() const;
  1524. void clear_carrier_coordinates_parameters();
  1525. static const int kCarrierCoordinatesParametersFieldNumber = 3;
  1526. const ::Dispatch_proto::Carrier_coordinates_parameter& carrier_coordinates_parameters(int index) const;
  1527. ::Dispatch_proto::Carrier_coordinates_parameter* mutable_carrier_coordinates_parameters(int index);
  1528. ::Dispatch_proto::Carrier_coordinates_parameter* add_carrier_coordinates_parameters();
  1529. ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Carrier_coordinates_parameter >*
  1530. mutable_carrier_coordinates_parameters();
  1531. const ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Carrier_coordinates_parameter >&
  1532. carrier_coordinates_parameters() const;
  1533. // repeated .Dispatch_proto.Catcher_coordinates_parameter catcher_coordinates_parameters = 4;
  1534. int catcher_coordinates_parameters_size() const;
  1535. void clear_catcher_coordinates_parameters();
  1536. static const int kCatcherCoordinatesParametersFieldNumber = 4;
  1537. const ::Dispatch_proto::Catcher_coordinates_parameter& catcher_coordinates_parameters(int index) const;
  1538. ::Dispatch_proto::Catcher_coordinates_parameter* mutable_catcher_coordinates_parameters(int index);
  1539. ::Dispatch_proto::Catcher_coordinates_parameter* add_catcher_coordinates_parameters();
  1540. ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Catcher_coordinates_parameter >*
  1541. mutable_catcher_coordinates_parameters();
  1542. const ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Catcher_coordinates_parameter >&
  1543. catcher_coordinates_parameters() const;
  1544. // repeated .Dispatch_proto.Passageway_functioning_pattern passageway_functioning_patterns = 34;
  1545. int passageway_functioning_patterns_size() const;
  1546. void clear_passageway_functioning_patterns();
  1547. static const int kPassagewayFunctioningPatternsFieldNumber = 34;
  1548. ::Dispatch_proto::Passageway_functioning_pattern passageway_functioning_patterns(int index) const;
  1549. void set_passageway_functioning_patterns(int index, ::Dispatch_proto::Passageway_functioning_pattern value);
  1550. void add_passageway_functioning_patterns(::Dispatch_proto::Passageway_functioning_pattern value);
  1551. const ::google::protobuf::RepeatedField<int>& passageway_functioning_patterns() const;
  1552. ::google::protobuf::RepeatedField<int>* mutable_passageway_functioning_patterns();
  1553. // optional .Dispatch_proto.Carrier_box_parameter carrier_box_parameters = 5;
  1554. bool has_carrier_box_parameters() const;
  1555. void clear_carrier_box_parameters();
  1556. static const int kCarrierBoxParametersFieldNumber = 5;
  1557. const ::Dispatch_proto::Carrier_box_parameter& carrier_box_parameters() const;
  1558. ::Dispatch_proto::Carrier_box_parameter* release_carrier_box_parameters();
  1559. ::Dispatch_proto::Carrier_box_parameter* mutable_carrier_box_parameters();
  1560. void set_allocated_carrier_box_parameters(::Dispatch_proto::Carrier_box_parameter* carrier_box_parameters);
  1561. // optional .Dispatch_proto.Catcher_box_parameter catcher_box_parameters = 6;
  1562. bool has_catcher_box_parameters() const;
  1563. void clear_catcher_box_parameters();
  1564. static const int kCatcherBoxParametersFieldNumber = 6;
  1565. const ::Dispatch_proto::Catcher_box_parameter& catcher_box_parameters() const;
  1566. ::Dispatch_proto::Catcher_box_parameter* release_catcher_box_parameters();
  1567. ::Dispatch_proto::Catcher_box_parameter* mutable_catcher_box_parameters();
  1568. void set_allocated_catcher_box_parameters(::Dispatch_proto::Catcher_box_parameter* catcher_box_parameters);
  1569. // optional int32 catcher_b_min = 7;
  1570. bool has_catcher_b_min() const;
  1571. void clear_catcher_b_min();
  1572. static const int kCatcherBMinFieldNumber = 7;
  1573. ::google::protobuf::int32 catcher_b_min() const;
  1574. void set_catcher_b_min(::google::protobuf::int32 value);
  1575. // optional int32 catcher_b_max = 8;
  1576. bool has_catcher_b_max() const;
  1577. void clear_catcher_b_max();
  1578. static const int kCatcherBMaxFieldNumber = 8;
  1579. ::google::protobuf::int32 catcher_b_max() const;
  1580. void set_catcher_b_max(::google::protobuf::int32 value);
  1581. // optional int32 catcher_d1_min = 9;
  1582. bool has_catcher_d1_min() const;
  1583. void clear_catcher_d1_min();
  1584. static const int kCatcherD1MinFieldNumber = 9;
  1585. ::google::protobuf::int32 catcher_d1_min() const;
  1586. void set_catcher_d1_min(::google::protobuf::int32 value);
  1587. // optional int32 catcher_d1_max = 10;
  1588. bool has_catcher_d1_max() const;
  1589. void clear_catcher_d1_max();
  1590. static const int kCatcherD1MaxFieldNumber = 10;
  1591. ::google::protobuf::int32 catcher_d1_max() const;
  1592. void set_catcher_d1_max(::google::protobuf::int32 value);
  1593. // optional int32 catcher_d2_min = 11;
  1594. bool has_catcher_d2_min() const;
  1595. void clear_catcher_d2_min();
  1596. static const int kCatcherD2MinFieldNumber = 11;
  1597. ::google::protobuf::int32 catcher_d2_min() const;
  1598. void set_catcher_d2_min(::google::protobuf::int32 value);
  1599. // optional int32 catcher_d2_max = 12;
  1600. bool has_catcher_d2_max() const;
  1601. void clear_catcher_d2_max();
  1602. static const int kCatcherD2MaxFieldNumber = 12;
  1603. ::google::protobuf::int32 catcher_d2_max() const;
  1604. void set_catcher_d2_max(::google::protobuf::int32 value);
  1605. // optional int32 default_wheelbase = 13;
  1606. bool has_default_wheelbase() const;
  1607. void clear_default_wheelbase();
  1608. static const int kDefaultWheelbaseFieldNumber = 13;
  1609. ::google::protobuf::int32 default_wheelbase() const;
  1610. void set_default_wheelbase(::google::protobuf::int32 value);
  1611. // optional int32 catcher_1th_floor_z = 14;
  1612. bool has_catcher_1th_floor_z() const;
  1613. void clear_catcher_1th_floor_z();
  1614. static const int kCatcher1ThFloorZFieldNumber = 14;
  1615. ::google::protobuf::int32 catcher_1th_floor_z() const;
  1616. void set_catcher_1th_floor_z(::google::protobuf::int32 value);
  1617. // optional int32 catcher_2th_floor_z = 15;
  1618. bool has_catcher_2th_floor_z() const;
  1619. void clear_catcher_2th_floor_z();
  1620. static const int kCatcher2ThFloorZFieldNumber = 15;
  1621. ::google::protobuf::int32 catcher_2th_floor_z() const;
  1622. void set_catcher_2th_floor_z(::google::protobuf::int32 value);
  1623. // optional int32 catcher_3th_floor_z = 16;
  1624. bool has_catcher_3th_floor_z() const;
  1625. void clear_catcher_3th_floor_z();
  1626. static const int kCatcher3ThFloorZFieldNumber = 16;
  1627. ::google::protobuf::int32 catcher_3th_floor_z() const;
  1628. void set_catcher_3th_floor_z(::google::protobuf::int32 value);
  1629. // optional int32 catcher_4th_floor_z = 17;
  1630. bool has_catcher_4th_floor_z() const;
  1631. void clear_catcher_4th_floor_z();
  1632. static const int kCatcher4ThFloorZFieldNumber = 17;
  1633. ::google::protobuf::int32 catcher_4th_floor_z() const;
  1634. void set_catcher_4th_floor_z(::google::protobuf::int32 value);
  1635. // optional int32 carrier_1th_floor_z = 18;
  1636. bool has_carrier_1th_floor_z() const;
  1637. void clear_carrier_1th_floor_z();
  1638. static const int kCarrier1ThFloorZFieldNumber = 18;
  1639. ::google::protobuf::int32 carrier_1th_floor_z() const;
  1640. void set_carrier_1th_floor_z(::google::protobuf::int32 value);
  1641. // optional int32 carrier_2th_floor_z = 19;
  1642. bool has_carrier_2th_floor_z() const;
  1643. void clear_carrier_2th_floor_z();
  1644. static const int kCarrier2ThFloorZFieldNumber = 19;
  1645. ::google::protobuf::int32 carrier_2th_floor_z() const;
  1646. void set_carrier_2th_floor_z(::google::protobuf::int32 value);
  1647. // optional int32 carrier_3th_floor_z = 20;
  1648. bool has_carrier_3th_floor_z() const;
  1649. void clear_carrier_3th_floor_z();
  1650. static const int kCarrier3ThFloorZFieldNumber = 20;
  1651. ::google::protobuf::int32 carrier_3th_floor_z() const;
  1652. void set_carrier_3th_floor_z(::google::protobuf::int32 value);
  1653. // optional int32 carrier_4th_floor_z = 21;
  1654. bool has_carrier_4th_floor_z() const;
  1655. void clear_carrier_4th_floor_z();
  1656. static const int kCarrier4ThFloorZFieldNumber = 21;
  1657. ::google::protobuf::int32 carrier_4th_floor_z() const;
  1658. void set_carrier_4th_floor_z(::google::protobuf::int32 value);
  1659. // optional int32 catcher_d1_d2_distance = 22;
  1660. bool has_catcher_d1_d2_distance() const;
  1661. void clear_catcher_d1_d2_distance();
  1662. static const int kCatcherD1D2DistanceFieldNumber = 22;
  1663. ::google::protobuf::int32 catcher_d1_d2_distance() const;
  1664. void set_catcher_d1_d2_distance(::google::protobuf::int32 value);
  1665. // optional int32 catcher_wheel_base_limit = 23;
  1666. bool has_catcher_wheel_base_limit() const;
  1667. void clear_catcher_wheel_base_limit();
  1668. static const int kCatcherWheelBaseLimitFieldNumber = 23;
  1669. ::google::protobuf::int32 catcher_wheel_base_limit() const;
  1670. void set_catcher_wheel_base_limit(::google::protobuf::int32 value);
  1671. // optional int32 carrier_y_y1_distance = 24;
  1672. bool has_carrier_y_y1_distance() const;
  1673. void clear_carrier_y_y1_distance();
  1674. static const int kCarrierYY1DistanceFieldNumber = 24;
  1675. ::google::protobuf::int32 carrier_y_y1_distance() const;
  1676. void set_carrier_y_y1_distance(::google::protobuf::int32 value);
  1677. // optional int32 carrier_default_y1_back = 25;
  1678. bool has_carrier_default_y1_back() const;
  1679. void clear_carrier_default_y1_back();
  1680. static const int kCarrierDefaultY1BackFieldNumber = 25;
  1681. ::google::protobuf::int32 carrier_default_y1_back() const;
  1682. void set_carrier_default_y1_back(::google::protobuf::int32 value);
  1683. // optional int32 carrier_default_y1_leave = 26;
  1684. bool has_carrier_default_y1_leave() const;
  1685. void clear_carrier_default_y1_leave();
  1686. static const int kCarrierDefaultY1LeaveFieldNumber = 26;
  1687. ::google::protobuf::int32 carrier_default_y1_leave() const;
  1688. void set_carrier_default_y1_leave(::google::protobuf::int32 value);
  1689. // optional int32 carrier_default_y_back = 27;
  1690. bool has_carrier_default_y_back() const;
  1691. void clear_carrier_default_y_back();
  1692. static const int kCarrierDefaultYBackFieldNumber = 27;
  1693. ::google::protobuf::int32 carrier_default_y_back() const;
  1694. void set_carrier_default_y_back(::google::protobuf::int32 value);
  1695. // optional int32 carrier_default_y_leave = 28;
  1696. bool has_carrier_default_y_leave() const;
  1697. void clear_carrier_default_y_leave();
  1698. static const int kCarrierDefaultYLeaveFieldNumber = 28;
  1699. ::google::protobuf::int32 carrier_default_y_leave() const;
  1700. void set_carrier_default_y_leave(::google::protobuf::int32 value);
  1701. // optional int32 carrier_default_x_left = 29;
  1702. bool has_carrier_default_x_left() const;
  1703. void clear_carrier_default_x_left();
  1704. static const int kCarrierDefaultXLeftFieldNumber = 29;
  1705. ::google::protobuf::int32 carrier_default_x_left() const;
  1706. void set_carrier_default_x_left(::google::protobuf::int32 value);
  1707. // optional int32 carrier_default_x_right = 30;
  1708. bool has_carrier_default_x_right() const;
  1709. void clear_carrier_default_x_right();
  1710. static const int kCarrierDefaultXRightFieldNumber = 30;
  1711. ::google::protobuf::int32 carrier_default_x_right() const;
  1712. void set_carrier_default_x_right(::google::protobuf::int32 value);
  1713. // optional int32 passageway_terminal_id_min = 31;
  1714. bool has_passageway_terminal_id_min() const;
  1715. void clear_passageway_terminal_id_min();
  1716. static const int kPassagewayTerminalIdMinFieldNumber = 31;
  1717. ::google::protobuf::int32 passageway_terminal_id_min() const;
  1718. void set_passageway_terminal_id_min(::google::protobuf::int32 value);
  1719. // optional int32 passageway_terminal_id_max = 32;
  1720. bool has_passageway_terminal_id_max() const;
  1721. void clear_passageway_terminal_id_max();
  1722. static const int kPassagewayTerminalIdMaxFieldNumber = 32;
  1723. ::google::protobuf::int32 passageway_terminal_id_max() const;
  1724. void set_passageway_terminal_id_max(::google::protobuf::int32 value);
  1725. // optional int32 passageway_terminal_number = 33;
  1726. bool has_passageway_terminal_number() const;
  1727. void clear_passageway_terminal_number();
  1728. static const int kPassagewayTerminalNumberFieldNumber = 33;
  1729. ::google::protobuf::int32 passageway_terminal_number() const;
  1730. void set_passageway_terminal_number(::google::protobuf::int32 value);
  1731. // optional int32 car_wheel_base_min = 35;
  1732. bool has_car_wheel_base_min() const;
  1733. void clear_car_wheel_base_min();
  1734. static const int kCarWheelBaseMinFieldNumber = 35;
  1735. ::google::protobuf::int32 car_wheel_base_min() const;
  1736. void set_car_wheel_base_min(::google::protobuf::int32 value);
  1737. // optional int32 car_wheel_base_max = 36;
  1738. bool has_car_wheel_base_max() const;
  1739. void clear_car_wheel_base_max();
  1740. static const int kCarWheelBaseMaxFieldNumber = 36;
  1741. ::google::protobuf::int32 car_wheel_base_max() const;
  1742. void set_car_wheel_base_max(::google::protobuf::int32 value);
  1743. // @@protoc_insertion_point(class_scope:Dispatch_proto.Dispatch_coordinates_parameter_all)
  1744. private:
  1745. void set_has_carrier_box_parameters();
  1746. void clear_has_carrier_box_parameters();
  1747. void set_has_catcher_box_parameters();
  1748. void clear_has_catcher_box_parameters();
  1749. void set_has_catcher_b_min();
  1750. void clear_has_catcher_b_min();
  1751. void set_has_catcher_b_max();
  1752. void clear_has_catcher_b_max();
  1753. void set_has_catcher_d1_min();
  1754. void clear_has_catcher_d1_min();
  1755. void set_has_catcher_d1_max();
  1756. void clear_has_catcher_d1_max();
  1757. void set_has_catcher_d2_min();
  1758. void clear_has_catcher_d2_min();
  1759. void set_has_catcher_d2_max();
  1760. void clear_has_catcher_d2_max();
  1761. void set_has_default_wheelbase();
  1762. void clear_has_default_wheelbase();
  1763. void set_has_catcher_1th_floor_z();
  1764. void clear_has_catcher_1th_floor_z();
  1765. void set_has_catcher_2th_floor_z();
  1766. void clear_has_catcher_2th_floor_z();
  1767. void set_has_catcher_3th_floor_z();
  1768. void clear_has_catcher_3th_floor_z();
  1769. void set_has_catcher_4th_floor_z();
  1770. void clear_has_catcher_4th_floor_z();
  1771. void set_has_carrier_1th_floor_z();
  1772. void clear_has_carrier_1th_floor_z();
  1773. void set_has_carrier_2th_floor_z();
  1774. void clear_has_carrier_2th_floor_z();
  1775. void set_has_carrier_3th_floor_z();
  1776. void clear_has_carrier_3th_floor_z();
  1777. void set_has_carrier_4th_floor_z();
  1778. void clear_has_carrier_4th_floor_z();
  1779. void set_has_catcher_d1_d2_distance();
  1780. void clear_has_catcher_d1_d2_distance();
  1781. void set_has_catcher_wheel_base_limit();
  1782. void clear_has_catcher_wheel_base_limit();
  1783. void set_has_carrier_y_y1_distance();
  1784. void clear_has_carrier_y_y1_distance();
  1785. void set_has_carrier_default_y1_back();
  1786. void clear_has_carrier_default_y1_back();
  1787. void set_has_carrier_default_y1_leave();
  1788. void clear_has_carrier_default_y1_leave();
  1789. void set_has_carrier_default_y_back();
  1790. void clear_has_carrier_default_y_back();
  1791. void set_has_carrier_default_y_leave();
  1792. void clear_has_carrier_default_y_leave();
  1793. void set_has_carrier_default_x_left();
  1794. void clear_has_carrier_default_x_left();
  1795. void set_has_carrier_default_x_right();
  1796. void clear_has_carrier_default_x_right();
  1797. void set_has_passageway_terminal_id_min();
  1798. void clear_has_passageway_terminal_id_min();
  1799. void set_has_passageway_terminal_id_max();
  1800. void clear_has_passageway_terminal_id_max();
  1801. void set_has_passageway_terminal_number();
  1802. void clear_has_passageway_terminal_number();
  1803. void set_has_car_wheel_base_min();
  1804. void clear_has_car_wheel_base_min();
  1805. void set_has_car_wheel_base_max();
  1806. void clear_has_car_wheel_base_max();
  1807. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  1808. ::google::protobuf::internal::HasBits<1> _has_bits_;
  1809. mutable int _cached_size_;
  1810. ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Packspace_coordinates_parameter > packspace_coordinates_parameters_;
  1811. ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Passageway_coordinates_parameter > passageway_coordinates_parameters_;
  1812. ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Carrier_coordinates_parameter > carrier_coordinates_parameters_;
  1813. ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Catcher_coordinates_parameter > catcher_coordinates_parameters_;
  1814. ::google::protobuf::RepeatedField<int> passageway_functioning_patterns_;
  1815. ::Dispatch_proto::Carrier_box_parameter* carrier_box_parameters_;
  1816. ::Dispatch_proto::Catcher_box_parameter* catcher_box_parameters_;
  1817. ::google::protobuf::int32 catcher_b_min_;
  1818. ::google::protobuf::int32 catcher_b_max_;
  1819. ::google::protobuf::int32 catcher_d1_min_;
  1820. ::google::protobuf::int32 catcher_d1_max_;
  1821. ::google::protobuf::int32 catcher_d2_min_;
  1822. ::google::protobuf::int32 catcher_d2_max_;
  1823. ::google::protobuf::int32 default_wheelbase_;
  1824. ::google::protobuf::int32 catcher_1th_floor_z_;
  1825. ::google::protobuf::int32 catcher_2th_floor_z_;
  1826. ::google::protobuf::int32 catcher_3th_floor_z_;
  1827. ::google::protobuf::int32 catcher_4th_floor_z_;
  1828. ::google::protobuf::int32 carrier_1th_floor_z_;
  1829. ::google::protobuf::int32 carrier_2th_floor_z_;
  1830. ::google::protobuf::int32 carrier_3th_floor_z_;
  1831. ::google::protobuf::int32 carrier_4th_floor_z_;
  1832. ::google::protobuf::int32 catcher_d1_d2_distance_;
  1833. ::google::protobuf::int32 catcher_wheel_base_limit_;
  1834. ::google::protobuf::int32 carrier_y_y1_distance_;
  1835. ::google::protobuf::int32 carrier_default_y1_back_;
  1836. ::google::protobuf::int32 carrier_default_y1_leave_;
  1837. ::google::protobuf::int32 carrier_default_y_back_;
  1838. ::google::protobuf::int32 carrier_default_y_leave_;
  1839. ::google::protobuf::int32 carrier_default_x_left_;
  1840. ::google::protobuf::int32 carrier_default_x_right_;
  1841. ::google::protobuf::int32 passageway_terminal_id_min_;
  1842. ::google::protobuf::int32 passageway_terminal_id_max_;
  1843. ::google::protobuf::int32 passageway_terminal_number_;
  1844. ::google::protobuf::int32 car_wheel_base_min_;
  1845. ::google::protobuf::int32 car_wheel_base_max_;
  1846. friend struct ::protobuf_dispatch_5fparameter_2eproto::TableStruct;
  1847. friend void ::protobuf_dispatch_5fparameter_2eproto::InitDefaultsDispatch_coordinates_parameter_allImpl();
  1848. };
  1849. // ===================================================================
  1850. // ===================================================================
  1851. #ifdef __GNUC__
  1852. #pragma GCC diagnostic push
  1853. #pragma GCC diagnostic ignored "-Wstrict-aliasing"
  1854. #endif // __GNUC__
  1855. // Catcher_parameter
  1856. // required int32 id = 1;
  1857. inline bool Catcher_parameter::has_id() const {
  1858. return (_has_bits_[0] & 0x00000001u) != 0;
  1859. }
  1860. inline void Catcher_parameter::set_has_id() {
  1861. _has_bits_[0] |= 0x00000001u;
  1862. }
  1863. inline void Catcher_parameter::clear_has_id() {
  1864. _has_bits_[0] &= ~0x00000001u;
  1865. }
  1866. inline void Catcher_parameter::clear_id() {
  1867. id_ = 0;
  1868. clear_has_id();
  1869. }
  1870. inline ::google::protobuf::int32 Catcher_parameter::id() const {
  1871. // @@protoc_insertion_point(field_get:Dispatch_proto.Catcher_parameter.id)
  1872. return id_;
  1873. }
  1874. inline void Catcher_parameter::set_id(::google::protobuf::int32 value) {
  1875. set_has_id();
  1876. id_ = value;
  1877. // @@protoc_insertion_point(field_set:Dispatch_proto.Catcher_parameter.id)
  1878. }
  1879. // -------------------------------------------------------------------
  1880. // Carrier_parameter
  1881. // required int32 id = 1;
  1882. inline bool Carrier_parameter::has_id() const {
  1883. return (_has_bits_[0] & 0x00000001u) != 0;
  1884. }
  1885. inline void Carrier_parameter::set_has_id() {
  1886. _has_bits_[0] |= 0x00000001u;
  1887. }
  1888. inline void Carrier_parameter::clear_has_id() {
  1889. _has_bits_[0] &= ~0x00000001u;
  1890. }
  1891. inline void Carrier_parameter::clear_id() {
  1892. id_ = 0;
  1893. clear_has_id();
  1894. }
  1895. inline ::google::protobuf::int32 Carrier_parameter::id() const {
  1896. // @@protoc_insertion_point(field_get:Dispatch_proto.Carrier_parameter.id)
  1897. return id_;
  1898. }
  1899. inline void Carrier_parameter::set_id(::google::protobuf::int32 value) {
  1900. set_has_id();
  1901. id_ = value;
  1902. // @@protoc_insertion_point(field_set:Dispatch_proto.Carrier_parameter.id)
  1903. }
  1904. // -------------------------------------------------------------------
  1905. // Passageway_parameter
  1906. // required int32 id = 1;
  1907. inline bool Passageway_parameter::has_id() const {
  1908. return (_has_bits_[0] & 0x00000001u) != 0;
  1909. }
  1910. inline void Passageway_parameter::set_has_id() {
  1911. _has_bits_[0] |= 0x00000001u;
  1912. }
  1913. inline void Passageway_parameter::clear_has_id() {
  1914. _has_bits_[0] &= ~0x00000001u;
  1915. }
  1916. inline void Passageway_parameter::clear_id() {
  1917. id_ = 0;
  1918. clear_has_id();
  1919. }
  1920. inline ::google::protobuf::int32 Passageway_parameter::id() const {
  1921. // @@protoc_insertion_point(field_get:Dispatch_proto.Passageway_parameter.id)
  1922. return id_;
  1923. }
  1924. inline void Passageway_parameter::set_id(::google::protobuf::int32 value) {
  1925. set_has_id();
  1926. id_ = value;
  1927. // @@protoc_insertion_point(field_set:Dispatch_proto.Passageway_parameter.id)
  1928. }
  1929. // -------------------------------------------------------------------
  1930. // Laser_parameter_all
  1931. // required int32 catcher_size = 1;
  1932. inline bool Laser_parameter_all::has_catcher_size() const {
  1933. return (_has_bits_[0] & 0x00000001u) != 0;
  1934. }
  1935. inline void Laser_parameter_all::set_has_catcher_size() {
  1936. _has_bits_[0] |= 0x00000001u;
  1937. }
  1938. inline void Laser_parameter_all::clear_has_catcher_size() {
  1939. _has_bits_[0] &= ~0x00000001u;
  1940. }
  1941. inline void Laser_parameter_all::clear_catcher_size() {
  1942. catcher_size_ = 0;
  1943. clear_has_catcher_size();
  1944. }
  1945. inline ::google::protobuf::int32 Laser_parameter_all::catcher_size() const {
  1946. // @@protoc_insertion_point(field_get:Dispatch_proto.Laser_parameter_all.catcher_size)
  1947. return catcher_size_;
  1948. }
  1949. inline void Laser_parameter_all::set_catcher_size(::google::protobuf::int32 value) {
  1950. set_has_catcher_size();
  1951. catcher_size_ = value;
  1952. // @@protoc_insertion_point(field_set:Dispatch_proto.Laser_parameter_all.catcher_size)
  1953. }
  1954. // repeated .Dispatch_proto.Catcher_parameter catcher_parameters = 2;
  1955. inline int Laser_parameter_all::catcher_parameters_size() const {
  1956. return catcher_parameters_.size();
  1957. }
  1958. inline void Laser_parameter_all::clear_catcher_parameters() {
  1959. catcher_parameters_.Clear();
  1960. }
  1961. inline const ::Dispatch_proto::Catcher_parameter& Laser_parameter_all::catcher_parameters(int index) const {
  1962. // @@protoc_insertion_point(field_get:Dispatch_proto.Laser_parameter_all.catcher_parameters)
  1963. return catcher_parameters_.Get(index);
  1964. }
  1965. inline ::Dispatch_proto::Catcher_parameter* Laser_parameter_all::mutable_catcher_parameters(int index) {
  1966. // @@protoc_insertion_point(field_mutable:Dispatch_proto.Laser_parameter_all.catcher_parameters)
  1967. return catcher_parameters_.Mutable(index);
  1968. }
  1969. inline ::Dispatch_proto::Catcher_parameter* Laser_parameter_all::add_catcher_parameters() {
  1970. // @@protoc_insertion_point(field_add:Dispatch_proto.Laser_parameter_all.catcher_parameters)
  1971. return catcher_parameters_.Add();
  1972. }
  1973. inline ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Catcher_parameter >*
  1974. Laser_parameter_all::mutable_catcher_parameters() {
  1975. // @@protoc_insertion_point(field_mutable_list:Dispatch_proto.Laser_parameter_all.catcher_parameters)
  1976. return &catcher_parameters_;
  1977. }
  1978. inline const ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Catcher_parameter >&
  1979. Laser_parameter_all::catcher_parameters() const {
  1980. // @@protoc_insertion_point(field_list:Dispatch_proto.Laser_parameter_all.catcher_parameters)
  1981. return catcher_parameters_;
  1982. }
  1983. // required int32 carrier_size = 3;
  1984. inline bool Laser_parameter_all::has_carrier_size() const {
  1985. return (_has_bits_[0] & 0x00000002u) != 0;
  1986. }
  1987. inline void Laser_parameter_all::set_has_carrier_size() {
  1988. _has_bits_[0] |= 0x00000002u;
  1989. }
  1990. inline void Laser_parameter_all::clear_has_carrier_size() {
  1991. _has_bits_[0] &= ~0x00000002u;
  1992. }
  1993. inline void Laser_parameter_all::clear_carrier_size() {
  1994. carrier_size_ = 0;
  1995. clear_has_carrier_size();
  1996. }
  1997. inline ::google::protobuf::int32 Laser_parameter_all::carrier_size() const {
  1998. // @@protoc_insertion_point(field_get:Dispatch_proto.Laser_parameter_all.carrier_size)
  1999. return carrier_size_;
  2000. }
  2001. inline void Laser_parameter_all::set_carrier_size(::google::protobuf::int32 value) {
  2002. set_has_carrier_size();
  2003. carrier_size_ = value;
  2004. // @@protoc_insertion_point(field_set:Dispatch_proto.Laser_parameter_all.carrier_size)
  2005. }
  2006. // repeated .Dispatch_proto.Carrier_parameter carrier_parameters = 4;
  2007. inline int Laser_parameter_all::carrier_parameters_size() const {
  2008. return carrier_parameters_.size();
  2009. }
  2010. inline void Laser_parameter_all::clear_carrier_parameters() {
  2011. carrier_parameters_.Clear();
  2012. }
  2013. inline const ::Dispatch_proto::Carrier_parameter& Laser_parameter_all::carrier_parameters(int index) const {
  2014. // @@protoc_insertion_point(field_get:Dispatch_proto.Laser_parameter_all.carrier_parameters)
  2015. return carrier_parameters_.Get(index);
  2016. }
  2017. inline ::Dispatch_proto::Carrier_parameter* Laser_parameter_all::mutable_carrier_parameters(int index) {
  2018. // @@protoc_insertion_point(field_mutable:Dispatch_proto.Laser_parameter_all.carrier_parameters)
  2019. return carrier_parameters_.Mutable(index);
  2020. }
  2021. inline ::Dispatch_proto::Carrier_parameter* Laser_parameter_all::add_carrier_parameters() {
  2022. // @@protoc_insertion_point(field_add:Dispatch_proto.Laser_parameter_all.carrier_parameters)
  2023. return carrier_parameters_.Add();
  2024. }
  2025. inline ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Carrier_parameter >*
  2026. Laser_parameter_all::mutable_carrier_parameters() {
  2027. // @@protoc_insertion_point(field_mutable_list:Dispatch_proto.Laser_parameter_all.carrier_parameters)
  2028. return &carrier_parameters_;
  2029. }
  2030. inline const ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Carrier_parameter >&
  2031. Laser_parameter_all::carrier_parameters() const {
  2032. // @@protoc_insertion_point(field_list:Dispatch_proto.Laser_parameter_all.carrier_parameters)
  2033. return carrier_parameters_;
  2034. }
  2035. // required int32 passageway_size = 5;
  2036. inline bool Laser_parameter_all::has_passageway_size() const {
  2037. return (_has_bits_[0] & 0x00000004u) != 0;
  2038. }
  2039. inline void Laser_parameter_all::set_has_passageway_size() {
  2040. _has_bits_[0] |= 0x00000004u;
  2041. }
  2042. inline void Laser_parameter_all::clear_has_passageway_size() {
  2043. _has_bits_[0] &= ~0x00000004u;
  2044. }
  2045. inline void Laser_parameter_all::clear_passageway_size() {
  2046. passageway_size_ = 0;
  2047. clear_has_passageway_size();
  2048. }
  2049. inline ::google::protobuf::int32 Laser_parameter_all::passageway_size() const {
  2050. // @@protoc_insertion_point(field_get:Dispatch_proto.Laser_parameter_all.passageway_size)
  2051. return passageway_size_;
  2052. }
  2053. inline void Laser_parameter_all::set_passageway_size(::google::protobuf::int32 value) {
  2054. set_has_passageway_size();
  2055. passageway_size_ = value;
  2056. // @@protoc_insertion_point(field_set:Dispatch_proto.Laser_parameter_all.passageway_size)
  2057. }
  2058. // repeated .Dispatch_proto.Passageway_parameter passageway_parameters = 6;
  2059. inline int Laser_parameter_all::passageway_parameters_size() const {
  2060. return passageway_parameters_.size();
  2061. }
  2062. inline void Laser_parameter_all::clear_passageway_parameters() {
  2063. passageway_parameters_.Clear();
  2064. }
  2065. inline const ::Dispatch_proto::Passageway_parameter& Laser_parameter_all::passageway_parameters(int index) const {
  2066. // @@protoc_insertion_point(field_get:Dispatch_proto.Laser_parameter_all.passageway_parameters)
  2067. return passageway_parameters_.Get(index);
  2068. }
  2069. inline ::Dispatch_proto::Passageway_parameter* Laser_parameter_all::mutable_passageway_parameters(int index) {
  2070. // @@protoc_insertion_point(field_mutable:Dispatch_proto.Laser_parameter_all.passageway_parameters)
  2071. return passageway_parameters_.Mutable(index);
  2072. }
  2073. inline ::Dispatch_proto::Passageway_parameter* Laser_parameter_all::add_passageway_parameters() {
  2074. // @@protoc_insertion_point(field_add:Dispatch_proto.Laser_parameter_all.passageway_parameters)
  2075. return passageway_parameters_.Add();
  2076. }
  2077. inline ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Passageway_parameter >*
  2078. Laser_parameter_all::mutable_passageway_parameters() {
  2079. // @@protoc_insertion_point(field_mutable_list:Dispatch_proto.Laser_parameter_all.passageway_parameters)
  2080. return &passageway_parameters_;
  2081. }
  2082. inline const ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Passageway_parameter >&
  2083. Laser_parameter_all::passageway_parameters() const {
  2084. // @@protoc_insertion_point(field_list:Dispatch_proto.Laser_parameter_all.passageway_parameters)
  2085. return passageway_parameters_;
  2086. }
  2087. // -------------------------------------------------------------------
  2088. // Packspace_coordinates_parameter
  2089. // optional int32 id = 1 [default = 0];
  2090. inline bool Packspace_coordinates_parameter::has_id() const {
  2091. return (_has_bits_[0] & 0x00000001u) != 0;
  2092. }
  2093. inline void Packspace_coordinates_parameter::set_has_id() {
  2094. _has_bits_[0] |= 0x00000001u;
  2095. }
  2096. inline void Packspace_coordinates_parameter::clear_has_id() {
  2097. _has_bits_[0] &= ~0x00000001u;
  2098. }
  2099. inline void Packspace_coordinates_parameter::clear_id() {
  2100. id_ = 0;
  2101. clear_has_id();
  2102. }
  2103. inline ::google::protobuf::int32 Packspace_coordinates_parameter::id() const {
  2104. // @@protoc_insertion_point(field_get:Dispatch_proto.Packspace_coordinates_parameter.id)
  2105. return id_;
  2106. }
  2107. inline void Packspace_coordinates_parameter::set_id(::google::protobuf::int32 value) {
  2108. set_has_id();
  2109. id_ = value;
  2110. // @@protoc_insertion_point(field_set:Dispatch_proto.Packspace_coordinates_parameter.id)
  2111. }
  2112. // optional int32 x = 2 [default = 0];
  2113. inline bool Packspace_coordinates_parameter::has_x() const {
  2114. return (_has_bits_[0] & 0x00000002u) != 0;
  2115. }
  2116. inline void Packspace_coordinates_parameter::set_has_x() {
  2117. _has_bits_[0] |= 0x00000002u;
  2118. }
  2119. inline void Packspace_coordinates_parameter::clear_has_x() {
  2120. _has_bits_[0] &= ~0x00000002u;
  2121. }
  2122. inline void Packspace_coordinates_parameter::clear_x() {
  2123. x_ = 0;
  2124. clear_has_x();
  2125. }
  2126. inline ::google::protobuf::int32 Packspace_coordinates_parameter::x() const {
  2127. // @@protoc_insertion_point(field_get:Dispatch_proto.Packspace_coordinates_parameter.x)
  2128. return x_;
  2129. }
  2130. inline void Packspace_coordinates_parameter::set_x(::google::protobuf::int32 value) {
  2131. set_has_x();
  2132. x_ = value;
  2133. // @@protoc_insertion_point(field_set:Dispatch_proto.Packspace_coordinates_parameter.x)
  2134. }
  2135. // optional int32 y = 3 [default = 0];
  2136. inline bool Packspace_coordinates_parameter::has_y() const {
  2137. return (_has_bits_[0] & 0x00000004u) != 0;
  2138. }
  2139. inline void Packspace_coordinates_parameter::set_has_y() {
  2140. _has_bits_[0] |= 0x00000004u;
  2141. }
  2142. inline void Packspace_coordinates_parameter::clear_has_y() {
  2143. _has_bits_[0] &= ~0x00000004u;
  2144. }
  2145. inline void Packspace_coordinates_parameter::clear_y() {
  2146. y_ = 0;
  2147. clear_has_y();
  2148. }
  2149. inline ::google::protobuf::int32 Packspace_coordinates_parameter::y() const {
  2150. // @@protoc_insertion_point(field_get:Dispatch_proto.Packspace_coordinates_parameter.y)
  2151. return y_;
  2152. }
  2153. inline void Packspace_coordinates_parameter::set_y(::google::protobuf::int32 value) {
  2154. set_has_y();
  2155. y_ = value;
  2156. // @@protoc_insertion_point(field_set:Dispatch_proto.Packspace_coordinates_parameter.y)
  2157. }
  2158. // optional int32 z = 4 [default = 0];
  2159. inline bool Packspace_coordinates_parameter::has_z() const {
  2160. return (_has_bits_[0] & 0x00000008u) != 0;
  2161. }
  2162. inline void Packspace_coordinates_parameter::set_has_z() {
  2163. _has_bits_[0] |= 0x00000008u;
  2164. }
  2165. inline void Packspace_coordinates_parameter::clear_has_z() {
  2166. _has_bits_[0] &= ~0x00000008u;
  2167. }
  2168. inline void Packspace_coordinates_parameter::clear_z() {
  2169. z_ = 0;
  2170. clear_has_z();
  2171. }
  2172. inline ::google::protobuf::int32 Packspace_coordinates_parameter::z() const {
  2173. // @@protoc_insertion_point(field_get:Dispatch_proto.Packspace_coordinates_parameter.z)
  2174. return z_;
  2175. }
  2176. inline void Packspace_coordinates_parameter::set_z(::google::protobuf::int32 value) {
  2177. set_has_z();
  2178. z_ = value;
  2179. // @@protoc_insertion_point(field_set:Dispatch_proto.Packspace_coordinates_parameter.z)
  2180. }
  2181. // -------------------------------------------------------------------
  2182. // Passageway_coordinates_parameter
  2183. // optional int32 id = 1 [default = 0];
  2184. inline bool Passageway_coordinates_parameter::has_id() const {
  2185. return (_has_bits_[0] & 0x00000001u) != 0;
  2186. }
  2187. inline void Passageway_coordinates_parameter::set_has_id() {
  2188. _has_bits_[0] |= 0x00000001u;
  2189. }
  2190. inline void Passageway_coordinates_parameter::clear_has_id() {
  2191. _has_bits_[0] &= ~0x00000001u;
  2192. }
  2193. inline void Passageway_coordinates_parameter::clear_id() {
  2194. id_ = 0;
  2195. clear_has_id();
  2196. }
  2197. inline ::google::protobuf::int32 Passageway_coordinates_parameter::id() const {
  2198. // @@protoc_insertion_point(field_get:Dispatch_proto.Passageway_coordinates_parameter.id)
  2199. return id_;
  2200. }
  2201. inline void Passageway_coordinates_parameter::set_id(::google::protobuf::int32 value) {
  2202. set_has_id();
  2203. id_ = value;
  2204. // @@protoc_insertion_point(field_set:Dispatch_proto.Passageway_coordinates_parameter.id)
  2205. }
  2206. // optional int32 x = 2 [default = 0];
  2207. inline bool Passageway_coordinates_parameter::has_x() const {
  2208. return (_has_bits_[0] & 0x00000002u) != 0;
  2209. }
  2210. inline void Passageway_coordinates_parameter::set_has_x() {
  2211. _has_bits_[0] |= 0x00000002u;
  2212. }
  2213. inline void Passageway_coordinates_parameter::clear_has_x() {
  2214. _has_bits_[0] &= ~0x00000002u;
  2215. }
  2216. inline void Passageway_coordinates_parameter::clear_x() {
  2217. x_ = 0;
  2218. clear_has_x();
  2219. }
  2220. inline ::google::protobuf::int32 Passageway_coordinates_parameter::x() const {
  2221. // @@protoc_insertion_point(field_get:Dispatch_proto.Passageway_coordinates_parameter.x)
  2222. return x_;
  2223. }
  2224. inline void Passageway_coordinates_parameter::set_x(::google::protobuf::int32 value) {
  2225. set_has_x();
  2226. x_ = value;
  2227. // @@protoc_insertion_point(field_set:Dispatch_proto.Passageway_coordinates_parameter.x)
  2228. }
  2229. // optional int32 y = 3 [default = 0];
  2230. inline bool Passageway_coordinates_parameter::has_y() const {
  2231. return (_has_bits_[0] & 0x00000004u) != 0;
  2232. }
  2233. inline void Passageway_coordinates_parameter::set_has_y() {
  2234. _has_bits_[0] |= 0x00000004u;
  2235. }
  2236. inline void Passageway_coordinates_parameter::clear_has_y() {
  2237. _has_bits_[0] &= ~0x00000004u;
  2238. }
  2239. inline void Passageway_coordinates_parameter::clear_y() {
  2240. y_ = 0;
  2241. clear_has_y();
  2242. }
  2243. inline ::google::protobuf::int32 Passageway_coordinates_parameter::y() const {
  2244. // @@protoc_insertion_point(field_get:Dispatch_proto.Passageway_coordinates_parameter.y)
  2245. return y_;
  2246. }
  2247. inline void Passageway_coordinates_parameter::set_y(::google::protobuf::int32 value) {
  2248. set_has_y();
  2249. y_ = value;
  2250. // @@protoc_insertion_point(field_set:Dispatch_proto.Passageway_coordinates_parameter.y)
  2251. }
  2252. // optional int32 z = 4 [default = 0];
  2253. inline bool Passageway_coordinates_parameter::has_z() const {
  2254. return (_has_bits_[0] & 0x00000008u) != 0;
  2255. }
  2256. inline void Passageway_coordinates_parameter::set_has_z() {
  2257. _has_bits_[0] |= 0x00000008u;
  2258. }
  2259. inline void Passageway_coordinates_parameter::clear_has_z() {
  2260. _has_bits_[0] &= ~0x00000008u;
  2261. }
  2262. inline void Passageway_coordinates_parameter::clear_z() {
  2263. z_ = 0;
  2264. clear_has_z();
  2265. }
  2266. inline ::google::protobuf::int32 Passageway_coordinates_parameter::z() const {
  2267. // @@protoc_insertion_point(field_get:Dispatch_proto.Passageway_coordinates_parameter.z)
  2268. return z_;
  2269. }
  2270. inline void Passageway_coordinates_parameter::set_z(::google::protobuf::int32 value) {
  2271. set_has_z();
  2272. z_ = value;
  2273. // @@protoc_insertion_point(field_set:Dispatch_proto.Passageway_coordinates_parameter.z)
  2274. }
  2275. // -------------------------------------------------------------------
  2276. // Carrier_coordinates_parameter
  2277. // optional int32 id = 1 [default = 0];
  2278. inline bool Carrier_coordinates_parameter::has_id() const {
  2279. return (_has_bits_[0] & 0x00000001u) != 0;
  2280. }
  2281. inline void Carrier_coordinates_parameter::set_has_id() {
  2282. _has_bits_[0] |= 0x00000001u;
  2283. }
  2284. inline void Carrier_coordinates_parameter::clear_has_id() {
  2285. _has_bits_[0] &= ~0x00000001u;
  2286. }
  2287. inline void Carrier_coordinates_parameter::clear_id() {
  2288. id_ = 0;
  2289. clear_has_id();
  2290. }
  2291. inline ::google::protobuf::int32 Carrier_coordinates_parameter::id() const {
  2292. // @@protoc_insertion_point(field_get:Dispatch_proto.Carrier_coordinates_parameter.id)
  2293. return id_;
  2294. }
  2295. inline void Carrier_coordinates_parameter::set_id(::google::protobuf::int32 value) {
  2296. set_has_id();
  2297. id_ = value;
  2298. // @@protoc_insertion_point(field_set:Dispatch_proto.Carrier_coordinates_parameter.id)
  2299. }
  2300. // optional int32 x = 2 [default = 0];
  2301. inline bool Carrier_coordinates_parameter::has_x() const {
  2302. return (_has_bits_[0] & 0x00000002u) != 0;
  2303. }
  2304. inline void Carrier_coordinates_parameter::set_has_x() {
  2305. _has_bits_[0] |= 0x00000002u;
  2306. }
  2307. inline void Carrier_coordinates_parameter::clear_has_x() {
  2308. _has_bits_[0] &= ~0x00000002u;
  2309. }
  2310. inline void Carrier_coordinates_parameter::clear_x() {
  2311. x_ = 0;
  2312. clear_has_x();
  2313. }
  2314. inline ::google::protobuf::int32 Carrier_coordinates_parameter::x() const {
  2315. // @@protoc_insertion_point(field_get:Dispatch_proto.Carrier_coordinates_parameter.x)
  2316. return x_;
  2317. }
  2318. inline void Carrier_coordinates_parameter::set_x(::google::protobuf::int32 value) {
  2319. set_has_x();
  2320. x_ = value;
  2321. // @@protoc_insertion_point(field_set:Dispatch_proto.Carrier_coordinates_parameter.x)
  2322. }
  2323. // optional int32 y = 3 [default = 0];
  2324. inline bool Carrier_coordinates_parameter::has_y() const {
  2325. return (_has_bits_[0] & 0x00000004u) != 0;
  2326. }
  2327. inline void Carrier_coordinates_parameter::set_has_y() {
  2328. _has_bits_[0] |= 0x00000004u;
  2329. }
  2330. inline void Carrier_coordinates_parameter::clear_has_y() {
  2331. _has_bits_[0] &= ~0x00000004u;
  2332. }
  2333. inline void Carrier_coordinates_parameter::clear_y() {
  2334. y_ = 0;
  2335. clear_has_y();
  2336. }
  2337. inline ::google::protobuf::int32 Carrier_coordinates_parameter::y() const {
  2338. // @@protoc_insertion_point(field_get:Dispatch_proto.Carrier_coordinates_parameter.y)
  2339. return y_;
  2340. }
  2341. inline void Carrier_coordinates_parameter::set_y(::google::protobuf::int32 value) {
  2342. set_has_y();
  2343. y_ = value;
  2344. // @@protoc_insertion_point(field_set:Dispatch_proto.Carrier_coordinates_parameter.y)
  2345. }
  2346. // optional int32 z = 4 [default = 0];
  2347. inline bool Carrier_coordinates_parameter::has_z() const {
  2348. return (_has_bits_[0] & 0x00000008u) != 0;
  2349. }
  2350. inline void Carrier_coordinates_parameter::set_has_z() {
  2351. _has_bits_[0] |= 0x00000008u;
  2352. }
  2353. inline void Carrier_coordinates_parameter::clear_has_z() {
  2354. _has_bits_[0] &= ~0x00000008u;
  2355. }
  2356. inline void Carrier_coordinates_parameter::clear_z() {
  2357. z_ = 0;
  2358. clear_has_z();
  2359. }
  2360. inline ::google::protobuf::int32 Carrier_coordinates_parameter::z() const {
  2361. // @@protoc_insertion_point(field_get:Dispatch_proto.Carrier_coordinates_parameter.z)
  2362. return z_;
  2363. }
  2364. inline void Carrier_coordinates_parameter::set_z(::google::protobuf::int32 value) {
  2365. set_has_z();
  2366. z_ = value;
  2367. // @@protoc_insertion_point(field_set:Dispatch_proto.Carrier_coordinates_parameter.z)
  2368. }
  2369. // -------------------------------------------------------------------
  2370. // Catcher_coordinates_parameter
  2371. // optional int32 id = 1 [default = 0];
  2372. inline bool Catcher_coordinates_parameter::has_id() const {
  2373. return (_has_bits_[0] & 0x00000001u) != 0;
  2374. }
  2375. inline void Catcher_coordinates_parameter::set_has_id() {
  2376. _has_bits_[0] |= 0x00000001u;
  2377. }
  2378. inline void Catcher_coordinates_parameter::clear_has_id() {
  2379. _has_bits_[0] &= ~0x00000001u;
  2380. }
  2381. inline void Catcher_coordinates_parameter::clear_id() {
  2382. id_ = 0;
  2383. clear_has_id();
  2384. }
  2385. inline ::google::protobuf::int32 Catcher_coordinates_parameter::id() const {
  2386. // @@protoc_insertion_point(field_get:Dispatch_proto.Catcher_coordinates_parameter.id)
  2387. return id_;
  2388. }
  2389. inline void Catcher_coordinates_parameter::set_id(::google::protobuf::int32 value) {
  2390. set_has_id();
  2391. id_ = value;
  2392. // @@protoc_insertion_point(field_set:Dispatch_proto.Catcher_coordinates_parameter.id)
  2393. }
  2394. // optional int32 x = 2 [default = 0];
  2395. inline bool Catcher_coordinates_parameter::has_x() const {
  2396. return (_has_bits_[0] & 0x00000002u) != 0;
  2397. }
  2398. inline void Catcher_coordinates_parameter::set_has_x() {
  2399. _has_bits_[0] |= 0x00000002u;
  2400. }
  2401. inline void Catcher_coordinates_parameter::clear_has_x() {
  2402. _has_bits_[0] &= ~0x00000002u;
  2403. }
  2404. inline void Catcher_coordinates_parameter::clear_x() {
  2405. x_ = 0;
  2406. clear_has_x();
  2407. }
  2408. inline ::google::protobuf::int32 Catcher_coordinates_parameter::x() const {
  2409. // @@protoc_insertion_point(field_get:Dispatch_proto.Catcher_coordinates_parameter.x)
  2410. return x_;
  2411. }
  2412. inline void Catcher_coordinates_parameter::set_x(::google::protobuf::int32 value) {
  2413. set_has_x();
  2414. x_ = value;
  2415. // @@protoc_insertion_point(field_set:Dispatch_proto.Catcher_coordinates_parameter.x)
  2416. }
  2417. // optional int32 y = 3 [default = 0];
  2418. inline bool Catcher_coordinates_parameter::has_y() const {
  2419. return (_has_bits_[0] & 0x00000004u) != 0;
  2420. }
  2421. inline void Catcher_coordinates_parameter::set_has_y() {
  2422. _has_bits_[0] |= 0x00000004u;
  2423. }
  2424. inline void Catcher_coordinates_parameter::clear_has_y() {
  2425. _has_bits_[0] &= ~0x00000004u;
  2426. }
  2427. inline void Catcher_coordinates_parameter::clear_y() {
  2428. y_ = 0;
  2429. clear_has_y();
  2430. }
  2431. inline ::google::protobuf::int32 Catcher_coordinates_parameter::y() const {
  2432. // @@protoc_insertion_point(field_get:Dispatch_proto.Catcher_coordinates_parameter.y)
  2433. return y_;
  2434. }
  2435. inline void Catcher_coordinates_parameter::set_y(::google::protobuf::int32 value) {
  2436. set_has_y();
  2437. y_ = value;
  2438. // @@protoc_insertion_point(field_set:Dispatch_proto.Catcher_coordinates_parameter.y)
  2439. }
  2440. // optional int32 z = 4 [default = 0];
  2441. inline bool Catcher_coordinates_parameter::has_z() const {
  2442. return (_has_bits_[0] & 0x00000008u) != 0;
  2443. }
  2444. inline void Catcher_coordinates_parameter::set_has_z() {
  2445. _has_bits_[0] |= 0x00000008u;
  2446. }
  2447. inline void Catcher_coordinates_parameter::clear_has_z() {
  2448. _has_bits_[0] &= ~0x00000008u;
  2449. }
  2450. inline void Catcher_coordinates_parameter::clear_z() {
  2451. z_ = 0;
  2452. clear_has_z();
  2453. }
  2454. inline ::google::protobuf::int32 Catcher_coordinates_parameter::z() const {
  2455. // @@protoc_insertion_point(field_get:Dispatch_proto.Catcher_coordinates_parameter.z)
  2456. return z_;
  2457. }
  2458. inline void Catcher_coordinates_parameter::set_z(::google::protobuf::int32 value) {
  2459. set_has_z();
  2460. z_ = value;
  2461. // @@protoc_insertion_point(field_set:Dispatch_proto.Catcher_coordinates_parameter.z)
  2462. }
  2463. // -------------------------------------------------------------------
  2464. // Carrier_box_parameter
  2465. // optional int32 x_min = 1 [default = -1000000];
  2466. inline bool Carrier_box_parameter::has_x_min() const {
  2467. return (_has_bits_[0] & 0x00000001u) != 0;
  2468. }
  2469. inline void Carrier_box_parameter::set_has_x_min() {
  2470. _has_bits_[0] |= 0x00000001u;
  2471. }
  2472. inline void Carrier_box_parameter::clear_has_x_min() {
  2473. _has_bits_[0] &= ~0x00000001u;
  2474. }
  2475. inline void Carrier_box_parameter::clear_x_min() {
  2476. x_min_ = -1000000;
  2477. clear_has_x_min();
  2478. }
  2479. inline ::google::protobuf::int32 Carrier_box_parameter::x_min() const {
  2480. // @@protoc_insertion_point(field_get:Dispatch_proto.Carrier_box_parameter.x_min)
  2481. return x_min_;
  2482. }
  2483. inline void Carrier_box_parameter::set_x_min(::google::protobuf::int32 value) {
  2484. set_has_x_min();
  2485. x_min_ = value;
  2486. // @@protoc_insertion_point(field_set:Dispatch_proto.Carrier_box_parameter.x_min)
  2487. }
  2488. // optional int32 x_max = 2 [default = 1000000];
  2489. inline bool Carrier_box_parameter::has_x_max() const {
  2490. return (_has_bits_[0] & 0x00000002u) != 0;
  2491. }
  2492. inline void Carrier_box_parameter::set_has_x_max() {
  2493. _has_bits_[0] |= 0x00000002u;
  2494. }
  2495. inline void Carrier_box_parameter::clear_has_x_max() {
  2496. _has_bits_[0] &= ~0x00000002u;
  2497. }
  2498. inline void Carrier_box_parameter::clear_x_max() {
  2499. x_max_ = 1000000;
  2500. clear_has_x_max();
  2501. }
  2502. inline ::google::protobuf::int32 Carrier_box_parameter::x_max() const {
  2503. // @@protoc_insertion_point(field_get:Dispatch_proto.Carrier_box_parameter.x_max)
  2504. return x_max_;
  2505. }
  2506. inline void Carrier_box_parameter::set_x_max(::google::protobuf::int32 value) {
  2507. set_has_x_max();
  2508. x_max_ = value;
  2509. // @@protoc_insertion_point(field_set:Dispatch_proto.Carrier_box_parameter.x_max)
  2510. }
  2511. // optional int32 y_min = 3 [default = -1000000];
  2512. inline bool Carrier_box_parameter::has_y_min() const {
  2513. return (_has_bits_[0] & 0x00000004u) != 0;
  2514. }
  2515. inline void Carrier_box_parameter::set_has_y_min() {
  2516. _has_bits_[0] |= 0x00000004u;
  2517. }
  2518. inline void Carrier_box_parameter::clear_has_y_min() {
  2519. _has_bits_[0] &= ~0x00000004u;
  2520. }
  2521. inline void Carrier_box_parameter::clear_y_min() {
  2522. y_min_ = -1000000;
  2523. clear_has_y_min();
  2524. }
  2525. inline ::google::protobuf::int32 Carrier_box_parameter::y_min() const {
  2526. // @@protoc_insertion_point(field_get:Dispatch_proto.Carrier_box_parameter.y_min)
  2527. return y_min_;
  2528. }
  2529. inline void Carrier_box_parameter::set_y_min(::google::protobuf::int32 value) {
  2530. set_has_y_min();
  2531. y_min_ = value;
  2532. // @@protoc_insertion_point(field_set:Dispatch_proto.Carrier_box_parameter.y_min)
  2533. }
  2534. // optional int32 y_max = 4 [default = 1000000];
  2535. inline bool Carrier_box_parameter::has_y_max() const {
  2536. return (_has_bits_[0] & 0x00000008u) != 0;
  2537. }
  2538. inline void Carrier_box_parameter::set_has_y_max() {
  2539. _has_bits_[0] |= 0x00000008u;
  2540. }
  2541. inline void Carrier_box_parameter::clear_has_y_max() {
  2542. _has_bits_[0] &= ~0x00000008u;
  2543. }
  2544. inline void Carrier_box_parameter::clear_y_max() {
  2545. y_max_ = 1000000;
  2546. clear_has_y_max();
  2547. }
  2548. inline ::google::protobuf::int32 Carrier_box_parameter::y_max() const {
  2549. // @@protoc_insertion_point(field_get:Dispatch_proto.Carrier_box_parameter.y_max)
  2550. return y_max_;
  2551. }
  2552. inline void Carrier_box_parameter::set_y_max(::google::protobuf::int32 value) {
  2553. set_has_y_max();
  2554. y_max_ = value;
  2555. // @@protoc_insertion_point(field_set:Dispatch_proto.Carrier_box_parameter.y_max)
  2556. }
  2557. // optional int32 z_min = 5 [default = -1000000];
  2558. inline bool Carrier_box_parameter::has_z_min() const {
  2559. return (_has_bits_[0] & 0x00000010u) != 0;
  2560. }
  2561. inline void Carrier_box_parameter::set_has_z_min() {
  2562. _has_bits_[0] |= 0x00000010u;
  2563. }
  2564. inline void Carrier_box_parameter::clear_has_z_min() {
  2565. _has_bits_[0] &= ~0x00000010u;
  2566. }
  2567. inline void Carrier_box_parameter::clear_z_min() {
  2568. z_min_ = -1000000;
  2569. clear_has_z_min();
  2570. }
  2571. inline ::google::protobuf::int32 Carrier_box_parameter::z_min() const {
  2572. // @@protoc_insertion_point(field_get:Dispatch_proto.Carrier_box_parameter.z_min)
  2573. return z_min_;
  2574. }
  2575. inline void Carrier_box_parameter::set_z_min(::google::protobuf::int32 value) {
  2576. set_has_z_min();
  2577. z_min_ = value;
  2578. // @@protoc_insertion_point(field_set:Dispatch_proto.Carrier_box_parameter.z_min)
  2579. }
  2580. // optional int32 z_max = 6 [default = 1000000];
  2581. inline bool Carrier_box_parameter::has_z_max() const {
  2582. return (_has_bits_[0] & 0x00000020u) != 0;
  2583. }
  2584. inline void Carrier_box_parameter::set_has_z_max() {
  2585. _has_bits_[0] |= 0x00000020u;
  2586. }
  2587. inline void Carrier_box_parameter::clear_has_z_max() {
  2588. _has_bits_[0] &= ~0x00000020u;
  2589. }
  2590. inline void Carrier_box_parameter::clear_z_max() {
  2591. z_max_ = 1000000;
  2592. clear_has_z_max();
  2593. }
  2594. inline ::google::protobuf::int32 Carrier_box_parameter::z_max() const {
  2595. // @@protoc_insertion_point(field_get:Dispatch_proto.Carrier_box_parameter.z_max)
  2596. return z_max_;
  2597. }
  2598. inline void Carrier_box_parameter::set_z_max(::google::protobuf::int32 value) {
  2599. set_has_z_max();
  2600. z_max_ = value;
  2601. // @@protoc_insertion_point(field_set:Dispatch_proto.Carrier_box_parameter.z_max)
  2602. }
  2603. // -------------------------------------------------------------------
  2604. // Catcher_box_parameter
  2605. // optional int32 x_min = 1 [default = -1000000];
  2606. inline bool Catcher_box_parameter::has_x_min() const {
  2607. return (_has_bits_[0] & 0x00000001u) != 0;
  2608. }
  2609. inline void Catcher_box_parameter::set_has_x_min() {
  2610. _has_bits_[0] |= 0x00000001u;
  2611. }
  2612. inline void Catcher_box_parameter::clear_has_x_min() {
  2613. _has_bits_[0] &= ~0x00000001u;
  2614. }
  2615. inline void Catcher_box_parameter::clear_x_min() {
  2616. x_min_ = -1000000;
  2617. clear_has_x_min();
  2618. }
  2619. inline ::google::protobuf::int32 Catcher_box_parameter::x_min() const {
  2620. // @@protoc_insertion_point(field_get:Dispatch_proto.Catcher_box_parameter.x_min)
  2621. return x_min_;
  2622. }
  2623. inline void Catcher_box_parameter::set_x_min(::google::protobuf::int32 value) {
  2624. set_has_x_min();
  2625. x_min_ = value;
  2626. // @@protoc_insertion_point(field_set:Dispatch_proto.Catcher_box_parameter.x_min)
  2627. }
  2628. // optional int32 x_max = 2 [default = 1000000];
  2629. inline bool Catcher_box_parameter::has_x_max() const {
  2630. return (_has_bits_[0] & 0x00000002u) != 0;
  2631. }
  2632. inline void Catcher_box_parameter::set_has_x_max() {
  2633. _has_bits_[0] |= 0x00000002u;
  2634. }
  2635. inline void Catcher_box_parameter::clear_has_x_max() {
  2636. _has_bits_[0] &= ~0x00000002u;
  2637. }
  2638. inline void Catcher_box_parameter::clear_x_max() {
  2639. x_max_ = 1000000;
  2640. clear_has_x_max();
  2641. }
  2642. inline ::google::protobuf::int32 Catcher_box_parameter::x_max() const {
  2643. // @@protoc_insertion_point(field_get:Dispatch_proto.Catcher_box_parameter.x_max)
  2644. return x_max_;
  2645. }
  2646. inline void Catcher_box_parameter::set_x_max(::google::protobuf::int32 value) {
  2647. set_has_x_max();
  2648. x_max_ = value;
  2649. // @@protoc_insertion_point(field_set:Dispatch_proto.Catcher_box_parameter.x_max)
  2650. }
  2651. // optional int32 y_min = 3 [default = -1000000];
  2652. inline bool Catcher_box_parameter::has_y_min() const {
  2653. return (_has_bits_[0] & 0x00000004u) != 0;
  2654. }
  2655. inline void Catcher_box_parameter::set_has_y_min() {
  2656. _has_bits_[0] |= 0x00000004u;
  2657. }
  2658. inline void Catcher_box_parameter::clear_has_y_min() {
  2659. _has_bits_[0] &= ~0x00000004u;
  2660. }
  2661. inline void Catcher_box_parameter::clear_y_min() {
  2662. y_min_ = -1000000;
  2663. clear_has_y_min();
  2664. }
  2665. inline ::google::protobuf::int32 Catcher_box_parameter::y_min() const {
  2666. // @@protoc_insertion_point(field_get:Dispatch_proto.Catcher_box_parameter.y_min)
  2667. return y_min_;
  2668. }
  2669. inline void Catcher_box_parameter::set_y_min(::google::protobuf::int32 value) {
  2670. set_has_y_min();
  2671. y_min_ = value;
  2672. // @@protoc_insertion_point(field_set:Dispatch_proto.Catcher_box_parameter.y_min)
  2673. }
  2674. // optional int32 y_max = 4 [default = 1000000];
  2675. inline bool Catcher_box_parameter::has_y_max() const {
  2676. return (_has_bits_[0] & 0x00000008u) != 0;
  2677. }
  2678. inline void Catcher_box_parameter::set_has_y_max() {
  2679. _has_bits_[0] |= 0x00000008u;
  2680. }
  2681. inline void Catcher_box_parameter::clear_has_y_max() {
  2682. _has_bits_[0] &= ~0x00000008u;
  2683. }
  2684. inline void Catcher_box_parameter::clear_y_max() {
  2685. y_max_ = 1000000;
  2686. clear_has_y_max();
  2687. }
  2688. inline ::google::protobuf::int32 Catcher_box_parameter::y_max() const {
  2689. // @@protoc_insertion_point(field_get:Dispatch_proto.Catcher_box_parameter.y_max)
  2690. return y_max_;
  2691. }
  2692. inline void Catcher_box_parameter::set_y_max(::google::protobuf::int32 value) {
  2693. set_has_y_max();
  2694. y_max_ = value;
  2695. // @@protoc_insertion_point(field_set:Dispatch_proto.Catcher_box_parameter.y_max)
  2696. }
  2697. // optional int32 z_min = 5 [default = -1000000];
  2698. inline bool Catcher_box_parameter::has_z_min() const {
  2699. return (_has_bits_[0] & 0x00000010u) != 0;
  2700. }
  2701. inline void Catcher_box_parameter::set_has_z_min() {
  2702. _has_bits_[0] |= 0x00000010u;
  2703. }
  2704. inline void Catcher_box_parameter::clear_has_z_min() {
  2705. _has_bits_[0] &= ~0x00000010u;
  2706. }
  2707. inline void Catcher_box_parameter::clear_z_min() {
  2708. z_min_ = -1000000;
  2709. clear_has_z_min();
  2710. }
  2711. inline ::google::protobuf::int32 Catcher_box_parameter::z_min() const {
  2712. // @@protoc_insertion_point(field_get:Dispatch_proto.Catcher_box_parameter.z_min)
  2713. return z_min_;
  2714. }
  2715. inline void Catcher_box_parameter::set_z_min(::google::protobuf::int32 value) {
  2716. set_has_z_min();
  2717. z_min_ = value;
  2718. // @@protoc_insertion_point(field_set:Dispatch_proto.Catcher_box_parameter.z_min)
  2719. }
  2720. // optional int32 z_max = 6 [default = 1000000];
  2721. inline bool Catcher_box_parameter::has_z_max() const {
  2722. return (_has_bits_[0] & 0x00000020u) != 0;
  2723. }
  2724. inline void Catcher_box_parameter::set_has_z_max() {
  2725. _has_bits_[0] |= 0x00000020u;
  2726. }
  2727. inline void Catcher_box_parameter::clear_has_z_max() {
  2728. _has_bits_[0] &= ~0x00000020u;
  2729. }
  2730. inline void Catcher_box_parameter::clear_z_max() {
  2731. z_max_ = 1000000;
  2732. clear_has_z_max();
  2733. }
  2734. inline ::google::protobuf::int32 Catcher_box_parameter::z_max() const {
  2735. // @@protoc_insertion_point(field_get:Dispatch_proto.Catcher_box_parameter.z_max)
  2736. return z_max_;
  2737. }
  2738. inline void Catcher_box_parameter::set_z_max(::google::protobuf::int32 value) {
  2739. set_has_z_max();
  2740. z_max_ = value;
  2741. // @@protoc_insertion_point(field_set:Dispatch_proto.Catcher_box_parameter.z_max)
  2742. }
  2743. // -------------------------------------------------------------------
  2744. // Axis_range_parameter
  2745. // optional int32 min = 1 [default = -1000000];
  2746. inline bool Axis_range_parameter::has_min() const {
  2747. return (_has_bits_[0] & 0x00000001u) != 0;
  2748. }
  2749. inline void Axis_range_parameter::set_has_min() {
  2750. _has_bits_[0] |= 0x00000001u;
  2751. }
  2752. inline void Axis_range_parameter::clear_has_min() {
  2753. _has_bits_[0] &= ~0x00000001u;
  2754. }
  2755. inline void Axis_range_parameter::clear_min() {
  2756. min_ = -1000000;
  2757. clear_has_min();
  2758. }
  2759. inline ::google::protobuf::int32 Axis_range_parameter::min() const {
  2760. // @@protoc_insertion_point(field_get:Dispatch_proto.Axis_range_parameter.min)
  2761. return min_;
  2762. }
  2763. inline void Axis_range_parameter::set_min(::google::protobuf::int32 value) {
  2764. set_has_min();
  2765. min_ = value;
  2766. // @@protoc_insertion_point(field_set:Dispatch_proto.Axis_range_parameter.min)
  2767. }
  2768. // optional int32 max = 2 [default = 1000000];
  2769. inline bool Axis_range_parameter::has_max() const {
  2770. return (_has_bits_[0] & 0x00000002u) != 0;
  2771. }
  2772. inline void Axis_range_parameter::set_has_max() {
  2773. _has_bits_[0] |= 0x00000002u;
  2774. }
  2775. inline void Axis_range_parameter::clear_has_max() {
  2776. _has_bits_[0] &= ~0x00000002u;
  2777. }
  2778. inline void Axis_range_parameter::clear_max() {
  2779. max_ = 1000000;
  2780. clear_has_max();
  2781. }
  2782. inline ::google::protobuf::int32 Axis_range_parameter::max() const {
  2783. // @@protoc_insertion_point(field_get:Dispatch_proto.Axis_range_parameter.max)
  2784. return max_;
  2785. }
  2786. inline void Axis_range_parameter::set_max(::google::protobuf::int32 value) {
  2787. set_has_max();
  2788. max_ = value;
  2789. // @@protoc_insertion_point(field_set:Dispatch_proto.Axis_range_parameter.max)
  2790. }
  2791. // -------------------------------------------------------------------
  2792. // Dispatch_coordinates_parameter_all
  2793. // repeated .Dispatch_proto.Packspace_coordinates_parameter packspace_coordinates_parameters = 1;
  2794. inline int Dispatch_coordinates_parameter_all::packspace_coordinates_parameters_size() const {
  2795. return packspace_coordinates_parameters_.size();
  2796. }
  2797. inline void Dispatch_coordinates_parameter_all::clear_packspace_coordinates_parameters() {
  2798. packspace_coordinates_parameters_.Clear();
  2799. }
  2800. inline const ::Dispatch_proto::Packspace_coordinates_parameter& Dispatch_coordinates_parameter_all::packspace_coordinates_parameters(int index) const {
  2801. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.packspace_coordinates_parameters)
  2802. return packspace_coordinates_parameters_.Get(index);
  2803. }
  2804. inline ::Dispatch_proto::Packspace_coordinates_parameter* Dispatch_coordinates_parameter_all::mutable_packspace_coordinates_parameters(int index) {
  2805. // @@protoc_insertion_point(field_mutable:Dispatch_proto.Dispatch_coordinates_parameter_all.packspace_coordinates_parameters)
  2806. return packspace_coordinates_parameters_.Mutable(index);
  2807. }
  2808. inline ::Dispatch_proto::Packspace_coordinates_parameter* Dispatch_coordinates_parameter_all::add_packspace_coordinates_parameters() {
  2809. // @@protoc_insertion_point(field_add:Dispatch_proto.Dispatch_coordinates_parameter_all.packspace_coordinates_parameters)
  2810. return packspace_coordinates_parameters_.Add();
  2811. }
  2812. inline ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Packspace_coordinates_parameter >*
  2813. Dispatch_coordinates_parameter_all::mutable_packspace_coordinates_parameters() {
  2814. // @@protoc_insertion_point(field_mutable_list:Dispatch_proto.Dispatch_coordinates_parameter_all.packspace_coordinates_parameters)
  2815. return &packspace_coordinates_parameters_;
  2816. }
  2817. inline const ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Packspace_coordinates_parameter >&
  2818. Dispatch_coordinates_parameter_all::packspace_coordinates_parameters() const {
  2819. // @@protoc_insertion_point(field_list:Dispatch_proto.Dispatch_coordinates_parameter_all.packspace_coordinates_parameters)
  2820. return packspace_coordinates_parameters_;
  2821. }
  2822. // repeated .Dispatch_proto.Passageway_coordinates_parameter passageway_coordinates_parameters = 2;
  2823. inline int Dispatch_coordinates_parameter_all::passageway_coordinates_parameters_size() const {
  2824. return passageway_coordinates_parameters_.size();
  2825. }
  2826. inline void Dispatch_coordinates_parameter_all::clear_passageway_coordinates_parameters() {
  2827. passageway_coordinates_parameters_.Clear();
  2828. }
  2829. inline const ::Dispatch_proto::Passageway_coordinates_parameter& Dispatch_coordinates_parameter_all::passageway_coordinates_parameters(int index) const {
  2830. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_coordinates_parameters)
  2831. return passageway_coordinates_parameters_.Get(index);
  2832. }
  2833. inline ::Dispatch_proto::Passageway_coordinates_parameter* Dispatch_coordinates_parameter_all::mutable_passageway_coordinates_parameters(int index) {
  2834. // @@protoc_insertion_point(field_mutable:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_coordinates_parameters)
  2835. return passageway_coordinates_parameters_.Mutable(index);
  2836. }
  2837. inline ::Dispatch_proto::Passageway_coordinates_parameter* Dispatch_coordinates_parameter_all::add_passageway_coordinates_parameters() {
  2838. // @@protoc_insertion_point(field_add:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_coordinates_parameters)
  2839. return passageway_coordinates_parameters_.Add();
  2840. }
  2841. inline ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Passageway_coordinates_parameter >*
  2842. Dispatch_coordinates_parameter_all::mutable_passageway_coordinates_parameters() {
  2843. // @@protoc_insertion_point(field_mutable_list:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_coordinates_parameters)
  2844. return &passageway_coordinates_parameters_;
  2845. }
  2846. inline const ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Passageway_coordinates_parameter >&
  2847. Dispatch_coordinates_parameter_all::passageway_coordinates_parameters() const {
  2848. // @@protoc_insertion_point(field_list:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_coordinates_parameters)
  2849. return passageway_coordinates_parameters_;
  2850. }
  2851. // repeated .Dispatch_proto.Carrier_coordinates_parameter carrier_coordinates_parameters = 3;
  2852. inline int Dispatch_coordinates_parameter_all::carrier_coordinates_parameters_size() const {
  2853. return carrier_coordinates_parameters_.size();
  2854. }
  2855. inline void Dispatch_coordinates_parameter_all::clear_carrier_coordinates_parameters() {
  2856. carrier_coordinates_parameters_.Clear();
  2857. }
  2858. inline const ::Dispatch_proto::Carrier_coordinates_parameter& Dispatch_coordinates_parameter_all::carrier_coordinates_parameters(int index) const {
  2859. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_coordinates_parameters)
  2860. return carrier_coordinates_parameters_.Get(index);
  2861. }
  2862. inline ::Dispatch_proto::Carrier_coordinates_parameter* Dispatch_coordinates_parameter_all::mutable_carrier_coordinates_parameters(int index) {
  2863. // @@protoc_insertion_point(field_mutable:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_coordinates_parameters)
  2864. return carrier_coordinates_parameters_.Mutable(index);
  2865. }
  2866. inline ::Dispatch_proto::Carrier_coordinates_parameter* Dispatch_coordinates_parameter_all::add_carrier_coordinates_parameters() {
  2867. // @@protoc_insertion_point(field_add:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_coordinates_parameters)
  2868. return carrier_coordinates_parameters_.Add();
  2869. }
  2870. inline ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Carrier_coordinates_parameter >*
  2871. Dispatch_coordinates_parameter_all::mutable_carrier_coordinates_parameters() {
  2872. // @@protoc_insertion_point(field_mutable_list:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_coordinates_parameters)
  2873. return &carrier_coordinates_parameters_;
  2874. }
  2875. inline const ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Carrier_coordinates_parameter >&
  2876. Dispatch_coordinates_parameter_all::carrier_coordinates_parameters() const {
  2877. // @@protoc_insertion_point(field_list:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_coordinates_parameters)
  2878. return carrier_coordinates_parameters_;
  2879. }
  2880. // repeated .Dispatch_proto.Catcher_coordinates_parameter catcher_coordinates_parameters = 4;
  2881. inline int Dispatch_coordinates_parameter_all::catcher_coordinates_parameters_size() const {
  2882. return catcher_coordinates_parameters_.size();
  2883. }
  2884. inline void Dispatch_coordinates_parameter_all::clear_catcher_coordinates_parameters() {
  2885. catcher_coordinates_parameters_.Clear();
  2886. }
  2887. inline const ::Dispatch_proto::Catcher_coordinates_parameter& Dispatch_coordinates_parameter_all::catcher_coordinates_parameters(int index) const {
  2888. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_coordinates_parameters)
  2889. return catcher_coordinates_parameters_.Get(index);
  2890. }
  2891. inline ::Dispatch_proto::Catcher_coordinates_parameter* Dispatch_coordinates_parameter_all::mutable_catcher_coordinates_parameters(int index) {
  2892. // @@protoc_insertion_point(field_mutable:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_coordinates_parameters)
  2893. return catcher_coordinates_parameters_.Mutable(index);
  2894. }
  2895. inline ::Dispatch_proto::Catcher_coordinates_parameter* Dispatch_coordinates_parameter_all::add_catcher_coordinates_parameters() {
  2896. // @@protoc_insertion_point(field_add:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_coordinates_parameters)
  2897. return catcher_coordinates_parameters_.Add();
  2898. }
  2899. inline ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Catcher_coordinates_parameter >*
  2900. Dispatch_coordinates_parameter_all::mutable_catcher_coordinates_parameters() {
  2901. // @@protoc_insertion_point(field_mutable_list:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_coordinates_parameters)
  2902. return &catcher_coordinates_parameters_;
  2903. }
  2904. inline const ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Catcher_coordinates_parameter >&
  2905. Dispatch_coordinates_parameter_all::catcher_coordinates_parameters() const {
  2906. // @@protoc_insertion_point(field_list:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_coordinates_parameters)
  2907. return catcher_coordinates_parameters_;
  2908. }
  2909. // optional .Dispatch_proto.Carrier_box_parameter carrier_box_parameters = 5;
  2910. inline bool Dispatch_coordinates_parameter_all::has_carrier_box_parameters() const {
  2911. return (_has_bits_[0] & 0x00000001u) != 0;
  2912. }
  2913. inline void Dispatch_coordinates_parameter_all::set_has_carrier_box_parameters() {
  2914. _has_bits_[0] |= 0x00000001u;
  2915. }
  2916. inline void Dispatch_coordinates_parameter_all::clear_has_carrier_box_parameters() {
  2917. _has_bits_[0] &= ~0x00000001u;
  2918. }
  2919. inline void Dispatch_coordinates_parameter_all::clear_carrier_box_parameters() {
  2920. if (carrier_box_parameters_ != NULL) carrier_box_parameters_->Clear();
  2921. clear_has_carrier_box_parameters();
  2922. }
  2923. inline const ::Dispatch_proto::Carrier_box_parameter& Dispatch_coordinates_parameter_all::carrier_box_parameters() const {
  2924. const ::Dispatch_proto::Carrier_box_parameter* p = carrier_box_parameters_;
  2925. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_box_parameters)
  2926. return p != NULL ? *p : *reinterpret_cast<const ::Dispatch_proto::Carrier_box_parameter*>(
  2927. &::Dispatch_proto::_Carrier_box_parameter_default_instance_);
  2928. }
  2929. inline ::Dispatch_proto::Carrier_box_parameter* Dispatch_coordinates_parameter_all::release_carrier_box_parameters() {
  2930. // @@protoc_insertion_point(field_release:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_box_parameters)
  2931. clear_has_carrier_box_parameters();
  2932. ::Dispatch_proto::Carrier_box_parameter* temp = carrier_box_parameters_;
  2933. carrier_box_parameters_ = NULL;
  2934. return temp;
  2935. }
  2936. inline ::Dispatch_proto::Carrier_box_parameter* Dispatch_coordinates_parameter_all::mutable_carrier_box_parameters() {
  2937. set_has_carrier_box_parameters();
  2938. if (carrier_box_parameters_ == NULL) {
  2939. carrier_box_parameters_ = new ::Dispatch_proto::Carrier_box_parameter;
  2940. }
  2941. // @@protoc_insertion_point(field_mutable:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_box_parameters)
  2942. return carrier_box_parameters_;
  2943. }
  2944. inline void Dispatch_coordinates_parameter_all::set_allocated_carrier_box_parameters(::Dispatch_proto::Carrier_box_parameter* carrier_box_parameters) {
  2945. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  2946. if (message_arena == NULL) {
  2947. delete carrier_box_parameters_;
  2948. }
  2949. if (carrier_box_parameters) {
  2950. ::google::protobuf::Arena* submessage_arena = NULL;
  2951. if (message_arena != submessage_arena) {
  2952. carrier_box_parameters = ::google::protobuf::internal::GetOwnedMessage(
  2953. message_arena, carrier_box_parameters, submessage_arena);
  2954. }
  2955. set_has_carrier_box_parameters();
  2956. } else {
  2957. clear_has_carrier_box_parameters();
  2958. }
  2959. carrier_box_parameters_ = carrier_box_parameters;
  2960. // @@protoc_insertion_point(field_set_allocated:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_box_parameters)
  2961. }
  2962. // optional .Dispatch_proto.Catcher_box_parameter catcher_box_parameters = 6;
  2963. inline bool Dispatch_coordinates_parameter_all::has_catcher_box_parameters() const {
  2964. return (_has_bits_[0] & 0x00000002u) != 0;
  2965. }
  2966. inline void Dispatch_coordinates_parameter_all::set_has_catcher_box_parameters() {
  2967. _has_bits_[0] |= 0x00000002u;
  2968. }
  2969. inline void Dispatch_coordinates_parameter_all::clear_has_catcher_box_parameters() {
  2970. _has_bits_[0] &= ~0x00000002u;
  2971. }
  2972. inline void Dispatch_coordinates_parameter_all::clear_catcher_box_parameters() {
  2973. if (catcher_box_parameters_ != NULL) catcher_box_parameters_->Clear();
  2974. clear_has_catcher_box_parameters();
  2975. }
  2976. inline const ::Dispatch_proto::Catcher_box_parameter& Dispatch_coordinates_parameter_all::catcher_box_parameters() const {
  2977. const ::Dispatch_proto::Catcher_box_parameter* p = catcher_box_parameters_;
  2978. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_box_parameters)
  2979. return p != NULL ? *p : *reinterpret_cast<const ::Dispatch_proto::Catcher_box_parameter*>(
  2980. &::Dispatch_proto::_Catcher_box_parameter_default_instance_);
  2981. }
  2982. inline ::Dispatch_proto::Catcher_box_parameter* Dispatch_coordinates_parameter_all::release_catcher_box_parameters() {
  2983. // @@protoc_insertion_point(field_release:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_box_parameters)
  2984. clear_has_catcher_box_parameters();
  2985. ::Dispatch_proto::Catcher_box_parameter* temp = catcher_box_parameters_;
  2986. catcher_box_parameters_ = NULL;
  2987. return temp;
  2988. }
  2989. inline ::Dispatch_proto::Catcher_box_parameter* Dispatch_coordinates_parameter_all::mutable_catcher_box_parameters() {
  2990. set_has_catcher_box_parameters();
  2991. if (catcher_box_parameters_ == NULL) {
  2992. catcher_box_parameters_ = new ::Dispatch_proto::Catcher_box_parameter;
  2993. }
  2994. // @@protoc_insertion_point(field_mutable:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_box_parameters)
  2995. return catcher_box_parameters_;
  2996. }
  2997. inline void Dispatch_coordinates_parameter_all::set_allocated_catcher_box_parameters(::Dispatch_proto::Catcher_box_parameter* catcher_box_parameters) {
  2998. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  2999. if (message_arena == NULL) {
  3000. delete catcher_box_parameters_;
  3001. }
  3002. if (catcher_box_parameters) {
  3003. ::google::protobuf::Arena* submessage_arena = NULL;
  3004. if (message_arena != submessage_arena) {
  3005. catcher_box_parameters = ::google::protobuf::internal::GetOwnedMessage(
  3006. message_arena, catcher_box_parameters, submessage_arena);
  3007. }
  3008. set_has_catcher_box_parameters();
  3009. } else {
  3010. clear_has_catcher_box_parameters();
  3011. }
  3012. catcher_box_parameters_ = catcher_box_parameters;
  3013. // @@protoc_insertion_point(field_set_allocated:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_box_parameters)
  3014. }
  3015. // optional int32 catcher_b_min = 7;
  3016. inline bool Dispatch_coordinates_parameter_all::has_catcher_b_min() const {
  3017. return (_has_bits_[0] & 0x00000004u) != 0;
  3018. }
  3019. inline void Dispatch_coordinates_parameter_all::set_has_catcher_b_min() {
  3020. _has_bits_[0] |= 0x00000004u;
  3021. }
  3022. inline void Dispatch_coordinates_parameter_all::clear_has_catcher_b_min() {
  3023. _has_bits_[0] &= ~0x00000004u;
  3024. }
  3025. inline void Dispatch_coordinates_parameter_all::clear_catcher_b_min() {
  3026. catcher_b_min_ = 0;
  3027. clear_has_catcher_b_min();
  3028. }
  3029. inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::catcher_b_min() const {
  3030. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_b_min)
  3031. return catcher_b_min_;
  3032. }
  3033. inline void Dispatch_coordinates_parameter_all::set_catcher_b_min(::google::protobuf::int32 value) {
  3034. set_has_catcher_b_min();
  3035. catcher_b_min_ = value;
  3036. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_b_min)
  3037. }
  3038. // optional int32 catcher_b_max = 8;
  3039. inline bool Dispatch_coordinates_parameter_all::has_catcher_b_max() const {
  3040. return (_has_bits_[0] & 0x00000008u) != 0;
  3041. }
  3042. inline void Dispatch_coordinates_parameter_all::set_has_catcher_b_max() {
  3043. _has_bits_[0] |= 0x00000008u;
  3044. }
  3045. inline void Dispatch_coordinates_parameter_all::clear_has_catcher_b_max() {
  3046. _has_bits_[0] &= ~0x00000008u;
  3047. }
  3048. inline void Dispatch_coordinates_parameter_all::clear_catcher_b_max() {
  3049. catcher_b_max_ = 0;
  3050. clear_has_catcher_b_max();
  3051. }
  3052. inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::catcher_b_max() const {
  3053. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_b_max)
  3054. return catcher_b_max_;
  3055. }
  3056. inline void Dispatch_coordinates_parameter_all::set_catcher_b_max(::google::protobuf::int32 value) {
  3057. set_has_catcher_b_max();
  3058. catcher_b_max_ = value;
  3059. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_b_max)
  3060. }
  3061. // optional int32 catcher_d1_min = 9;
  3062. inline bool Dispatch_coordinates_parameter_all::has_catcher_d1_min() const {
  3063. return (_has_bits_[0] & 0x00000010u) != 0;
  3064. }
  3065. inline void Dispatch_coordinates_parameter_all::set_has_catcher_d1_min() {
  3066. _has_bits_[0] |= 0x00000010u;
  3067. }
  3068. inline void Dispatch_coordinates_parameter_all::clear_has_catcher_d1_min() {
  3069. _has_bits_[0] &= ~0x00000010u;
  3070. }
  3071. inline void Dispatch_coordinates_parameter_all::clear_catcher_d1_min() {
  3072. catcher_d1_min_ = 0;
  3073. clear_has_catcher_d1_min();
  3074. }
  3075. inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::catcher_d1_min() const {
  3076. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_d1_min)
  3077. return catcher_d1_min_;
  3078. }
  3079. inline void Dispatch_coordinates_parameter_all::set_catcher_d1_min(::google::protobuf::int32 value) {
  3080. set_has_catcher_d1_min();
  3081. catcher_d1_min_ = value;
  3082. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_d1_min)
  3083. }
  3084. // optional int32 catcher_d1_max = 10;
  3085. inline bool Dispatch_coordinates_parameter_all::has_catcher_d1_max() const {
  3086. return (_has_bits_[0] & 0x00000020u) != 0;
  3087. }
  3088. inline void Dispatch_coordinates_parameter_all::set_has_catcher_d1_max() {
  3089. _has_bits_[0] |= 0x00000020u;
  3090. }
  3091. inline void Dispatch_coordinates_parameter_all::clear_has_catcher_d1_max() {
  3092. _has_bits_[0] &= ~0x00000020u;
  3093. }
  3094. inline void Dispatch_coordinates_parameter_all::clear_catcher_d1_max() {
  3095. catcher_d1_max_ = 0;
  3096. clear_has_catcher_d1_max();
  3097. }
  3098. inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::catcher_d1_max() const {
  3099. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_d1_max)
  3100. return catcher_d1_max_;
  3101. }
  3102. inline void Dispatch_coordinates_parameter_all::set_catcher_d1_max(::google::protobuf::int32 value) {
  3103. set_has_catcher_d1_max();
  3104. catcher_d1_max_ = value;
  3105. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_d1_max)
  3106. }
  3107. // optional int32 catcher_d2_min = 11;
  3108. inline bool Dispatch_coordinates_parameter_all::has_catcher_d2_min() const {
  3109. return (_has_bits_[0] & 0x00000040u) != 0;
  3110. }
  3111. inline void Dispatch_coordinates_parameter_all::set_has_catcher_d2_min() {
  3112. _has_bits_[0] |= 0x00000040u;
  3113. }
  3114. inline void Dispatch_coordinates_parameter_all::clear_has_catcher_d2_min() {
  3115. _has_bits_[0] &= ~0x00000040u;
  3116. }
  3117. inline void Dispatch_coordinates_parameter_all::clear_catcher_d2_min() {
  3118. catcher_d2_min_ = 0;
  3119. clear_has_catcher_d2_min();
  3120. }
  3121. inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::catcher_d2_min() const {
  3122. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_d2_min)
  3123. return catcher_d2_min_;
  3124. }
  3125. inline void Dispatch_coordinates_parameter_all::set_catcher_d2_min(::google::protobuf::int32 value) {
  3126. set_has_catcher_d2_min();
  3127. catcher_d2_min_ = value;
  3128. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_d2_min)
  3129. }
  3130. // optional int32 catcher_d2_max = 12;
  3131. inline bool Dispatch_coordinates_parameter_all::has_catcher_d2_max() const {
  3132. return (_has_bits_[0] & 0x00000080u) != 0;
  3133. }
  3134. inline void Dispatch_coordinates_parameter_all::set_has_catcher_d2_max() {
  3135. _has_bits_[0] |= 0x00000080u;
  3136. }
  3137. inline void Dispatch_coordinates_parameter_all::clear_has_catcher_d2_max() {
  3138. _has_bits_[0] &= ~0x00000080u;
  3139. }
  3140. inline void Dispatch_coordinates_parameter_all::clear_catcher_d2_max() {
  3141. catcher_d2_max_ = 0;
  3142. clear_has_catcher_d2_max();
  3143. }
  3144. inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::catcher_d2_max() const {
  3145. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_d2_max)
  3146. return catcher_d2_max_;
  3147. }
  3148. inline void Dispatch_coordinates_parameter_all::set_catcher_d2_max(::google::protobuf::int32 value) {
  3149. set_has_catcher_d2_max();
  3150. catcher_d2_max_ = value;
  3151. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_d2_max)
  3152. }
  3153. // optional int32 default_wheelbase = 13;
  3154. inline bool Dispatch_coordinates_parameter_all::has_default_wheelbase() const {
  3155. return (_has_bits_[0] & 0x00000100u) != 0;
  3156. }
  3157. inline void Dispatch_coordinates_parameter_all::set_has_default_wheelbase() {
  3158. _has_bits_[0] |= 0x00000100u;
  3159. }
  3160. inline void Dispatch_coordinates_parameter_all::clear_has_default_wheelbase() {
  3161. _has_bits_[0] &= ~0x00000100u;
  3162. }
  3163. inline void Dispatch_coordinates_parameter_all::clear_default_wheelbase() {
  3164. default_wheelbase_ = 0;
  3165. clear_has_default_wheelbase();
  3166. }
  3167. inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::default_wheelbase() const {
  3168. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.default_wheelbase)
  3169. return default_wheelbase_;
  3170. }
  3171. inline void Dispatch_coordinates_parameter_all::set_default_wheelbase(::google::protobuf::int32 value) {
  3172. set_has_default_wheelbase();
  3173. default_wheelbase_ = value;
  3174. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.default_wheelbase)
  3175. }
  3176. // optional int32 catcher_1th_floor_z = 14;
  3177. inline bool Dispatch_coordinates_parameter_all::has_catcher_1th_floor_z() const {
  3178. return (_has_bits_[0] & 0x00000200u) != 0;
  3179. }
  3180. inline void Dispatch_coordinates_parameter_all::set_has_catcher_1th_floor_z() {
  3181. _has_bits_[0] |= 0x00000200u;
  3182. }
  3183. inline void Dispatch_coordinates_parameter_all::clear_has_catcher_1th_floor_z() {
  3184. _has_bits_[0] &= ~0x00000200u;
  3185. }
  3186. inline void Dispatch_coordinates_parameter_all::clear_catcher_1th_floor_z() {
  3187. catcher_1th_floor_z_ = 0;
  3188. clear_has_catcher_1th_floor_z();
  3189. }
  3190. inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::catcher_1th_floor_z() const {
  3191. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_1th_floor_z)
  3192. return catcher_1th_floor_z_;
  3193. }
  3194. inline void Dispatch_coordinates_parameter_all::set_catcher_1th_floor_z(::google::protobuf::int32 value) {
  3195. set_has_catcher_1th_floor_z();
  3196. catcher_1th_floor_z_ = value;
  3197. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_1th_floor_z)
  3198. }
  3199. // optional int32 catcher_2th_floor_z = 15;
  3200. inline bool Dispatch_coordinates_parameter_all::has_catcher_2th_floor_z() const {
  3201. return (_has_bits_[0] & 0x00000400u) != 0;
  3202. }
  3203. inline void Dispatch_coordinates_parameter_all::set_has_catcher_2th_floor_z() {
  3204. _has_bits_[0] |= 0x00000400u;
  3205. }
  3206. inline void Dispatch_coordinates_parameter_all::clear_has_catcher_2th_floor_z() {
  3207. _has_bits_[0] &= ~0x00000400u;
  3208. }
  3209. inline void Dispatch_coordinates_parameter_all::clear_catcher_2th_floor_z() {
  3210. catcher_2th_floor_z_ = 0;
  3211. clear_has_catcher_2th_floor_z();
  3212. }
  3213. inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::catcher_2th_floor_z() const {
  3214. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_2th_floor_z)
  3215. return catcher_2th_floor_z_;
  3216. }
  3217. inline void Dispatch_coordinates_parameter_all::set_catcher_2th_floor_z(::google::protobuf::int32 value) {
  3218. set_has_catcher_2th_floor_z();
  3219. catcher_2th_floor_z_ = value;
  3220. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_2th_floor_z)
  3221. }
  3222. // optional int32 catcher_3th_floor_z = 16;
  3223. inline bool Dispatch_coordinates_parameter_all::has_catcher_3th_floor_z() const {
  3224. return (_has_bits_[0] & 0x00000800u) != 0;
  3225. }
  3226. inline void Dispatch_coordinates_parameter_all::set_has_catcher_3th_floor_z() {
  3227. _has_bits_[0] |= 0x00000800u;
  3228. }
  3229. inline void Dispatch_coordinates_parameter_all::clear_has_catcher_3th_floor_z() {
  3230. _has_bits_[0] &= ~0x00000800u;
  3231. }
  3232. inline void Dispatch_coordinates_parameter_all::clear_catcher_3th_floor_z() {
  3233. catcher_3th_floor_z_ = 0;
  3234. clear_has_catcher_3th_floor_z();
  3235. }
  3236. inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::catcher_3th_floor_z() const {
  3237. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_3th_floor_z)
  3238. return catcher_3th_floor_z_;
  3239. }
  3240. inline void Dispatch_coordinates_parameter_all::set_catcher_3th_floor_z(::google::protobuf::int32 value) {
  3241. set_has_catcher_3th_floor_z();
  3242. catcher_3th_floor_z_ = value;
  3243. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_3th_floor_z)
  3244. }
  3245. // optional int32 catcher_4th_floor_z = 17;
  3246. inline bool Dispatch_coordinates_parameter_all::has_catcher_4th_floor_z() const {
  3247. return (_has_bits_[0] & 0x00001000u) != 0;
  3248. }
  3249. inline void Dispatch_coordinates_parameter_all::set_has_catcher_4th_floor_z() {
  3250. _has_bits_[0] |= 0x00001000u;
  3251. }
  3252. inline void Dispatch_coordinates_parameter_all::clear_has_catcher_4th_floor_z() {
  3253. _has_bits_[0] &= ~0x00001000u;
  3254. }
  3255. inline void Dispatch_coordinates_parameter_all::clear_catcher_4th_floor_z() {
  3256. catcher_4th_floor_z_ = 0;
  3257. clear_has_catcher_4th_floor_z();
  3258. }
  3259. inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::catcher_4th_floor_z() const {
  3260. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_4th_floor_z)
  3261. return catcher_4th_floor_z_;
  3262. }
  3263. inline void Dispatch_coordinates_parameter_all::set_catcher_4th_floor_z(::google::protobuf::int32 value) {
  3264. set_has_catcher_4th_floor_z();
  3265. catcher_4th_floor_z_ = value;
  3266. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_4th_floor_z)
  3267. }
  3268. // optional int32 carrier_1th_floor_z = 18;
  3269. inline bool Dispatch_coordinates_parameter_all::has_carrier_1th_floor_z() const {
  3270. return (_has_bits_[0] & 0x00002000u) != 0;
  3271. }
  3272. inline void Dispatch_coordinates_parameter_all::set_has_carrier_1th_floor_z() {
  3273. _has_bits_[0] |= 0x00002000u;
  3274. }
  3275. inline void Dispatch_coordinates_parameter_all::clear_has_carrier_1th_floor_z() {
  3276. _has_bits_[0] &= ~0x00002000u;
  3277. }
  3278. inline void Dispatch_coordinates_parameter_all::clear_carrier_1th_floor_z() {
  3279. carrier_1th_floor_z_ = 0;
  3280. clear_has_carrier_1th_floor_z();
  3281. }
  3282. inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::carrier_1th_floor_z() const {
  3283. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_1th_floor_z)
  3284. return carrier_1th_floor_z_;
  3285. }
  3286. inline void Dispatch_coordinates_parameter_all::set_carrier_1th_floor_z(::google::protobuf::int32 value) {
  3287. set_has_carrier_1th_floor_z();
  3288. carrier_1th_floor_z_ = value;
  3289. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_1th_floor_z)
  3290. }
  3291. // optional int32 carrier_2th_floor_z = 19;
  3292. inline bool Dispatch_coordinates_parameter_all::has_carrier_2th_floor_z() const {
  3293. return (_has_bits_[0] & 0x00004000u) != 0;
  3294. }
  3295. inline void Dispatch_coordinates_parameter_all::set_has_carrier_2th_floor_z() {
  3296. _has_bits_[0] |= 0x00004000u;
  3297. }
  3298. inline void Dispatch_coordinates_parameter_all::clear_has_carrier_2th_floor_z() {
  3299. _has_bits_[0] &= ~0x00004000u;
  3300. }
  3301. inline void Dispatch_coordinates_parameter_all::clear_carrier_2th_floor_z() {
  3302. carrier_2th_floor_z_ = 0;
  3303. clear_has_carrier_2th_floor_z();
  3304. }
  3305. inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::carrier_2th_floor_z() const {
  3306. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_2th_floor_z)
  3307. return carrier_2th_floor_z_;
  3308. }
  3309. inline void Dispatch_coordinates_parameter_all::set_carrier_2th_floor_z(::google::protobuf::int32 value) {
  3310. set_has_carrier_2th_floor_z();
  3311. carrier_2th_floor_z_ = value;
  3312. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_2th_floor_z)
  3313. }
  3314. // optional int32 carrier_3th_floor_z = 20;
  3315. inline bool Dispatch_coordinates_parameter_all::has_carrier_3th_floor_z() const {
  3316. return (_has_bits_[0] & 0x00008000u) != 0;
  3317. }
  3318. inline void Dispatch_coordinates_parameter_all::set_has_carrier_3th_floor_z() {
  3319. _has_bits_[0] |= 0x00008000u;
  3320. }
  3321. inline void Dispatch_coordinates_parameter_all::clear_has_carrier_3th_floor_z() {
  3322. _has_bits_[0] &= ~0x00008000u;
  3323. }
  3324. inline void Dispatch_coordinates_parameter_all::clear_carrier_3th_floor_z() {
  3325. carrier_3th_floor_z_ = 0;
  3326. clear_has_carrier_3th_floor_z();
  3327. }
  3328. inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::carrier_3th_floor_z() const {
  3329. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_3th_floor_z)
  3330. return carrier_3th_floor_z_;
  3331. }
  3332. inline void Dispatch_coordinates_parameter_all::set_carrier_3th_floor_z(::google::protobuf::int32 value) {
  3333. set_has_carrier_3th_floor_z();
  3334. carrier_3th_floor_z_ = value;
  3335. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_3th_floor_z)
  3336. }
  3337. // optional int32 carrier_4th_floor_z = 21;
  3338. inline bool Dispatch_coordinates_parameter_all::has_carrier_4th_floor_z() const {
  3339. return (_has_bits_[0] & 0x00010000u) != 0;
  3340. }
  3341. inline void Dispatch_coordinates_parameter_all::set_has_carrier_4th_floor_z() {
  3342. _has_bits_[0] |= 0x00010000u;
  3343. }
  3344. inline void Dispatch_coordinates_parameter_all::clear_has_carrier_4th_floor_z() {
  3345. _has_bits_[0] &= ~0x00010000u;
  3346. }
  3347. inline void Dispatch_coordinates_parameter_all::clear_carrier_4th_floor_z() {
  3348. carrier_4th_floor_z_ = 0;
  3349. clear_has_carrier_4th_floor_z();
  3350. }
  3351. inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::carrier_4th_floor_z() const {
  3352. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_4th_floor_z)
  3353. return carrier_4th_floor_z_;
  3354. }
  3355. inline void Dispatch_coordinates_parameter_all::set_carrier_4th_floor_z(::google::protobuf::int32 value) {
  3356. set_has_carrier_4th_floor_z();
  3357. carrier_4th_floor_z_ = value;
  3358. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_4th_floor_z)
  3359. }
  3360. // optional int32 catcher_d1_d2_distance = 22;
  3361. inline bool Dispatch_coordinates_parameter_all::has_catcher_d1_d2_distance() const {
  3362. return (_has_bits_[0] & 0x00020000u) != 0;
  3363. }
  3364. inline void Dispatch_coordinates_parameter_all::set_has_catcher_d1_d2_distance() {
  3365. _has_bits_[0] |= 0x00020000u;
  3366. }
  3367. inline void Dispatch_coordinates_parameter_all::clear_has_catcher_d1_d2_distance() {
  3368. _has_bits_[0] &= ~0x00020000u;
  3369. }
  3370. inline void Dispatch_coordinates_parameter_all::clear_catcher_d1_d2_distance() {
  3371. catcher_d1_d2_distance_ = 0;
  3372. clear_has_catcher_d1_d2_distance();
  3373. }
  3374. inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::catcher_d1_d2_distance() const {
  3375. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_d1_d2_distance)
  3376. return catcher_d1_d2_distance_;
  3377. }
  3378. inline void Dispatch_coordinates_parameter_all::set_catcher_d1_d2_distance(::google::protobuf::int32 value) {
  3379. set_has_catcher_d1_d2_distance();
  3380. catcher_d1_d2_distance_ = value;
  3381. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_d1_d2_distance)
  3382. }
  3383. // optional int32 catcher_wheel_base_limit = 23;
  3384. inline bool Dispatch_coordinates_parameter_all::has_catcher_wheel_base_limit() const {
  3385. return (_has_bits_[0] & 0x00040000u) != 0;
  3386. }
  3387. inline void Dispatch_coordinates_parameter_all::set_has_catcher_wheel_base_limit() {
  3388. _has_bits_[0] |= 0x00040000u;
  3389. }
  3390. inline void Dispatch_coordinates_parameter_all::clear_has_catcher_wheel_base_limit() {
  3391. _has_bits_[0] &= ~0x00040000u;
  3392. }
  3393. inline void Dispatch_coordinates_parameter_all::clear_catcher_wheel_base_limit() {
  3394. catcher_wheel_base_limit_ = 0;
  3395. clear_has_catcher_wheel_base_limit();
  3396. }
  3397. inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::catcher_wheel_base_limit() const {
  3398. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_wheel_base_limit)
  3399. return catcher_wheel_base_limit_;
  3400. }
  3401. inline void Dispatch_coordinates_parameter_all::set_catcher_wheel_base_limit(::google::protobuf::int32 value) {
  3402. set_has_catcher_wheel_base_limit();
  3403. catcher_wheel_base_limit_ = value;
  3404. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_wheel_base_limit)
  3405. }
  3406. // optional int32 carrier_y_y1_distance = 24;
  3407. inline bool Dispatch_coordinates_parameter_all::has_carrier_y_y1_distance() const {
  3408. return (_has_bits_[0] & 0x00080000u) != 0;
  3409. }
  3410. inline void Dispatch_coordinates_parameter_all::set_has_carrier_y_y1_distance() {
  3411. _has_bits_[0] |= 0x00080000u;
  3412. }
  3413. inline void Dispatch_coordinates_parameter_all::clear_has_carrier_y_y1_distance() {
  3414. _has_bits_[0] &= ~0x00080000u;
  3415. }
  3416. inline void Dispatch_coordinates_parameter_all::clear_carrier_y_y1_distance() {
  3417. carrier_y_y1_distance_ = 0;
  3418. clear_has_carrier_y_y1_distance();
  3419. }
  3420. inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::carrier_y_y1_distance() const {
  3421. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_y_y1_distance)
  3422. return carrier_y_y1_distance_;
  3423. }
  3424. inline void Dispatch_coordinates_parameter_all::set_carrier_y_y1_distance(::google::protobuf::int32 value) {
  3425. set_has_carrier_y_y1_distance();
  3426. carrier_y_y1_distance_ = value;
  3427. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_y_y1_distance)
  3428. }
  3429. // optional int32 carrier_default_y1_back = 25;
  3430. inline bool Dispatch_coordinates_parameter_all::has_carrier_default_y1_back() const {
  3431. return (_has_bits_[0] & 0x00100000u) != 0;
  3432. }
  3433. inline void Dispatch_coordinates_parameter_all::set_has_carrier_default_y1_back() {
  3434. _has_bits_[0] |= 0x00100000u;
  3435. }
  3436. inline void Dispatch_coordinates_parameter_all::clear_has_carrier_default_y1_back() {
  3437. _has_bits_[0] &= ~0x00100000u;
  3438. }
  3439. inline void Dispatch_coordinates_parameter_all::clear_carrier_default_y1_back() {
  3440. carrier_default_y1_back_ = 0;
  3441. clear_has_carrier_default_y1_back();
  3442. }
  3443. inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::carrier_default_y1_back() const {
  3444. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_default_y1_back)
  3445. return carrier_default_y1_back_;
  3446. }
  3447. inline void Dispatch_coordinates_parameter_all::set_carrier_default_y1_back(::google::protobuf::int32 value) {
  3448. set_has_carrier_default_y1_back();
  3449. carrier_default_y1_back_ = value;
  3450. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_default_y1_back)
  3451. }
  3452. // optional int32 carrier_default_y1_leave = 26;
  3453. inline bool Dispatch_coordinates_parameter_all::has_carrier_default_y1_leave() const {
  3454. return (_has_bits_[0] & 0x00200000u) != 0;
  3455. }
  3456. inline void Dispatch_coordinates_parameter_all::set_has_carrier_default_y1_leave() {
  3457. _has_bits_[0] |= 0x00200000u;
  3458. }
  3459. inline void Dispatch_coordinates_parameter_all::clear_has_carrier_default_y1_leave() {
  3460. _has_bits_[0] &= ~0x00200000u;
  3461. }
  3462. inline void Dispatch_coordinates_parameter_all::clear_carrier_default_y1_leave() {
  3463. carrier_default_y1_leave_ = 0;
  3464. clear_has_carrier_default_y1_leave();
  3465. }
  3466. inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::carrier_default_y1_leave() const {
  3467. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_default_y1_leave)
  3468. return carrier_default_y1_leave_;
  3469. }
  3470. inline void Dispatch_coordinates_parameter_all::set_carrier_default_y1_leave(::google::protobuf::int32 value) {
  3471. set_has_carrier_default_y1_leave();
  3472. carrier_default_y1_leave_ = value;
  3473. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_default_y1_leave)
  3474. }
  3475. // optional int32 carrier_default_y_back = 27;
  3476. inline bool Dispatch_coordinates_parameter_all::has_carrier_default_y_back() const {
  3477. return (_has_bits_[0] & 0x00400000u) != 0;
  3478. }
  3479. inline void Dispatch_coordinates_parameter_all::set_has_carrier_default_y_back() {
  3480. _has_bits_[0] |= 0x00400000u;
  3481. }
  3482. inline void Dispatch_coordinates_parameter_all::clear_has_carrier_default_y_back() {
  3483. _has_bits_[0] &= ~0x00400000u;
  3484. }
  3485. inline void Dispatch_coordinates_parameter_all::clear_carrier_default_y_back() {
  3486. carrier_default_y_back_ = 0;
  3487. clear_has_carrier_default_y_back();
  3488. }
  3489. inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::carrier_default_y_back() const {
  3490. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_default_y_back)
  3491. return carrier_default_y_back_;
  3492. }
  3493. inline void Dispatch_coordinates_parameter_all::set_carrier_default_y_back(::google::protobuf::int32 value) {
  3494. set_has_carrier_default_y_back();
  3495. carrier_default_y_back_ = value;
  3496. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_default_y_back)
  3497. }
  3498. // optional int32 carrier_default_y_leave = 28;
  3499. inline bool Dispatch_coordinates_parameter_all::has_carrier_default_y_leave() const {
  3500. return (_has_bits_[0] & 0x00800000u) != 0;
  3501. }
  3502. inline void Dispatch_coordinates_parameter_all::set_has_carrier_default_y_leave() {
  3503. _has_bits_[0] |= 0x00800000u;
  3504. }
  3505. inline void Dispatch_coordinates_parameter_all::clear_has_carrier_default_y_leave() {
  3506. _has_bits_[0] &= ~0x00800000u;
  3507. }
  3508. inline void Dispatch_coordinates_parameter_all::clear_carrier_default_y_leave() {
  3509. carrier_default_y_leave_ = 0;
  3510. clear_has_carrier_default_y_leave();
  3511. }
  3512. inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::carrier_default_y_leave() const {
  3513. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_default_y_leave)
  3514. return carrier_default_y_leave_;
  3515. }
  3516. inline void Dispatch_coordinates_parameter_all::set_carrier_default_y_leave(::google::protobuf::int32 value) {
  3517. set_has_carrier_default_y_leave();
  3518. carrier_default_y_leave_ = value;
  3519. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_default_y_leave)
  3520. }
  3521. // optional int32 carrier_default_x_left = 29;
  3522. inline bool Dispatch_coordinates_parameter_all::has_carrier_default_x_left() const {
  3523. return (_has_bits_[0] & 0x01000000u) != 0;
  3524. }
  3525. inline void Dispatch_coordinates_parameter_all::set_has_carrier_default_x_left() {
  3526. _has_bits_[0] |= 0x01000000u;
  3527. }
  3528. inline void Dispatch_coordinates_parameter_all::clear_has_carrier_default_x_left() {
  3529. _has_bits_[0] &= ~0x01000000u;
  3530. }
  3531. inline void Dispatch_coordinates_parameter_all::clear_carrier_default_x_left() {
  3532. carrier_default_x_left_ = 0;
  3533. clear_has_carrier_default_x_left();
  3534. }
  3535. inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::carrier_default_x_left() const {
  3536. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_default_x_left)
  3537. return carrier_default_x_left_;
  3538. }
  3539. inline void Dispatch_coordinates_parameter_all::set_carrier_default_x_left(::google::protobuf::int32 value) {
  3540. set_has_carrier_default_x_left();
  3541. carrier_default_x_left_ = value;
  3542. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_default_x_left)
  3543. }
  3544. // optional int32 carrier_default_x_right = 30;
  3545. inline bool Dispatch_coordinates_parameter_all::has_carrier_default_x_right() const {
  3546. return (_has_bits_[0] & 0x02000000u) != 0;
  3547. }
  3548. inline void Dispatch_coordinates_parameter_all::set_has_carrier_default_x_right() {
  3549. _has_bits_[0] |= 0x02000000u;
  3550. }
  3551. inline void Dispatch_coordinates_parameter_all::clear_has_carrier_default_x_right() {
  3552. _has_bits_[0] &= ~0x02000000u;
  3553. }
  3554. inline void Dispatch_coordinates_parameter_all::clear_carrier_default_x_right() {
  3555. carrier_default_x_right_ = 0;
  3556. clear_has_carrier_default_x_right();
  3557. }
  3558. inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::carrier_default_x_right() const {
  3559. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_default_x_right)
  3560. return carrier_default_x_right_;
  3561. }
  3562. inline void Dispatch_coordinates_parameter_all::set_carrier_default_x_right(::google::protobuf::int32 value) {
  3563. set_has_carrier_default_x_right();
  3564. carrier_default_x_right_ = value;
  3565. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_default_x_right)
  3566. }
  3567. // optional int32 passageway_terminal_id_min = 31;
  3568. inline bool Dispatch_coordinates_parameter_all::has_passageway_terminal_id_min() const {
  3569. return (_has_bits_[0] & 0x04000000u) != 0;
  3570. }
  3571. inline void Dispatch_coordinates_parameter_all::set_has_passageway_terminal_id_min() {
  3572. _has_bits_[0] |= 0x04000000u;
  3573. }
  3574. inline void Dispatch_coordinates_parameter_all::clear_has_passageway_terminal_id_min() {
  3575. _has_bits_[0] &= ~0x04000000u;
  3576. }
  3577. inline void Dispatch_coordinates_parameter_all::clear_passageway_terminal_id_min() {
  3578. passageway_terminal_id_min_ = 0;
  3579. clear_has_passageway_terminal_id_min();
  3580. }
  3581. inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::passageway_terminal_id_min() const {
  3582. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_terminal_id_min)
  3583. return passageway_terminal_id_min_;
  3584. }
  3585. inline void Dispatch_coordinates_parameter_all::set_passageway_terminal_id_min(::google::protobuf::int32 value) {
  3586. set_has_passageway_terminal_id_min();
  3587. passageway_terminal_id_min_ = value;
  3588. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_terminal_id_min)
  3589. }
  3590. // optional int32 passageway_terminal_id_max = 32;
  3591. inline bool Dispatch_coordinates_parameter_all::has_passageway_terminal_id_max() const {
  3592. return (_has_bits_[0] & 0x08000000u) != 0;
  3593. }
  3594. inline void Dispatch_coordinates_parameter_all::set_has_passageway_terminal_id_max() {
  3595. _has_bits_[0] |= 0x08000000u;
  3596. }
  3597. inline void Dispatch_coordinates_parameter_all::clear_has_passageway_terminal_id_max() {
  3598. _has_bits_[0] &= ~0x08000000u;
  3599. }
  3600. inline void Dispatch_coordinates_parameter_all::clear_passageway_terminal_id_max() {
  3601. passageway_terminal_id_max_ = 0;
  3602. clear_has_passageway_terminal_id_max();
  3603. }
  3604. inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::passageway_terminal_id_max() const {
  3605. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_terminal_id_max)
  3606. return passageway_terminal_id_max_;
  3607. }
  3608. inline void Dispatch_coordinates_parameter_all::set_passageway_terminal_id_max(::google::protobuf::int32 value) {
  3609. set_has_passageway_terminal_id_max();
  3610. passageway_terminal_id_max_ = value;
  3611. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_terminal_id_max)
  3612. }
  3613. // optional int32 passageway_terminal_number = 33;
  3614. inline bool Dispatch_coordinates_parameter_all::has_passageway_terminal_number() const {
  3615. return (_has_bits_[0] & 0x10000000u) != 0;
  3616. }
  3617. inline void Dispatch_coordinates_parameter_all::set_has_passageway_terminal_number() {
  3618. _has_bits_[0] |= 0x10000000u;
  3619. }
  3620. inline void Dispatch_coordinates_parameter_all::clear_has_passageway_terminal_number() {
  3621. _has_bits_[0] &= ~0x10000000u;
  3622. }
  3623. inline void Dispatch_coordinates_parameter_all::clear_passageway_terminal_number() {
  3624. passageway_terminal_number_ = 0;
  3625. clear_has_passageway_terminal_number();
  3626. }
  3627. inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::passageway_terminal_number() const {
  3628. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_terminal_number)
  3629. return passageway_terminal_number_;
  3630. }
  3631. inline void Dispatch_coordinates_parameter_all::set_passageway_terminal_number(::google::protobuf::int32 value) {
  3632. set_has_passageway_terminal_number();
  3633. passageway_terminal_number_ = value;
  3634. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_terminal_number)
  3635. }
  3636. // repeated .Dispatch_proto.Passageway_functioning_pattern passageway_functioning_patterns = 34;
  3637. inline int Dispatch_coordinates_parameter_all::passageway_functioning_patterns_size() const {
  3638. return passageway_functioning_patterns_.size();
  3639. }
  3640. inline void Dispatch_coordinates_parameter_all::clear_passageway_functioning_patterns() {
  3641. passageway_functioning_patterns_.Clear();
  3642. }
  3643. inline ::Dispatch_proto::Passageway_functioning_pattern Dispatch_coordinates_parameter_all::passageway_functioning_patterns(int index) const {
  3644. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_functioning_patterns)
  3645. return static_cast< ::Dispatch_proto::Passageway_functioning_pattern >(passageway_functioning_patterns_.Get(index));
  3646. }
  3647. inline void Dispatch_coordinates_parameter_all::set_passageway_functioning_patterns(int index, ::Dispatch_proto::Passageway_functioning_pattern value) {
  3648. assert(::Dispatch_proto::Passageway_functioning_pattern_IsValid(value));
  3649. passageway_functioning_patterns_.Set(index, value);
  3650. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_functioning_patterns)
  3651. }
  3652. inline void Dispatch_coordinates_parameter_all::add_passageway_functioning_patterns(::Dispatch_proto::Passageway_functioning_pattern value) {
  3653. assert(::Dispatch_proto::Passageway_functioning_pattern_IsValid(value));
  3654. passageway_functioning_patterns_.Add(value);
  3655. // @@protoc_insertion_point(field_add:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_functioning_patterns)
  3656. }
  3657. inline const ::google::protobuf::RepeatedField<int>&
  3658. Dispatch_coordinates_parameter_all::passageway_functioning_patterns() const {
  3659. // @@protoc_insertion_point(field_list:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_functioning_patterns)
  3660. return passageway_functioning_patterns_;
  3661. }
  3662. inline ::google::protobuf::RepeatedField<int>*
  3663. Dispatch_coordinates_parameter_all::mutable_passageway_functioning_patterns() {
  3664. // @@protoc_insertion_point(field_mutable_list:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_functioning_patterns)
  3665. return &passageway_functioning_patterns_;
  3666. }
  3667. // optional int32 car_wheel_base_min = 35;
  3668. inline bool Dispatch_coordinates_parameter_all::has_car_wheel_base_min() const {
  3669. return (_has_bits_[0] & 0x20000000u) != 0;
  3670. }
  3671. inline void Dispatch_coordinates_parameter_all::set_has_car_wheel_base_min() {
  3672. _has_bits_[0] |= 0x20000000u;
  3673. }
  3674. inline void Dispatch_coordinates_parameter_all::clear_has_car_wheel_base_min() {
  3675. _has_bits_[0] &= ~0x20000000u;
  3676. }
  3677. inline void Dispatch_coordinates_parameter_all::clear_car_wheel_base_min() {
  3678. car_wheel_base_min_ = 0;
  3679. clear_has_car_wheel_base_min();
  3680. }
  3681. inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::car_wheel_base_min() const {
  3682. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.car_wheel_base_min)
  3683. return car_wheel_base_min_;
  3684. }
  3685. inline void Dispatch_coordinates_parameter_all::set_car_wheel_base_min(::google::protobuf::int32 value) {
  3686. set_has_car_wheel_base_min();
  3687. car_wheel_base_min_ = value;
  3688. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.car_wheel_base_min)
  3689. }
  3690. // optional int32 car_wheel_base_max = 36;
  3691. inline bool Dispatch_coordinates_parameter_all::has_car_wheel_base_max() const {
  3692. return (_has_bits_[0] & 0x40000000u) != 0;
  3693. }
  3694. inline void Dispatch_coordinates_parameter_all::set_has_car_wheel_base_max() {
  3695. _has_bits_[0] |= 0x40000000u;
  3696. }
  3697. inline void Dispatch_coordinates_parameter_all::clear_has_car_wheel_base_max() {
  3698. _has_bits_[0] &= ~0x40000000u;
  3699. }
  3700. inline void Dispatch_coordinates_parameter_all::clear_car_wheel_base_max() {
  3701. car_wheel_base_max_ = 0;
  3702. clear_has_car_wheel_base_max();
  3703. }
  3704. inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::car_wheel_base_max() const {
  3705. // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.car_wheel_base_max)
  3706. return car_wheel_base_max_;
  3707. }
  3708. inline void Dispatch_coordinates_parameter_all::set_car_wheel_base_max(::google::protobuf::int32 value) {
  3709. set_has_car_wheel_base_max();
  3710. car_wheel_base_max_ = value;
  3711. // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.car_wheel_base_max)
  3712. }
  3713. #ifdef __GNUC__
  3714. #pragma GCC diagnostic pop
  3715. #endif // __GNUC__
  3716. // -------------------------------------------------------------------
  3717. // -------------------------------------------------------------------
  3718. // -------------------------------------------------------------------
  3719. // -------------------------------------------------------------------
  3720. // -------------------------------------------------------------------
  3721. // -------------------------------------------------------------------
  3722. // -------------------------------------------------------------------
  3723. // -------------------------------------------------------------------
  3724. // -------------------------------------------------------------------
  3725. // -------------------------------------------------------------------
  3726. // -------------------------------------------------------------------
  3727. // @@protoc_insertion_point(namespace_scope)
  3728. } // namespace Dispatch_proto
  3729. namespace google {
  3730. namespace protobuf {
  3731. template <> struct is_proto_enum< ::Dispatch_proto::Passageway_functioning_pattern> : ::google::protobuf::internal::true_type {};
  3732. template <>
  3733. inline const EnumDescriptor* GetEnumDescriptor< ::Dispatch_proto::Passageway_functioning_pattern>() {
  3734. return ::Dispatch_proto::Passageway_functioning_pattern_descriptor();
  3735. }
  3736. } // namespace protobuf
  3737. } // namespace google
  3738. // @@protoc_insertion_point(global_scope)
  3739. #endif // PROTOBUF_dispatch_5fparameter_2eproto__INCLUDED