dispatch_parameter.pb.h 145 KB

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