123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134 |
- // Generated by the protocol buffer compiler. DO NOT EDIT!
- // source: dispatch_parameter.proto
- #ifndef PROTOBUF_dispatch_5fparameter_2eproto__INCLUDED
- #define PROTOBUF_dispatch_5fparameter_2eproto__INCLUDED
- #include <string>
- #include <google/protobuf/stubs/common.h>
- #if GOOGLE_PROTOBUF_VERSION < 3005000
- #error This file was generated by a newer version of protoc which is
- #error incompatible with your Protocol Buffer headers. Please update
- #error your headers.
- #endif
- #if 3005000 < GOOGLE_PROTOBUF_MIN_PROTOC_VERSION
- #error This file was generated by an older version of protoc which is
- #error incompatible with your Protocol Buffer headers. Please
- #error regenerate this file with a newer version of protoc.
- #endif
- #include <google/protobuf/io/coded_stream.h>
- #include <google/protobuf/arena.h>
- #include <google/protobuf/arenastring.h>
- #include <google/protobuf/generated_message_table_driven.h>
- #include <google/protobuf/generated_message_util.h>
- #include <google/protobuf/metadata.h>
- #include <google/protobuf/message.h>
- #include <google/protobuf/repeated_field.h> // IWYU pragma: export
- #include <google/protobuf/extension_set.h> // IWYU pragma: export
- #include <google/protobuf/generated_enum_reflection.h>
- #include <google/protobuf/unknown_field_set.h>
- // @@protoc_insertion_point(includes)
- namespace protobuf_dispatch_5fparameter_2eproto {
- // Internal implementation detail -- do not use these members.
- struct TableStruct {
- static const ::google::protobuf::internal::ParseTableField entries[];
- static const ::google::protobuf::internal::AuxillaryParseTableField aux[];
- static const ::google::protobuf::internal::ParseTable schema[12];
- static const ::google::protobuf::internal::FieldMetadata field_metadata[];
- static const ::google::protobuf::internal::SerializationTable serialization_table[];
- static const ::google::protobuf::uint32 offsets[];
- };
- void AddDescriptors();
- void InitDefaultsCatcher_parameterImpl();
- void InitDefaultsCatcher_parameter();
- void InitDefaultsCarrier_parameterImpl();
- void InitDefaultsCarrier_parameter();
- void InitDefaultsPassageway_parameterImpl();
- void InitDefaultsPassageway_parameter();
- void InitDefaultsLaser_parameter_allImpl();
- void InitDefaultsLaser_parameter_all();
- void InitDefaultsPackspace_coordinates_parameterImpl();
- void InitDefaultsPackspace_coordinates_parameter();
- void InitDefaultsPassageway_coordinates_parameterImpl();
- void InitDefaultsPassageway_coordinates_parameter();
- void InitDefaultsCarrier_coordinates_parameterImpl();
- void InitDefaultsCarrier_coordinates_parameter();
- void InitDefaultsCatcher_coordinates_parameterImpl();
- void InitDefaultsCatcher_coordinates_parameter();
- void InitDefaultsCarrier_box_parameterImpl();
- void InitDefaultsCarrier_box_parameter();
- void InitDefaultsCatcher_box_parameterImpl();
- void InitDefaultsCatcher_box_parameter();
- void InitDefaultsAxis_range_parameterImpl();
- void InitDefaultsAxis_range_parameter();
- void InitDefaultsDispatch_coordinates_parameter_allImpl();
- void InitDefaultsDispatch_coordinates_parameter_all();
- inline void InitDefaults() {
- InitDefaultsCatcher_parameter();
- InitDefaultsCarrier_parameter();
- InitDefaultsPassageway_parameter();
- InitDefaultsLaser_parameter_all();
- InitDefaultsPackspace_coordinates_parameter();
- InitDefaultsPassageway_coordinates_parameter();
- InitDefaultsCarrier_coordinates_parameter();
- InitDefaultsCatcher_coordinates_parameter();
- InitDefaultsCarrier_box_parameter();
- InitDefaultsCatcher_box_parameter();
- InitDefaultsAxis_range_parameter();
- InitDefaultsDispatch_coordinates_parameter_all();
- }
- } // namespace protobuf_dispatch_5fparameter_2eproto
- namespace Dispatch_proto {
- class Axis_range_parameter;
- class Axis_range_parameterDefaultTypeInternal;
- extern Axis_range_parameterDefaultTypeInternal _Axis_range_parameter_default_instance_;
- class Carrier_box_parameter;
- class Carrier_box_parameterDefaultTypeInternal;
- extern Carrier_box_parameterDefaultTypeInternal _Carrier_box_parameter_default_instance_;
- class Carrier_coordinates_parameter;
- class Carrier_coordinates_parameterDefaultTypeInternal;
- extern Carrier_coordinates_parameterDefaultTypeInternal _Carrier_coordinates_parameter_default_instance_;
- class Carrier_parameter;
- class Carrier_parameterDefaultTypeInternal;
- extern Carrier_parameterDefaultTypeInternal _Carrier_parameter_default_instance_;
- class Catcher_box_parameter;
- class Catcher_box_parameterDefaultTypeInternal;
- extern Catcher_box_parameterDefaultTypeInternal _Catcher_box_parameter_default_instance_;
- class Catcher_coordinates_parameter;
- class Catcher_coordinates_parameterDefaultTypeInternal;
- extern Catcher_coordinates_parameterDefaultTypeInternal _Catcher_coordinates_parameter_default_instance_;
- class Catcher_parameter;
- class Catcher_parameterDefaultTypeInternal;
- extern Catcher_parameterDefaultTypeInternal _Catcher_parameter_default_instance_;
- class Dispatch_coordinates_parameter_all;
- class Dispatch_coordinates_parameter_allDefaultTypeInternal;
- extern Dispatch_coordinates_parameter_allDefaultTypeInternal _Dispatch_coordinates_parameter_all_default_instance_;
- class Laser_parameter_all;
- class Laser_parameter_allDefaultTypeInternal;
- extern Laser_parameter_allDefaultTypeInternal _Laser_parameter_all_default_instance_;
- class Packspace_coordinates_parameter;
- class Packspace_coordinates_parameterDefaultTypeInternal;
- extern Packspace_coordinates_parameterDefaultTypeInternal _Packspace_coordinates_parameter_default_instance_;
- class Passageway_coordinates_parameter;
- class Passageway_coordinates_parameterDefaultTypeInternal;
- extern Passageway_coordinates_parameterDefaultTypeInternal _Passageway_coordinates_parameter_default_instance_;
- class Passageway_parameter;
- class Passageway_parameterDefaultTypeInternal;
- extern Passageway_parameterDefaultTypeInternal _Passageway_parameter_default_instance_;
- } // namespace Dispatch_proto
- namespace Dispatch_proto {
- enum Passageway_functioning_pattern {
- PASSAGEWAY_FUNCTIONING_PATTERN_UNKNOWN = 0,
- PASSAGEWAY_FUNCTIONING_PATTERN_INLET = 1,
- PASSAGEWAY_FUNCTIONING_PATTERN_OUTLET = 2,
- PASSAGEWAY_FUNCTIONING_PATTERN_BIDIRECTION = 3
- };
- bool Passageway_functioning_pattern_IsValid(int value);
- const Passageway_functioning_pattern Passageway_functioning_pattern_MIN = PASSAGEWAY_FUNCTIONING_PATTERN_UNKNOWN;
- const Passageway_functioning_pattern Passageway_functioning_pattern_MAX = PASSAGEWAY_FUNCTIONING_PATTERN_BIDIRECTION;
- const int Passageway_functioning_pattern_ARRAYSIZE = Passageway_functioning_pattern_MAX + 1;
- const ::google::protobuf::EnumDescriptor* Passageway_functioning_pattern_descriptor();
- inline const ::std::string& Passageway_functioning_pattern_Name(Passageway_functioning_pattern value) {
- return ::google::protobuf::internal::NameOfEnum(
- Passageway_functioning_pattern_descriptor(), value);
- }
- inline bool Passageway_functioning_pattern_Parse(
- const ::std::string& name, Passageway_functioning_pattern* value) {
- return ::google::protobuf::internal::ParseNamedEnum<Passageway_functioning_pattern>(
- Passageway_functioning_pattern_descriptor(), name, value);
- }
- // ===================================================================
- class Catcher_parameter : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Dispatch_proto.Catcher_parameter) */ {
- public:
- Catcher_parameter();
- virtual ~Catcher_parameter();
- Catcher_parameter(const Catcher_parameter& from);
- inline Catcher_parameter& operator=(const Catcher_parameter& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- Catcher_parameter(Catcher_parameter&& from) noexcept
- : Catcher_parameter() {
- *this = ::std::move(from);
- }
- inline Catcher_parameter& operator=(Catcher_parameter&& from) noexcept {
- if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
- if (this != &from) InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- #endif
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _internal_metadata_.unknown_fields();
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return _internal_metadata_.mutable_unknown_fields();
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const Catcher_parameter& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const Catcher_parameter* internal_default_instance() {
- return reinterpret_cast<const Catcher_parameter*>(
- &_Catcher_parameter_default_instance_);
- }
- static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
- 0;
- void Swap(Catcher_parameter* other);
- friend void swap(Catcher_parameter& a, Catcher_parameter& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline Catcher_parameter* New() const PROTOBUF_FINAL { return New(NULL); }
- Catcher_parameter* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
- void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void CopyFrom(const Catcher_parameter& from);
- void MergeFrom(const Catcher_parameter& from);
- void Clear() PROTOBUF_FINAL;
- bool IsInitialized() const PROTOBUF_FINAL;
- size_t ByteSizeLong() const PROTOBUF_FINAL;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
- ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
- int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const PROTOBUF_FINAL;
- void InternalSwap(Catcher_parameter* other);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return NULL;
- }
- inline void* MaybeArenaPtr() const {
- return NULL;
- }
- public:
- ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // required int32 id = 1;
- bool has_id() const;
- void clear_id();
- static const int kIdFieldNumber = 1;
- ::google::protobuf::int32 id() const;
- void set_id(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:Dispatch_proto.Catcher_parameter)
- private:
- void set_has_id();
- void clear_has_id();
- ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
- ::google::protobuf::internal::HasBits<1> _has_bits_;
- mutable int _cached_size_;
- ::google::protobuf::int32 id_;
- friend struct ::protobuf_dispatch_5fparameter_2eproto::TableStruct;
- friend void ::protobuf_dispatch_5fparameter_2eproto::InitDefaultsCatcher_parameterImpl();
- };
- // -------------------------------------------------------------------
- class Carrier_parameter : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Dispatch_proto.Carrier_parameter) */ {
- public:
- Carrier_parameter();
- virtual ~Carrier_parameter();
- Carrier_parameter(const Carrier_parameter& from);
- inline Carrier_parameter& operator=(const Carrier_parameter& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- Carrier_parameter(Carrier_parameter&& from) noexcept
- : Carrier_parameter() {
- *this = ::std::move(from);
- }
- inline Carrier_parameter& operator=(Carrier_parameter&& from) noexcept {
- if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
- if (this != &from) InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- #endif
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _internal_metadata_.unknown_fields();
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return _internal_metadata_.mutable_unknown_fields();
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const Carrier_parameter& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const Carrier_parameter* internal_default_instance() {
- return reinterpret_cast<const Carrier_parameter*>(
- &_Carrier_parameter_default_instance_);
- }
- static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
- 1;
- void Swap(Carrier_parameter* other);
- friend void swap(Carrier_parameter& a, Carrier_parameter& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline Carrier_parameter* New() const PROTOBUF_FINAL { return New(NULL); }
- Carrier_parameter* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
- void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void CopyFrom(const Carrier_parameter& from);
- void MergeFrom(const Carrier_parameter& from);
- void Clear() PROTOBUF_FINAL;
- bool IsInitialized() const PROTOBUF_FINAL;
- size_t ByteSizeLong() const PROTOBUF_FINAL;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
- ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
- int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const PROTOBUF_FINAL;
- void InternalSwap(Carrier_parameter* other);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return NULL;
- }
- inline void* MaybeArenaPtr() const {
- return NULL;
- }
- public:
- ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // required int32 id = 1;
- bool has_id() const;
- void clear_id();
- static const int kIdFieldNumber = 1;
- ::google::protobuf::int32 id() const;
- void set_id(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:Dispatch_proto.Carrier_parameter)
- private:
- void set_has_id();
- void clear_has_id();
- ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
- ::google::protobuf::internal::HasBits<1> _has_bits_;
- mutable int _cached_size_;
- ::google::protobuf::int32 id_;
- friend struct ::protobuf_dispatch_5fparameter_2eproto::TableStruct;
- friend void ::protobuf_dispatch_5fparameter_2eproto::InitDefaultsCarrier_parameterImpl();
- };
- // -------------------------------------------------------------------
- class Passageway_parameter : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Dispatch_proto.Passageway_parameter) */ {
- public:
- Passageway_parameter();
- virtual ~Passageway_parameter();
- Passageway_parameter(const Passageway_parameter& from);
- inline Passageway_parameter& operator=(const Passageway_parameter& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- Passageway_parameter(Passageway_parameter&& from) noexcept
- : Passageway_parameter() {
- *this = ::std::move(from);
- }
- inline Passageway_parameter& operator=(Passageway_parameter&& from) noexcept {
- if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
- if (this != &from) InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- #endif
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _internal_metadata_.unknown_fields();
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return _internal_metadata_.mutable_unknown_fields();
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const Passageway_parameter& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const Passageway_parameter* internal_default_instance() {
- return reinterpret_cast<const Passageway_parameter*>(
- &_Passageway_parameter_default_instance_);
- }
- static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
- 2;
- void Swap(Passageway_parameter* other);
- friend void swap(Passageway_parameter& a, Passageway_parameter& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline Passageway_parameter* New() const PROTOBUF_FINAL { return New(NULL); }
- Passageway_parameter* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
- void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void CopyFrom(const Passageway_parameter& from);
- void MergeFrom(const Passageway_parameter& from);
- void Clear() PROTOBUF_FINAL;
- bool IsInitialized() const PROTOBUF_FINAL;
- size_t ByteSizeLong() const PROTOBUF_FINAL;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
- ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
- int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const PROTOBUF_FINAL;
- void InternalSwap(Passageway_parameter* other);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return NULL;
- }
- inline void* MaybeArenaPtr() const {
- return NULL;
- }
- public:
- ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // required int32 id = 1;
- bool has_id() const;
- void clear_id();
- static const int kIdFieldNumber = 1;
- ::google::protobuf::int32 id() const;
- void set_id(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:Dispatch_proto.Passageway_parameter)
- private:
- void set_has_id();
- void clear_has_id();
- ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
- ::google::protobuf::internal::HasBits<1> _has_bits_;
- mutable int _cached_size_;
- ::google::protobuf::int32 id_;
- friend struct ::protobuf_dispatch_5fparameter_2eproto::TableStruct;
- friend void ::protobuf_dispatch_5fparameter_2eproto::InitDefaultsPassageway_parameterImpl();
- };
- // -------------------------------------------------------------------
- class Laser_parameter_all : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Dispatch_proto.Laser_parameter_all) */ {
- public:
- Laser_parameter_all();
- virtual ~Laser_parameter_all();
- Laser_parameter_all(const Laser_parameter_all& from);
- inline Laser_parameter_all& operator=(const Laser_parameter_all& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- Laser_parameter_all(Laser_parameter_all&& from) noexcept
- : Laser_parameter_all() {
- *this = ::std::move(from);
- }
- inline Laser_parameter_all& operator=(Laser_parameter_all&& from) noexcept {
- if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
- if (this != &from) InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- #endif
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _internal_metadata_.unknown_fields();
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return _internal_metadata_.mutable_unknown_fields();
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const Laser_parameter_all& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const Laser_parameter_all* internal_default_instance() {
- return reinterpret_cast<const Laser_parameter_all*>(
- &_Laser_parameter_all_default_instance_);
- }
- static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
- 3;
- void Swap(Laser_parameter_all* other);
- friend void swap(Laser_parameter_all& a, Laser_parameter_all& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline Laser_parameter_all* New() const PROTOBUF_FINAL { return New(NULL); }
- Laser_parameter_all* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
- void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void CopyFrom(const Laser_parameter_all& from);
- void MergeFrom(const Laser_parameter_all& from);
- void Clear() PROTOBUF_FINAL;
- bool IsInitialized() const PROTOBUF_FINAL;
- size_t ByteSizeLong() const PROTOBUF_FINAL;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
- ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
- int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const PROTOBUF_FINAL;
- void InternalSwap(Laser_parameter_all* other);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return NULL;
- }
- inline void* MaybeArenaPtr() const {
- return NULL;
- }
- public:
- ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // repeated .Dispatch_proto.Catcher_parameter catcher_parameters = 2;
- int catcher_parameters_size() const;
- void clear_catcher_parameters();
- static const int kCatcherParametersFieldNumber = 2;
- const ::Dispatch_proto::Catcher_parameter& catcher_parameters(int index) const;
- ::Dispatch_proto::Catcher_parameter* mutable_catcher_parameters(int index);
- ::Dispatch_proto::Catcher_parameter* add_catcher_parameters();
- ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Catcher_parameter >*
- mutable_catcher_parameters();
- const ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Catcher_parameter >&
- catcher_parameters() const;
- // repeated .Dispatch_proto.Carrier_parameter carrier_parameters = 4;
- int carrier_parameters_size() const;
- void clear_carrier_parameters();
- static const int kCarrierParametersFieldNumber = 4;
- const ::Dispatch_proto::Carrier_parameter& carrier_parameters(int index) const;
- ::Dispatch_proto::Carrier_parameter* mutable_carrier_parameters(int index);
- ::Dispatch_proto::Carrier_parameter* add_carrier_parameters();
- ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Carrier_parameter >*
- mutable_carrier_parameters();
- const ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Carrier_parameter >&
- carrier_parameters() const;
- // repeated .Dispatch_proto.Passageway_parameter passageway_parameters = 6;
- int passageway_parameters_size() const;
- void clear_passageway_parameters();
- static const int kPassagewayParametersFieldNumber = 6;
- const ::Dispatch_proto::Passageway_parameter& passageway_parameters(int index) const;
- ::Dispatch_proto::Passageway_parameter* mutable_passageway_parameters(int index);
- ::Dispatch_proto::Passageway_parameter* add_passageway_parameters();
- ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Passageway_parameter >*
- mutable_passageway_parameters();
- const ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Passageway_parameter >&
- passageway_parameters() const;
- // required int32 catcher_size = 1;
- bool has_catcher_size() const;
- void clear_catcher_size();
- static const int kCatcherSizeFieldNumber = 1;
- ::google::protobuf::int32 catcher_size() const;
- void set_catcher_size(::google::protobuf::int32 value);
- // required int32 carrier_size = 3;
- bool has_carrier_size() const;
- void clear_carrier_size();
- static const int kCarrierSizeFieldNumber = 3;
- ::google::protobuf::int32 carrier_size() const;
- void set_carrier_size(::google::protobuf::int32 value);
- // required int32 passageway_size = 5;
- bool has_passageway_size() const;
- void clear_passageway_size();
- static const int kPassagewaySizeFieldNumber = 5;
- ::google::protobuf::int32 passageway_size() const;
- void set_passageway_size(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:Dispatch_proto.Laser_parameter_all)
- private:
- void set_has_catcher_size();
- void clear_has_catcher_size();
- void set_has_carrier_size();
- void clear_has_carrier_size();
- void set_has_passageway_size();
- void clear_has_passageway_size();
- // helper for ByteSizeLong()
- size_t RequiredFieldsByteSizeFallback() const;
- ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
- ::google::protobuf::internal::HasBits<1> _has_bits_;
- mutable int _cached_size_;
- ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Catcher_parameter > catcher_parameters_;
- ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Carrier_parameter > carrier_parameters_;
- ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Passageway_parameter > passageway_parameters_;
- ::google::protobuf::int32 catcher_size_;
- ::google::protobuf::int32 carrier_size_;
- ::google::protobuf::int32 passageway_size_;
- friend struct ::protobuf_dispatch_5fparameter_2eproto::TableStruct;
- friend void ::protobuf_dispatch_5fparameter_2eproto::InitDefaultsLaser_parameter_allImpl();
- };
- // -------------------------------------------------------------------
- class Packspace_coordinates_parameter : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Dispatch_proto.Packspace_coordinates_parameter) */ {
- public:
- Packspace_coordinates_parameter();
- virtual ~Packspace_coordinates_parameter();
- Packspace_coordinates_parameter(const Packspace_coordinates_parameter& from);
- inline Packspace_coordinates_parameter& operator=(const Packspace_coordinates_parameter& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- Packspace_coordinates_parameter(Packspace_coordinates_parameter&& from) noexcept
- : Packspace_coordinates_parameter() {
- *this = ::std::move(from);
- }
- inline Packspace_coordinates_parameter& operator=(Packspace_coordinates_parameter&& from) noexcept {
- if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
- if (this != &from) InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- #endif
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _internal_metadata_.unknown_fields();
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return _internal_metadata_.mutable_unknown_fields();
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const Packspace_coordinates_parameter& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const Packspace_coordinates_parameter* internal_default_instance() {
- return reinterpret_cast<const Packspace_coordinates_parameter*>(
- &_Packspace_coordinates_parameter_default_instance_);
- }
- static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
- 4;
- void Swap(Packspace_coordinates_parameter* other);
- friend void swap(Packspace_coordinates_parameter& a, Packspace_coordinates_parameter& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline Packspace_coordinates_parameter* New() const PROTOBUF_FINAL { return New(NULL); }
- Packspace_coordinates_parameter* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
- void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void CopyFrom(const Packspace_coordinates_parameter& from);
- void MergeFrom(const Packspace_coordinates_parameter& from);
- void Clear() PROTOBUF_FINAL;
- bool IsInitialized() const PROTOBUF_FINAL;
- size_t ByteSizeLong() const PROTOBUF_FINAL;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
- ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
- int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const PROTOBUF_FINAL;
- void InternalSwap(Packspace_coordinates_parameter* other);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return NULL;
- }
- inline void* MaybeArenaPtr() const {
- return NULL;
- }
- public:
- ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional int32 id = 1 [default = 0];
- bool has_id() const;
- void clear_id();
- static const int kIdFieldNumber = 1;
- ::google::protobuf::int32 id() const;
- void set_id(::google::protobuf::int32 value);
- // optional int32 x = 2 [default = 0];
- bool has_x() const;
- void clear_x();
- static const int kXFieldNumber = 2;
- ::google::protobuf::int32 x() const;
- void set_x(::google::protobuf::int32 value);
- // optional int32 y = 3 [default = 0];
- bool has_y() const;
- void clear_y();
- static const int kYFieldNumber = 3;
- ::google::protobuf::int32 y() const;
- void set_y(::google::protobuf::int32 value);
- // optional int32 z = 4 [default = 0];
- bool has_z() const;
- void clear_z();
- static const int kZFieldNumber = 4;
- ::google::protobuf::int32 z() const;
- void set_z(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:Dispatch_proto.Packspace_coordinates_parameter)
- private:
- void set_has_id();
- void clear_has_id();
- void set_has_x();
- void clear_has_x();
- void set_has_y();
- void clear_has_y();
- void set_has_z();
- void clear_has_z();
- ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
- ::google::protobuf::internal::HasBits<1> _has_bits_;
- mutable int _cached_size_;
- ::google::protobuf::int32 id_;
- ::google::protobuf::int32 x_;
- ::google::protobuf::int32 y_;
- ::google::protobuf::int32 z_;
- friend struct ::protobuf_dispatch_5fparameter_2eproto::TableStruct;
- friend void ::protobuf_dispatch_5fparameter_2eproto::InitDefaultsPackspace_coordinates_parameterImpl();
- };
- // -------------------------------------------------------------------
- class Passageway_coordinates_parameter : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Dispatch_proto.Passageway_coordinates_parameter) */ {
- public:
- Passageway_coordinates_parameter();
- virtual ~Passageway_coordinates_parameter();
- Passageway_coordinates_parameter(const Passageway_coordinates_parameter& from);
- inline Passageway_coordinates_parameter& operator=(const Passageway_coordinates_parameter& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- Passageway_coordinates_parameter(Passageway_coordinates_parameter&& from) noexcept
- : Passageway_coordinates_parameter() {
- *this = ::std::move(from);
- }
- inline Passageway_coordinates_parameter& operator=(Passageway_coordinates_parameter&& from) noexcept {
- if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
- if (this != &from) InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- #endif
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _internal_metadata_.unknown_fields();
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return _internal_metadata_.mutable_unknown_fields();
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const Passageway_coordinates_parameter& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const Passageway_coordinates_parameter* internal_default_instance() {
- return reinterpret_cast<const Passageway_coordinates_parameter*>(
- &_Passageway_coordinates_parameter_default_instance_);
- }
- static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
- 5;
- void Swap(Passageway_coordinates_parameter* other);
- friend void swap(Passageway_coordinates_parameter& a, Passageway_coordinates_parameter& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline Passageway_coordinates_parameter* New() const PROTOBUF_FINAL { return New(NULL); }
- Passageway_coordinates_parameter* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
- void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void CopyFrom(const Passageway_coordinates_parameter& from);
- void MergeFrom(const Passageway_coordinates_parameter& from);
- void Clear() PROTOBUF_FINAL;
- bool IsInitialized() const PROTOBUF_FINAL;
- size_t ByteSizeLong() const PROTOBUF_FINAL;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
- ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
- int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const PROTOBUF_FINAL;
- void InternalSwap(Passageway_coordinates_parameter* other);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return NULL;
- }
- inline void* MaybeArenaPtr() const {
- return NULL;
- }
- public:
- ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional int32 id = 1 [default = 0];
- bool has_id() const;
- void clear_id();
- static const int kIdFieldNumber = 1;
- ::google::protobuf::int32 id() const;
- void set_id(::google::protobuf::int32 value);
- // optional int32 x = 2 [default = 0];
- bool has_x() const;
- void clear_x();
- static const int kXFieldNumber = 2;
- ::google::protobuf::int32 x() const;
- void set_x(::google::protobuf::int32 value);
- // optional int32 y = 3 [default = 0];
- bool has_y() const;
- void clear_y();
- static const int kYFieldNumber = 3;
- ::google::protobuf::int32 y() const;
- void set_y(::google::protobuf::int32 value);
- // optional int32 z = 4 [default = 0];
- bool has_z() const;
- void clear_z();
- static const int kZFieldNumber = 4;
- ::google::protobuf::int32 z() const;
- void set_z(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:Dispatch_proto.Passageway_coordinates_parameter)
- private:
- void set_has_id();
- void clear_has_id();
- void set_has_x();
- void clear_has_x();
- void set_has_y();
- void clear_has_y();
- void set_has_z();
- void clear_has_z();
- ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
- ::google::protobuf::internal::HasBits<1> _has_bits_;
- mutable int _cached_size_;
- ::google::protobuf::int32 id_;
- ::google::protobuf::int32 x_;
- ::google::protobuf::int32 y_;
- ::google::protobuf::int32 z_;
- friend struct ::protobuf_dispatch_5fparameter_2eproto::TableStruct;
- friend void ::protobuf_dispatch_5fparameter_2eproto::InitDefaultsPassageway_coordinates_parameterImpl();
- };
- // -------------------------------------------------------------------
- class Carrier_coordinates_parameter : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Dispatch_proto.Carrier_coordinates_parameter) */ {
- public:
- Carrier_coordinates_parameter();
- virtual ~Carrier_coordinates_parameter();
- Carrier_coordinates_parameter(const Carrier_coordinates_parameter& from);
- inline Carrier_coordinates_parameter& operator=(const Carrier_coordinates_parameter& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- Carrier_coordinates_parameter(Carrier_coordinates_parameter&& from) noexcept
- : Carrier_coordinates_parameter() {
- *this = ::std::move(from);
- }
- inline Carrier_coordinates_parameter& operator=(Carrier_coordinates_parameter&& from) noexcept {
- if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
- if (this != &from) InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- #endif
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _internal_metadata_.unknown_fields();
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return _internal_metadata_.mutable_unknown_fields();
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const Carrier_coordinates_parameter& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const Carrier_coordinates_parameter* internal_default_instance() {
- return reinterpret_cast<const Carrier_coordinates_parameter*>(
- &_Carrier_coordinates_parameter_default_instance_);
- }
- static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
- 6;
- void Swap(Carrier_coordinates_parameter* other);
- friend void swap(Carrier_coordinates_parameter& a, Carrier_coordinates_parameter& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline Carrier_coordinates_parameter* New() const PROTOBUF_FINAL { return New(NULL); }
- Carrier_coordinates_parameter* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
- void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void CopyFrom(const Carrier_coordinates_parameter& from);
- void MergeFrom(const Carrier_coordinates_parameter& from);
- void Clear() PROTOBUF_FINAL;
- bool IsInitialized() const PROTOBUF_FINAL;
- size_t ByteSizeLong() const PROTOBUF_FINAL;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
- ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
- int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const PROTOBUF_FINAL;
- void InternalSwap(Carrier_coordinates_parameter* other);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return NULL;
- }
- inline void* MaybeArenaPtr() const {
- return NULL;
- }
- public:
- ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional int32 id = 1 [default = 0];
- bool has_id() const;
- void clear_id();
- static const int kIdFieldNumber = 1;
- ::google::protobuf::int32 id() const;
- void set_id(::google::protobuf::int32 value);
- // optional int32 x = 2 [default = 0];
- bool has_x() const;
- void clear_x();
- static const int kXFieldNumber = 2;
- ::google::protobuf::int32 x() const;
- void set_x(::google::protobuf::int32 value);
- // optional int32 y = 3 [default = 0];
- bool has_y() const;
- void clear_y();
- static const int kYFieldNumber = 3;
- ::google::protobuf::int32 y() const;
- void set_y(::google::protobuf::int32 value);
- // optional int32 z = 4 [default = 0];
- bool has_z() const;
- void clear_z();
- static const int kZFieldNumber = 4;
- ::google::protobuf::int32 z() const;
- void set_z(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:Dispatch_proto.Carrier_coordinates_parameter)
- private:
- void set_has_id();
- void clear_has_id();
- void set_has_x();
- void clear_has_x();
- void set_has_y();
- void clear_has_y();
- void set_has_z();
- void clear_has_z();
- ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
- ::google::protobuf::internal::HasBits<1> _has_bits_;
- mutable int _cached_size_;
- ::google::protobuf::int32 id_;
- ::google::protobuf::int32 x_;
- ::google::protobuf::int32 y_;
- ::google::protobuf::int32 z_;
- friend struct ::protobuf_dispatch_5fparameter_2eproto::TableStruct;
- friend void ::protobuf_dispatch_5fparameter_2eproto::InitDefaultsCarrier_coordinates_parameterImpl();
- };
- // -------------------------------------------------------------------
- class Catcher_coordinates_parameter : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Dispatch_proto.Catcher_coordinates_parameter) */ {
- public:
- Catcher_coordinates_parameter();
- virtual ~Catcher_coordinates_parameter();
- Catcher_coordinates_parameter(const Catcher_coordinates_parameter& from);
- inline Catcher_coordinates_parameter& operator=(const Catcher_coordinates_parameter& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- Catcher_coordinates_parameter(Catcher_coordinates_parameter&& from) noexcept
- : Catcher_coordinates_parameter() {
- *this = ::std::move(from);
- }
- inline Catcher_coordinates_parameter& operator=(Catcher_coordinates_parameter&& from) noexcept {
- if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
- if (this != &from) InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- #endif
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _internal_metadata_.unknown_fields();
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return _internal_metadata_.mutable_unknown_fields();
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const Catcher_coordinates_parameter& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const Catcher_coordinates_parameter* internal_default_instance() {
- return reinterpret_cast<const Catcher_coordinates_parameter*>(
- &_Catcher_coordinates_parameter_default_instance_);
- }
- static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
- 7;
- void Swap(Catcher_coordinates_parameter* other);
- friend void swap(Catcher_coordinates_parameter& a, Catcher_coordinates_parameter& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline Catcher_coordinates_parameter* New() const PROTOBUF_FINAL { return New(NULL); }
- Catcher_coordinates_parameter* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
- void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void CopyFrom(const Catcher_coordinates_parameter& from);
- void MergeFrom(const Catcher_coordinates_parameter& from);
- void Clear() PROTOBUF_FINAL;
- bool IsInitialized() const PROTOBUF_FINAL;
- size_t ByteSizeLong() const PROTOBUF_FINAL;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
- ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
- int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const PROTOBUF_FINAL;
- void InternalSwap(Catcher_coordinates_parameter* other);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return NULL;
- }
- inline void* MaybeArenaPtr() const {
- return NULL;
- }
- public:
- ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional int32 id = 1 [default = 0];
- bool has_id() const;
- void clear_id();
- static const int kIdFieldNumber = 1;
- ::google::protobuf::int32 id() const;
- void set_id(::google::protobuf::int32 value);
- // optional int32 x = 2 [default = 0];
- bool has_x() const;
- void clear_x();
- static const int kXFieldNumber = 2;
- ::google::protobuf::int32 x() const;
- void set_x(::google::protobuf::int32 value);
- // optional int32 y = 3 [default = 0];
- bool has_y() const;
- void clear_y();
- static const int kYFieldNumber = 3;
- ::google::protobuf::int32 y() const;
- void set_y(::google::protobuf::int32 value);
- // optional int32 z = 4 [default = 0];
- bool has_z() const;
- void clear_z();
- static const int kZFieldNumber = 4;
- ::google::protobuf::int32 z() const;
- void set_z(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:Dispatch_proto.Catcher_coordinates_parameter)
- private:
- void set_has_id();
- void clear_has_id();
- void set_has_x();
- void clear_has_x();
- void set_has_y();
- void clear_has_y();
- void set_has_z();
- void clear_has_z();
- ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
- ::google::protobuf::internal::HasBits<1> _has_bits_;
- mutable int _cached_size_;
- ::google::protobuf::int32 id_;
- ::google::protobuf::int32 x_;
- ::google::protobuf::int32 y_;
- ::google::protobuf::int32 z_;
- friend struct ::protobuf_dispatch_5fparameter_2eproto::TableStruct;
- friend void ::protobuf_dispatch_5fparameter_2eproto::InitDefaultsCatcher_coordinates_parameterImpl();
- };
- // -------------------------------------------------------------------
- class Carrier_box_parameter : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Dispatch_proto.Carrier_box_parameter) */ {
- public:
- Carrier_box_parameter();
- virtual ~Carrier_box_parameter();
- Carrier_box_parameter(const Carrier_box_parameter& from);
- inline Carrier_box_parameter& operator=(const Carrier_box_parameter& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- Carrier_box_parameter(Carrier_box_parameter&& from) noexcept
- : Carrier_box_parameter() {
- *this = ::std::move(from);
- }
- inline Carrier_box_parameter& operator=(Carrier_box_parameter&& from) noexcept {
- if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
- if (this != &from) InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- #endif
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _internal_metadata_.unknown_fields();
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return _internal_metadata_.mutable_unknown_fields();
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const Carrier_box_parameter& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const Carrier_box_parameter* internal_default_instance() {
- return reinterpret_cast<const Carrier_box_parameter*>(
- &_Carrier_box_parameter_default_instance_);
- }
- static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
- 8;
- void Swap(Carrier_box_parameter* other);
- friend void swap(Carrier_box_parameter& a, Carrier_box_parameter& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline Carrier_box_parameter* New() const PROTOBUF_FINAL { return New(NULL); }
- Carrier_box_parameter* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
- void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void CopyFrom(const Carrier_box_parameter& from);
- void MergeFrom(const Carrier_box_parameter& from);
- void Clear() PROTOBUF_FINAL;
- bool IsInitialized() const PROTOBUF_FINAL;
- size_t ByteSizeLong() const PROTOBUF_FINAL;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
- ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
- int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const PROTOBUF_FINAL;
- void InternalSwap(Carrier_box_parameter* other);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return NULL;
- }
- inline void* MaybeArenaPtr() const {
- return NULL;
- }
- public:
- ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional int32 x_min = 1 [default = -1000000];
- bool has_x_min() const;
- void clear_x_min();
- static const int kXMinFieldNumber = 1;
- ::google::protobuf::int32 x_min() const;
- void set_x_min(::google::protobuf::int32 value);
- // optional int32 x_max = 2 [default = 1000000];
- bool has_x_max() const;
- void clear_x_max();
- static const int kXMaxFieldNumber = 2;
- ::google::protobuf::int32 x_max() const;
- void set_x_max(::google::protobuf::int32 value);
- // optional int32 y_min = 3 [default = -1000000];
- bool has_y_min() const;
- void clear_y_min();
- static const int kYMinFieldNumber = 3;
- ::google::protobuf::int32 y_min() const;
- void set_y_min(::google::protobuf::int32 value);
- // optional int32 y_max = 4 [default = 1000000];
- bool has_y_max() const;
- void clear_y_max();
- static const int kYMaxFieldNumber = 4;
- ::google::protobuf::int32 y_max() const;
- void set_y_max(::google::protobuf::int32 value);
- // optional int32 z_min = 5 [default = -1000000];
- bool has_z_min() const;
- void clear_z_min();
- static const int kZMinFieldNumber = 5;
- ::google::protobuf::int32 z_min() const;
- void set_z_min(::google::protobuf::int32 value);
- // optional int32 z_max = 6 [default = 1000000];
- bool has_z_max() const;
- void clear_z_max();
- static const int kZMaxFieldNumber = 6;
- ::google::protobuf::int32 z_max() const;
- void set_z_max(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:Dispatch_proto.Carrier_box_parameter)
- private:
- void set_has_x_min();
- void clear_has_x_min();
- void set_has_x_max();
- void clear_has_x_max();
- void set_has_y_min();
- void clear_has_y_min();
- void set_has_y_max();
- void clear_has_y_max();
- void set_has_z_min();
- void clear_has_z_min();
- void set_has_z_max();
- void clear_has_z_max();
- ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
- ::google::protobuf::internal::HasBits<1> _has_bits_;
- mutable int _cached_size_;
- ::google::protobuf::int32 x_min_;
- ::google::protobuf::int32 x_max_;
- ::google::protobuf::int32 y_min_;
- ::google::protobuf::int32 y_max_;
- ::google::protobuf::int32 z_min_;
- ::google::protobuf::int32 z_max_;
- friend struct ::protobuf_dispatch_5fparameter_2eproto::TableStruct;
- friend void ::protobuf_dispatch_5fparameter_2eproto::InitDefaultsCarrier_box_parameterImpl();
- };
- // -------------------------------------------------------------------
- class Catcher_box_parameter : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Dispatch_proto.Catcher_box_parameter) */ {
- public:
- Catcher_box_parameter();
- virtual ~Catcher_box_parameter();
- Catcher_box_parameter(const Catcher_box_parameter& from);
- inline Catcher_box_parameter& operator=(const Catcher_box_parameter& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- Catcher_box_parameter(Catcher_box_parameter&& from) noexcept
- : Catcher_box_parameter() {
- *this = ::std::move(from);
- }
- inline Catcher_box_parameter& operator=(Catcher_box_parameter&& from) noexcept {
- if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
- if (this != &from) InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- #endif
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _internal_metadata_.unknown_fields();
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return _internal_metadata_.mutable_unknown_fields();
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const Catcher_box_parameter& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const Catcher_box_parameter* internal_default_instance() {
- return reinterpret_cast<const Catcher_box_parameter*>(
- &_Catcher_box_parameter_default_instance_);
- }
- static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
- 9;
- void Swap(Catcher_box_parameter* other);
- friend void swap(Catcher_box_parameter& a, Catcher_box_parameter& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline Catcher_box_parameter* New() const PROTOBUF_FINAL { return New(NULL); }
- Catcher_box_parameter* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
- void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void CopyFrom(const Catcher_box_parameter& from);
- void MergeFrom(const Catcher_box_parameter& from);
- void Clear() PROTOBUF_FINAL;
- bool IsInitialized() const PROTOBUF_FINAL;
- size_t ByteSizeLong() const PROTOBUF_FINAL;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
- ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
- int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const PROTOBUF_FINAL;
- void InternalSwap(Catcher_box_parameter* other);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return NULL;
- }
- inline void* MaybeArenaPtr() const {
- return NULL;
- }
- public:
- ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional int32 x_min = 1 [default = -1000000];
- bool has_x_min() const;
- void clear_x_min();
- static const int kXMinFieldNumber = 1;
- ::google::protobuf::int32 x_min() const;
- void set_x_min(::google::protobuf::int32 value);
- // optional int32 x_max = 2 [default = 1000000];
- bool has_x_max() const;
- void clear_x_max();
- static const int kXMaxFieldNumber = 2;
- ::google::protobuf::int32 x_max() const;
- void set_x_max(::google::protobuf::int32 value);
- // optional int32 y_min = 3 [default = -1000000];
- bool has_y_min() const;
- void clear_y_min();
- static const int kYMinFieldNumber = 3;
- ::google::protobuf::int32 y_min() const;
- void set_y_min(::google::protobuf::int32 value);
- // optional int32 y_max = 4 [default = 1000000];
- bool has_y_max() const;
- void clear_y_max();
- static const int kYMaxFieldNumber = 4;
- ::google::protobuf::int32 y_max() const;
- void set_y_max(::google::protobuf::int32 value);
- // optional int32 z_min = 5 [default = -1000000];
- bool has_z_min() const;
- void clear_z_min();
- static const int kZMinFieldNumber = 5;
- ::google::protobuf::int32 z_min() const;
- void set_z_min(::google::protobuf::int32 value);
- // optional int32 z_max = 6 [default = 1000000];
- bool has_z_max() const;
- void clear_z_max();
- static const int kZMaxFieldNumber = 6;
- ::google::protobuf::int32 z_max() const;
- void set_z_max(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:Dispatch_proto.Catcher_box_parameter)
- private:
- void set_has_x_min();
- void clear_has_x_min();
- void set_has_x_max();
- void clear_has_x_max();
- void set_has_y_min();
- void clear_has_y_min();
- void set_has_y_max();
- void clear_has_y_max();
- void set_has_z_min();
- void clear_has_z_min();
- void set_has_z_max();
- void clear_has_z_max();
- ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
- ::google::protobuf::internal::HasBits<1> _has_bits_;
- mutable int _cached_size_;
- ::google::protobuf::int32 x_min_;
- ::google::protobuf::int32 x_max_;
- ::google::protobuf::int32 y_min_;
- ::google::protobuf::int32 y_max_;
- ::google::protobuf::int32 z_min_;
- ::google::protobuf::int32 z_max_;
- friend struct ::protobuf_dispatch_5fparameter_2eproto::TableStruct;
- friend void ::protobuf_dispatch_5fparameter_2eproto::InitDefaultsCatcher_box_parameterImpl();
- };
- // -------------------------------------------------------------------
- class Axis_range_parameter : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Dispatch_proto.Axis_range_parameter) */ {
- public:
- Axis_range_parameter();
- virtual ~Axis_range_parameter();
- Axis_range_parameter(const Axis_range_parameter& from);
- inline Axis_range_parameter& operator=(const Axis_range_parameter& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- Axis_range_parameter(Axis_range_parameter&& from) noexcept
- : Axis_range_parameter() {
- *this = ::std::move(from);
- }
- inline Axis_range_parameter& operator=(Axis_range_parameter&& from) noexcept {
- if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
- if (this != &from) InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- #endif
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _internal_metadata_.unknown_fields();
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return _internal_metadata_.mutable_unknown_fields();
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const Axis_range_parameter& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const Axis_range_parameter* internal_default_instance() {
- return reinterpret_cast<const Axis_range_parameter*>(
- &_Axis_range_parameter_default_instance_);
- }
- static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
- 10;
- void Swap(Axis_range_parameter* other);
- friend void swap(Axis_range_parameter& a, Axis_range_parameter& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline Axis_range_parameter* New() const PROTOBUF_FINAL { return New(NULL); }
- Axis_range_parameter* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
- void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void CopyFrom(const Axis_range_parameter& from);
- void MergeFrom(const Axis_range_parameter& from);
- void Clear() PROTOBUF_FINAL;
- bool IsInitialized() const PROTOBUF_FINAL;
- size_t ByteSizeLong() const PROTOBUF_FINAL;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
- ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
- int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const PROTOBUF_FINAL;
- void InternalSwap(Axis_range_parameter* other);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return NULL;
- }
- inline void* MaybeArenaPtr() const {
- return NULL;
- }
- public:
- ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // optional int32 min = 1 [default = -1000000];
- bool has_min() const;
- void clear_min();
- static const int kMinFieldNumber = 1;
- ::google::protobuf::int32 min() const;
- void set_min(::google::protobuf::int32 value);
- // optional int32 max = 2 [default = 1000000];
- bool has_max() const;
- void clear_max();
- static const int kMaxFieldNumber = 2;
- ::google::protobuf::int32 max() const;
- void set_max(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:Dispatch_proto.Axis_range_parameter)
- private:
- void set_has_min();
- void clear_has_min();
- void set_has_max();
- void clear_has_max();
- ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
- ::google::protobuf::internal::HasBits<1> _has_bits_;
- mutable int _cached_size_;
- ::google::protobuf::int32 min_;
- ::google::protobuf::int32 max_;
- friend struct ::protobuf_dispatch_5fparameter_2eproto::TableStruct;
- friend void ::protobuf_dispatch_5fparameter_2eproto::InitDefaultsAxis_range_parameterImpl();
- };
- // -------------------------------------------------------------------
- class Dispatch_coordinates_parameter_all : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:Dispatch_proto.Dispatch_coordinates_parameter_all) */ {
- public:
- Dispatch_coordinates_parameter_all();
- virtual ~Dispatch_coordinates_parameter_all();
- Dispatch_coordinates_parameter_all(const Dispatch_coordinates_parameter_all& from);
- inline Dispatch_coordinates_parameter_all& operator=(const Dispatch_coordinates_parameter_all& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- Dispatch_coordinates_parameter_all(Dispatch_coordinates_parameter_all&& from) noexcept
- : Dispatch_coordinates_parameter_all() {
- *this = ::std::move(from);
- }
- inline Dispatch_coordinates_parameter_all& operator=(Dispatch_coordinates_parameter_all&& from) noexcept {
- if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
- if (this != &from) InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- #endif
- inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
- return _internal_metadata_.unknown_fields();
- }
- inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
- return _internal_metadata_.mutable_unknown_fields();
- }
- static const ::google::protobuf::Descriptor* descriptor();
- static const Dispatch_coordinates_parameter_all& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const Dispatch_coordinates_parameter_all* internal_default_instance() {
- return reinterpret_cast<const Dispatch_coordinates_parameter_all*>(
- &_Dispatch_coordinates_parameter_all_default_instance_);
- }
- static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
- 11;
- void Swap(Dispatch_coordinates_parameter_all* other);
- friend void swap(Dispatch_coordinates_parameter_all& a, Dispatch_coordinates_parameter_all& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline Dispatch_coordinates_parameter_all* New() const PROTOBUF_FINAL { return New(NULL); }
- Dispatch_coordinates_parameter_all* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
- void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void CopyFrom(const Dispatch_coordinates_parameter_all& from);
- void MergeFrom(const Dispatch_coordinates_parameter_all& from);
- void Clear() PROTOBUF_FINAL;
- bool IsInitialized() const PROTOBUF_FINAL;
- size_t ByteSizeLong() const PROTOBUF_FINAL;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
- ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
- int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const PROTOBUF_FINAL;
- void InternalSwap(Dispatch_coordinates_parameter_all* other);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return NULL;
- }
- inline void* MaybeArenaPtr() const {
- return NULL;
- }
- public:
- ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // repeated .Dispatch_proto.Packspace_coordinates_parameter packspace_coordinates_parameters = 1;
- int packspace_coordinates_parameters_size() const;
- void clear_packspace_coordinates_parameters();
- static const int kPackspaceCoordinatesParametersFieldNumber = 1;
- const ::Dispatch_proto::Packspace_coordinates_parameter& packspace_coordinates_parameters(int index) const;
- ::Dispatch_proto::Packspace_coordinates_parameter* mutable_packspace_coordinates_parameters(int index);
- ::Dispatch_proto::Packspace_coordinates_parameter* add_packspace_coordinates_parameters();
- ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Packspace_coordinates_parameter >*
- mutable_packspace_coordinates_parameters();
- const ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Packspace_coordinates_parameter >&
- packspace_coordinates_parameters() const;
- // repeated .Dispatch_proto.Passageway_coordinates_parameter passageway_coordinates_parameters = 2;
- int passageway_coordinates_parameters_size() const;
- void clear_passageway_coordinates_parameters();
- static const int kPassagewayCoordinatesParametersFieldNumber = 2;
- const ::Dispatch_proto::Passageway_coordinates_parameter& passageway_coordinates_parameters(int index) const;
- ::Dispatch_proto::Passageway_coordinates_parameter* mutable_passageway_coordinates_parameters(int index);
- ::Dispatch_proto::Passageway_coordinates_parameter* add_passageway_coordinates_parameters();
- ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Passageway_coordinates_parameter >*
- mutable_passageway_coordinates_parameters();
- const ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Passageway_coordinates_parameter >&
- passageway_coordinates_parameters() const;
- // repeated .Dispatch_proto.Carrier_coordinates_parameter carrier_coordinates_parameters = 3;
- int carrier_coordinates_parameters_size() const;
- void clear_carrier_coordinates_parameters();
- static const int kCarrierCoordinatesParametersFieldNumber = 3;
- const ::Dispatch_proto::Carrier_coordinates_parameter& carrier_coordinates_parameters(int index) const;
- ::Dispatch_proto::Carrier_coordinates_parameter* mutable_carrier_coordinates_parameters(int index);
- ::Dispatch_proto::Carrier_coordinates_parameter* add_carrier_coordinates_parameters();
- ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Carrier_coordinates_parameter >*
- mutable_carrier_coordinates_parameters();
- const ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Carrier_coordinates_parameter >&
- carrier_coordinates_parameters() const;
- // repeated .Dispatch_proto.Catcher_coordinates_parameter catcher_coordinates_parameters = 4;
- int catcher_coordinates_parameters_size() const;
- void clear_catcher_coordinates_parameters();
- static const int kCatcherCoordinatesParametersFieldNumber = 4;
- const ::Dispatch_proto::Catcher_coordinates_parameter& catcher_coordinates_parameters(int index) const;
- ::Dispatch_proto::Catcher_coordinates_parameter* mutable_catcher_coordinates_parameters(int index);
- ::Dispatch_proto::Catcher_coordinates_parameter* add_catcher_coordinates_parameters();
- ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Catcher_coordinates_parameter >*
- mutable_catcher_coordinates_parameters();
- const ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Catcher_coordinates_parameter >&
- catcher_coordinates_parameters() const;
- // repeated .Dispatch_proto.Passageway_functioning_pattern passageway_functioning_patterns = 34;
- int passageway_functioning_patterns_size() const;
- void clear_passageway_functioning_patterns();
- static const int kPassagewayFunctioningPatternsFieldNumber = 34;
- ::Dispatch_proto::Passageway_functioning_pattern passageway_functioning_patterns(int index) const;
- void set_passageway_functioning_patterns(int index, ::Dispatch_proto::Passageway_functioning_pattern value);
- void add_passageway_functioning_patterns(::Dispatch_proto::Passageway_functioning_pattern value);
- const ::google::protobuf::RepeatedField<int>& passageway_functioning_patterns() const;
- ::google::protobuf::RepeatedField<int>* mutable_passageway_functioning_patterns();
- // optional .Dispatch_proto.Carrier_box_parameter carrier_box_parameters = 5;
- bool has_carrier_box_parameters() const;
- void clear_carrier_box_parameters();
- static const int kCarrierBoxParametersFieldNumber = 5;
- const ::Dispatch_proto::Carrier_box_parameter& carrier_box_parameters() const;
- ::Dispatch_proto::Carrier_box_parameter* release_carrier_box_parameters();
- ::Dispatch_proto::Carrier_box_parameter* mutable_carrier_box_parameters();
- void set_allocated_carrier_box_parameters(::Dispatch_proto::Carrier_box_parameter* carrier_box_parameters);
- // optional .Dispatch_proto.Catcher_box_parameter catcher_box_parameters = 6;
- bool has_catcher_box_parameters() const;
- void clear_catcher_box_parameters();
- static const int kCatcherBoxParametersFieldNumber = 6;
- const ::Dispatch_proto::Catcher_box_parameter& catcher_box_parameters() const;
- ::Dispatch_proto::Catcher_box_parameter* release_catcher_box_parameters();
- ::Dispatch_proto::Catcher_box_parameter* mutable_catcher_box_parameters();
- void set_allocated_catcher_box_parameters(::Dispatch_proto::Catcher_box_parameter* catcher_box_parameters);
- // optional int32 catcher_b_min = 7;
- bool has_catcher_b_min() const;
- void clear_catcher_b_min();
- static const int kCatcherBMinFieldNumber = 7;
- ::google::protobuf::int32 catcher_b_min() const;
- void set_catcher_b_min(::google::protobuf::int32 value);
- // optional int32 catcher_b_max = 8;
- bool has_catcher_b_max() const;
- void clear_catcher_b_max();
- static const int kCatcherBMaxFieldNumber = 8;
- ::google::protobuf::int32 catcher_b_max() const;
- void set_catcher_b_max(::google::protobuf::int32 value);
- // optional int32 catcher_d1_min = 9;
- bool has_catcher_d1_min() const;
- void clear_catcher_d1_min();
- static const int kCatcherD1MinFieldNumber = 9;
- ::google::protobuf::int32 catcher_d1_min() const;
- void set_catcher_d1_min(::google::protobuf::int32 value);
- // optional int32 catcher_d1_max = 10;
- bool has_catcher_d1_max() const;
- void clear_catcher_d1_max();
- static const int kCatcherD1MaxFieldNumber = 10;
- ::google::protobuf::int32 catcher_d1_max() const;
- void set_catcher_d1_max(::google::protobuf::int32 value);
- // optional int32 catcher_d2_min = 11;
- bool has_catcher_d2_min() const;
- void clear_catcher_d2_min();
- static const int kCatcherD2MinFieldNumber = 11;
- ::google::protobuf::int32 catcher_d2_min() const;
- void set_catcher_d2_min(::google::protobuf::int32 value);
- // optional int32 catcher_d2_max = 12;
- bool has_catcher_d2_max() const;
- void clear_catcher_d2_max();
- static const int kCatcherD2MaxFieldNumber = 12;
- ::google::protobuf::int32 catcher_d2_max() const;
- void set_catcher_d2_max(::google::protobuf::int32 value);
- // optional int32 default_wheelbase = 13;
- bool has_default_wheelbase() const;
- void clear_default_wheelbase();
- static const int kDefaultWheelbaseFieldNumber = 13;
- ::google::protobuf::int32 default_wheelbase() const;
- void set_default_wheelbase(::google::protobuf::int32 value);
- // optional int32 catcher_1th_floor_z = 14;
- bool has_catcher_1th_floor_z() const;
- void clear_catcher_1th_floor_z();
- static const int kCatcher1ThFloorZFieldNumber = 14;
- ::google::protobuf::int32 catcher_1th_floor_z() const;
- void set_catcher_1th_floor_z(::google::protobuf::int32 value);
- // optional int32 catcher_2th_floor_z = 15;
- bool has_catcher_2th_floor_z() const;
- void clear_catcher_2th_floor_z();
- static const int kCatcher2ThFloorZFieldNumber = 15;
- ::google::protobuf::int32 catcher_2th_floor_z() const;
- void set_catcher_2th_floor_z(::google::protobuf::int32 value);
- // optional int32 catcher_3th_floor_z = 16;
- bool has_catcher_3th_floor_z() const;
- void clear_catcher_3th_floor_z();
- static const int kCatcher3ThFloorZFieldNumber = 16;
- ::google::protobuf::int32 catcher_3th_floor_z() const;
- void set_catcher_3th_floor_z(::google::protobuf::int32 value);
- // optional int32 catcher_4th_floor_z = 17;
- bool has_catcher_4th_floor_z() const;
- void clear_catcher_4th_floor_z();
- static const int kCatcher4ThFloorZFieldNumber = 17;
- ::google::protobuf::int32 catcher_4th_floor_z() const;
- void set_catcher_4th_floor_z(::google::protobuf::int32 value);
- // optional int32 carrier_1th_floor_z = 18;
- bool has_carrier_1th_floor_z() const;
- void clear_carrier_1th_floor_z();
- static const int kCarrier1ThFloorZFieldNumber = 18;
- ::google::protobuf::int32 carrier_1th_floor_z() const;
- void set_carrier_1th_floor_z(::google::protobuf::int32 value);
- // optional int32 carrier_2th_floor_z = 19;
- bool has_carrier_2th_floor_z() const;
- void clear_carrier_2th_floor_z();
- static const int kCarrier2ThFloorZFieldNumber = 19;
- ::google::protobuf::int32 carrier_2th_floor_z() const;
- void set_carrier_2th_floor_z(::google::protobuf::int32 value);
- // optional int32 carrier_3th_floor_z = 20;
- bool has_carrier_3th_floor_z() const;
- void clear_carrier_3th_floor_z();
- static const int kCarrier3ThFloorZFieldNumber = 20;
- ::google::protobuf::int32 carrier_3th_floor_z() const;
- void set_carrier_3th_floor_z(::google::protobuf::int32 value);
- // optional int32 carrier_4th_floor_z = 21;
- bool has_carrier_4th_floor_z() const;
- void clear_carrier_4th_floor_z();
- static const int kCarrier4ThFloorZFieldNumber = 21;
- ::google::protobuf::int32 carrier_4th_floor_z() const;
- void set_carrier_4th_floor_z(::google::protobuf::int32 value);
- // optional int32 catcher_d1_d2_distance = 22;
- bool has_catcher_d1_d2_distance() const;
- void clear_catcher_d1_d2_distance();
- static const int kCatcherD1D2DistanceFieldNumber = 22;
- ::google::protobuf::int32 catcher_d1_d2_distance() const;
- void set_catcher_d1_d2_distance(::google::protobuf::int32 value);
- // optional int32 catcher_wheel_base_limit = 23;
- bool has_catcher_wheel_base_limit() const;
- void clear_catcher_wheel_base_limit();
- static const int kCatcherWheelBaseLimitFieldNumber = 23;
- ::google::protobuf::int32 catcher_wheel_base_limit() const;
- void set_catcher_wheel_base_limit(::google::protobuf::int32 value);
- // optional int32 carrier_y_y1_distance = 24;
- bool has_carrier_y_y1_distance() const;
- void clear_carrier_y_y1_distance();
- static const int kCarrierYY1DistanceFieldNumber = 24;
- ::google::protobuf::int32 carrier_y_y1_distance() const;
- void set_carrier_y_y1_distance(::google::protobuf::int32 value);
- // optional int32 carrier_default_y1_back = 25;
- bool has_carrier_default_y1_back() const;
- void clear_carrier_default_y1_back();
- static const int kCarrierDefaultY1BackFieldNumber = 25;
- ::google::protobuf::int32 carrier_default_y1_back() const;
- void set_carrier_default_y1_back(::google::protobuf::int32 value);
- // optional int32 carrier_default_y1_leave = 26;
- bool has_carrier_default_y1_leave() const;
- void clear_carrier_default_y1_leave();
- static const int kCarrierDefaultY1LeaveFieldNumber = 26;
- ::google::protobuf::int32 carrier_default_y1_leave() const;
- void set_carrier_default_y1_leave(::google::protobuf::int32 value);
- // optional int32 carrier_default_y_back = 27;
- bool has_carrier_default_y_back() const;
- void clear_carrier_default_y_back();
- static const int kCarrierDefaultYBackFieldNumber = 27;
- ::google::protobuf::int32 carrier_default_y_back() const;
- void set_carrier_default_y_back(::google::protobuf::int32 value);
- // optional int32 carrier_default_y_leave = 28;
- bool has_carrier_default_y_leave() const;
- void clear_carrier_default_y_leave();
- static const int kCarrierDefaultYLeaveFieldNumber = 28;
- ::google::protobuf::int32 carrier_default_y_leave() const;
- void set_carrier_default_y_leave(::google::protobuf::int32 value);
- // optional int32 carrier_default_x_left = 29;
- bool has_carrier_default_x_left() const;
- void clear_carrier_default_x_left();
- static const int kCarrierDefaultXLeftFieldNumber = 29;
- ::google::protobuf::int32 carrier_default_x_left() const;
- void set_carrier_default_x_left(::google::protobuf::int32 value);
- // optional int32 carrier_default_x_right = 30;
- bool has_carrier_default_x_right() const;
- void clear_carrier_default_x_right();
- static const int kCarrierDefaultXRightFieldNumber = 30;
- ::google::protobuf::int32 carrier_default_x_right() const;
- void set_carrier_default_x_right(::google::protobuf::int32 value);
- // optional int32 passageway_terminal_id_min = 31;
- bool has_passageway_terminal_id_min() const;
- void clear_passageway_terminal_id_min();
- static const int kPassagewayTerminalIdMinFieldNumber = 31;
- ::google::protobuf::int32 passageway_terminal_id_min() const;
- void set_passageway_terminal_id_min(::google::protobuf::int32 value);
- // optional int32 passageway_terminal_id_max = 32;
- bool has_passageway_terminal_id_max() const;
- void clear_passageway_terminal_id_max();
- static const int kPassagewayTerminalIdMaxFieldNumber = 32;
- ::google::protobuf::int32 passageway_terminal_id_max() const;
- void set_passageway_terminal_id_max(::google::protobuf::int32 value);
- // optional int32 passageway_terminal_number = 33;
- bool has_passageway_terminal_number() const;
- void clear_passageway_terminal_number();
- static const int kPassagewayTerminalNumberFieldNumber = 33;
- ::google::protobuf::int32 passageway_terminal_number() const;
- void set_passageway_terminal_number(::google::protobuf::int32 value);
- // optional int32 car_wheel_base_min = 35;
- bool has_car_wheel_base_min() const;
- void clear_car_wheel_base_min();
- static const int kCarWheelBaseMinFieldNumber = 35;
- ::google::protobuf::int32 car_wheel_base_min() const;
- void set_car_wheel_base_min(::google::protobuf::int32 value);
- // optional int32 car_wheel_base_max = 36;
- bool has_car_wheel_base_max() const;
- void clear_car_wheel_base_max();
- static const int kCarWheelBaseMaxFieldNumber = 36;
- ::google::protobuf::int32 car_wheel_base_max() const;
- void set_car_wheel_base_max(::google::protobuf::int32 value);
- // @@protoc_insertion_point(class_scope:Dispatch_proto.Dispatch_coordinates_parameter_all)
- private:
- void set_has_carrier_box_parameters();
- void clear_has_carrier_box_parameters();
- void set_has_catcher_box_parameters();
- void clear_has_catcher_box_parameters();
- void set_has_catcher_b_min();
- void clear_has_catcher_b_min();
- void set_has_catcher_b_max();
- void clear_has_catcher_b_max();
- void set_has_catcher_d1_min();
- void clear_has_catcher_d1_min();
- void set_has_catcher_d1_max();
- void clear_has_catcher_d1_max();
- void set_has_catcher_d2_min();
- void clear_has_catcher_d2_min();
- void set_has_catcher_d2_max();
- void clear_has_catcher_d2_max();
- void set_has_default_wheelbase();
- void clear_has_default_wheelbase();
- void set_has_catcher_1th_floor_z();
- void clear_has_catcher_1th_floor_z();
- void set_has_catcher_2th_floor_z();
- void clear_has_catcher_2th_floor_z();
- void set_has_catcher_3th_floor_z();
- void clear_has_catcher_3th_floor_z();
- void set_has_catcher_4th_floor_z();
- void clear_has_catcher_4th_floor_z();
- void set_has_carrier_1th_floor_z();
- void clear_has_carrier_1th_floor_z();
- void set_has_carrier_2th_floor_z();
- void clear_has_carrier_2th_floor_z();
- void set_has_carrier_3th_floor_z();
- void clear_has_carrier_3th_floor_z();
- void set_has_carrier_4th_floor_z();
- void clear_has_carrier_4th_floor_z();
- void set_has_catcher_d1_d2_distance();
- void clear_has_catcher_d1_d2_distance();
- void set_has_catcher_wheel_base_limit();
- void clear_has_catcher_wheel_base_limit();
- void set_has_carrier_y_y1_distance();
- void clear_has_carrier_y_y1_distance();
- void set_has_carrier_default_y1_back();
- void clear_has_carrier_default_y1_back();
- void set_has_carrier_default_y1_leave();
- void clear_has_carrier_default_y1_leave();
- void set_has_carrier_default_y_back();
- void clear_has_carrier_default_y_back();
- void set_has_carrier_default_y_leave();
- void clear_has_carrier_default_y_leave();
- void set_has_carrier_default_x_left();
- void clear_has_carrier_default_x_left();
- void set_has_carrier_default_x_right();
- void clear_has_carrier_default_x_right();
- void set_has_passageway_terminal_id_min();
- void clear_has_passageway_terminal_id_min();
- void set_has_passageway_terminal_id_max();
- void clear_has_passageway_terminal_id_max();
- void set_has_passageway_terminal_number();
- void clear_has_passageway_terminal_number();
- void set_has_car_wheel_base_min();
- void clear_has_car_wheel_base_min();
- void set_has_car_wheel_base_max();
- void clear_has_car_wheel_base_max();
- ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
- ::google::protobuf::internal::HasBits<1> _has_bits_;
- mutable int _cached_size_;
- ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Packspace_coordinates_parameter > packspace_coordinates_parameters_;
- ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Passageway_coordinates_parameter > passageway_coordinates_parameters_;
- ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Carrier_coordinates_parameter > carrier_coordinates_parameters_;
- ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Catcher_coordinates_parameter > catcher_coordinates_parameters_;
- ::google::protobuf::RepeatedField<int> passageway_functioning_patterns_;
- ::Dispatch_proto::Carrier_box_parameter* carrier_box_parameters_;
- ::Dispatch_proto::Catcher_box_parameter* catcher_box_parameters_;
- ::google::protobuf::int32 catcher_b_min_;
- ::google::protobuf::int32 catcher_b_max_;
- ::google::protobuf::int32 catcher_d1_min_;
- ::google::protobuf::int32 catcher_d1_max_;
- ::google::protobuf::int32 catcher_d2_min_;
- ::google::protobuf::int32 catcher_d2_max_;
- ::google::protobuf::int32 default_wheelbase_;
- ::google::protobuf::int32 catcher_1th_floor_z_;
- ::google::protobuf::int32 catcher_2th_floor_z_;
- ::google::protobuf::int32 catcher_3th_floor_z_;
- ::google::protobuf::int32 catcher_4th_floor_z_;
- ::google::protobuf::int32 carrier_1th_floor_z_;
- ::google::protobuf::int32 carrier_2th_floor_z_;
- ::google::protobuf::int32 carrier_3th_floor_z_;
- ::google::protobuf::int32 carrier_4th_floor_z_;
- ::google::protobuf::int32 catcher_d1_d2_distance_;
- ::google::protobuf::int32 catcher_wheel_base_limit_;
- ::google::protobuf::int32 carrier_y_y1_distance_;
- ::google::protobuf::int32 carrier_default_y1_back_;
- ::google::protobuf::int32 carrier_default_y1_leave_;
- ::google::protobuf::int32 carrier_default_y_back_;
- ::google::protobuf::int32 carrier_default_y_leave_;
- ::google::protobuf::int32 carrier_default_x_left_;
- ::google::protobuf::int32 carrier_default_x_right_;
- ::google::protobuf::int32 passageway_terminal_id_min_;
- ::google::protobuf::int32 passageway_terminal_id_max_;
- ::google::protobuf::int32 passageway_terminal_number_;
- ::google::protobuf::int32 car_wheel_base_min_;
- ::google::protobuf::int32 car_wheel_base_max_;
- friend struct ::protobuf_dispatch_5fparameter_2eproto::TableStruct;
- friend void ::protobuf_dispatch_5fparameter_2eproto::InitDefaultsDispatch_coordinates_parameter_allImpl();
- };
- // ===================================================================
- // ===================================================================
- #ifdef __GNUC__
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wstrict-aliasing"
- #endif // __GNUC__
- // Catcher_parameter
- // required int32 id = 1;
- inline bool Catcher_parameter::has_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void Catcher_parameter::set_has_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void Catcher_parameter::clear_has_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void Catcher_parameter::clear_id() {
- id_ = 0;
- clear_has_id();
- }
- inline ::google::protobuf::int32 Catcher_parameter::id() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Catcher_parameter.id)
- return id_;
- }
- inline void Catcher_parameter::set_id(::google::protobuf::int32 value) {
- set_has_id();
- id_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Catcher_parameter.id)
- }
- // -------------------------------------------------------------------
- // Carrier_parameter
- // required int32 id = 1;
- inline bool Carrier_parameter::has_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void Carrier_parameter::set_has_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void Carrier_parameter::clear_has_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void Carrier_parameter::clear_id() {
- id_ = 0;
- clear_has_id();
- }
- inline ::google::protobuf::int32 Carrier_parameter::id() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Carrier_parameter.id)
- return id_;
- }
- inline void Carrier_parameter::set_id(::google::protobuf::int32 value) {
- set_has_id();
- id_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Carrier_parameter.id)
- }
- // -------------------------------------------------------------------
- // Passageway_parameter
- // required int32 id = 1;
- inline bool Passageway_parameter::has_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void Passageway_parameter::set_has_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void Passageway_parameter::clear_has_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void Passageway_parameter::clear_id() {
- id_ = 0;
- clear_has_id();
- }
- inline ::google::protobuf::int32 Passageway_parameter::id() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Passageway_parameter.id)
- return id_;
- }
- inline void Passageway_parameter::set_id(::google::protobuf::int32 value) {
- set_has_id();
- id_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Passageway_parameter.id)
- }
- // -------------------------------------------------------------------
- // Laser_parameter_all
- // required int32 catcher_size = 1;
- inline bool Laser_parameter_all::has_catcher_size() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void Laser_parameter_all::set_has_catcher_size() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void Laser_parameter_all::clear_has_catcher_size() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void Laser_parameter_all::clear_catcher_size() {
- catcher_size_ = 0;
- clear_has_catcher_size();
- }
- inline ::google::protobuf::int32 Laser_parameter_all::catcher_size() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Laser_parameter_all.catcher_size)
- return catcher_size_;
- }
- inline void Laser_parameter_all::set_catcher_size(::google::protobuf::int32 value) {
- set_has_catcher_size();
- catcher_size_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Laser_parameter_all.catcher_size)
- }
- // repeated .Dispatch_proto.Catcher_parameter catcher_parameters = 2;
- inline int Laser_parameter_all::catcher_parameters_size() const {
- return catcher_parameters_.size();
- }
- inline void Laser_parameter_all::clear_catcher_parameters() {
- catcher_parameters_.Clear();
- }
- inline const ::Dispatch_proto::Catcher_parameter& Laser_parameter_all::catcher_parameters(int index) const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Laser_parameter_all.catcher_parameters)
- return catcher_parameters_.Get(index);
- }
- inline ::Dispatch_proto::Catcher_parameter* Laser_parameter_all::mutable_catcher_parameters(int index) {
- // @@protoc_insertion_point(field_mutable:Dispatch_proto.Laser_parameter_all.catcher_parameters)
- return catcher_parameters_.Mutable(index);
- }
- inline ::Dispatch_proto::Catcher_parameter* Laser_parameter_all::add_catcher_parameters() {
- // @@protoc_insertion_point(field_add:Dispatch_proto.Laser_parameter_all.catcher_parameters)
- return catcher_parameters_.Add();
- }
- inline ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Catcher_parameter >*
- Laser_parameter_all::mutable_catcher_parameters() {
- // @@protoc_insertion_point(field_mutable_list:Dispatch_proto.Laser_parameter_all.catcher_parameters)
- return &catcher_parameters_;
- }
- inline const ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Catcher_parameter >&
- Laser_parameter_all::catcher_parameters() const {
- // @@protoc_insertion_point(field_list:Dispatch_proto.Laser_parameter_all.catcher_parameters)
- return catcher_parameters_;
- }
- // required int32 carrier_size = 3;
- inline bool Laser_parameter_all::has_carrier_size() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void Laser_parameter_all::set_has_carrier_size() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void Laser_parameter_all::clear_has_carrier_size() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void Laser_parameter_all::clear_carrier_size() {
- carrier_size_ = 0;
- clear_has_carrier_size();
- }
- inline ::google::protobuf::int32 Laser_parameter_all::carrier_size() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Laser_parameter_all.carrier_size)
- return carrier_size_;
- }
- inline void Laser_parameter_all::set_carrier_size(::google::protobuf::int32 value) {
- set_has_carrier_size();
- carrier_size_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Laser_parameter_all.carrier_size)
- }
- // repeated .Dispatch_proto.Carrier_parameter carrier_parameters = 4;
- inline int Laser_parameter_all::carrier_parameters_size() const {
- return carrier_parameters_.size();
- }
- inline void Laser_parameter_all::clear_carrier_parameters() {
- carrier_parameters_.Clear();
- }
- inline const ::Dispatch_proto::Carrier_parameter& Laser_parameter_all::carrier_parameters(int index) const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Laser_parameter_all.carrier_parameters)
- return carrier_parameters_.Get(index);
- }
- inline ::Dispatch_proto::Carrier_parameter* Laser_parameter_all::mutable_carrier_parameters(int index) {
- // @@protoc_insertion_point(field_mutable:Dispatch_proto.Laser_parameter_all.carrier_parameters)
- return carrier_parameters_.Mutable(index);
- }
- inline ::Dispatch_proto::Carrier_parameter* Laser_parameter_all::add_carrier_parameters() {
- // @@protoc_insertion_point(field_add:Dispatch_proto.Laser_parameter_all.carrier_parameters)
- return carrier_parameters_.Add();
- }
- inline ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Carrier_parameter >*
- Laser_parameter_all::mutable_carrier_parameters() {
- // @@protoc_insertion_point(field_mutable_list:Dispatch_proto.Laser_parameter_all.carrier_parameters)
- return &carrier_parameters_;
- }
- inline const ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Carrier_parameter >&
- Laser_parameter_all::carrier_parameters() const {
- // @@protoc_insertion_point(field_list:Dispatch_proto.Laser_parameter_all.carrier_parameters)
- return carrier_parameters_;
- }
- // required int32 passageway_size = 5;
- inline bool Laser_parameter_all::has_passageway_size() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void Laser_parameter_all::set_has_passageway_size() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void Laser_parameter_all::clear_has_passageway_size() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline void Laser_parameter_all::clear_passageway_size() {
- passageway_size_ = 0;
- clear_has_passageway_size();
- }
- inline ::google::protobuf::int32 Laser_parameter_all::passageway_size() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Laser_parameter_all.passageway_size)
- return passageway_size_;
- }
- inline void Laser_parameter_all::set_passageway_size(::google::protobuf::int32 value) {
- set_has_passageway_size();
- passageway_size_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Laser_parameter_all.passageway_size)
- }
- // repeated .Dispatch_proto.Passageway_parameter passageway_parameters = 6;
- inline int Laser_parameter_all::passageway_parameters_size() const {
- return passageway_parameters_.size();
- }
- inline void Laser_parameter_all::clear_passageway_parameters() {
- passageway_parameters_.Clear();
- }
- inline const ::Dispatch_proto::Passageway_parameter& Laser_parameter_all::passageway_parameters(int index) const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Laser_parameter_all.passageway_parameters)
- return passageway_parameters_.Get(index);
- }
- inline ::Dispatch_proto::Passageway_parameter* Laser_parameter_all::mutable_passageway_parameters(int index) {
- // @@protoc_insertion_point(field_mutable:Dispatch_proto.Laser_parameter_all.passageway_parameters)
- return passageway_parameters_.Mutable(index);
- }
- inline ::Dispatch_proto::Passageway_parameter* Laser_parameter_all::add_passageway_parameters() {
- // @@protoc_insertion_point(field_add:Dispatch_proto.Laser_parameter_all.passageway_parameters)
- return passageway_parameters_.Add();
- }
- inline ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Passageway_parameter >*
- Laser_parameter_all::mutable_passageway_parameters() {
- // @@protoc_insertion_point(field_mutable_list:Dispatch_proto.Laser_parameter_all.passageway_parameters)
- return &passageway_parameters_;
- }
- inline const ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Passageway_parameter >&
- Laser_parameter_all::passageway_parameters() const {
- // @@protoc_insertion_point(field_list:Dispatch_proto.Laser_parameter_all.passageway_parameters)
- return passageway_parameters_;
- }
- // -------------------------------------------------------------------
- // Packspace_coordinates_parameter
- // optional int32 id = 1 [default = 0];
- inline bool Packspace_coordinates_parameter::has_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void Packspace_coordinates_parameter::set_has_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void Packspace_coordinates_parameter::clear_has_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void Packspace_coordinates_parameter::clear_id() {
- id_ = 0;
- clear_has_id();
- }
- inline ::google::protobuf::int32 Packspace_coordinates_parameter::id() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Packspace_coordinates_parameter.id)
- return id_;
- }
- inline void Packspace_coordinates_parameter::set_id(::google::protobuf::int32 value) {
- set_has_id();
- id_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Packspace_coordinates_parameter.id)
- }
- // optional int32 x = 2 [default = 0];
- inline bool Packspace_coordinates_parameter::has_x() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void Packspace_coordinates_parameter::set_has_x() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void Packspace_coordinates_parameter::clear_has_x() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void Packspace_coordinates_parameter::clear_x() {
- x_ = 0;
- clear_has_x();
- }
- inline ::google::protobuf::int32 Packspace_coordinates_parameter::x() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Packspace_coordinates_parameter.x)
- return x_;
- }
- inline void Packspace_coordinates_parameter::set_x(::google::protobuf::int32 value) {
- set_has_x();
- x_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Packspace_coordinates_parameter.x)
- }
- // optional int32 y = 3 [default = 0];
- inline bool Packspace_coordinates_parameter::has_y() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void Packspace_coordinates_parameter::set_has_y() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void Packspace_coordinates_parameter::clear_has_y() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline void Packspace_coordinates_parameter::clear_y() {
- y_ = 0;
- clear_has_y();
- }
- inline ::google::protobuf::int32 Packspace_coordinates_parameter::y() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Packspace_coordinates_parameter.y)
- return y_;
- }
- inline void Packspace_coordinates_parameter::set_y(::google::protobuf::int32 value) {
- set_has_y();
- y_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Packspace_coordinates_parameter.y)
- }
- // optional int32 z = 4 [default = 0];
- inline bool Packspace_coordinates_parameter::has_z() const {
- return (_has_bits_[0] & 0x00000008u) != 0;
- }
- inline void Packspace_coordinates_parameter::set_has_z() {
- _has_bits_[0] |= 0x00000008u;
- }
- inline void Packspace_coordinates_parameter::clear_has_z() {
- _has_bits_[0] &= ~0x00000008u;
- }
- inline void Packspace_coordinates_parameter::clear_z() {
- z_ = 0;
- clear_has_z();
- }
- inline ::google::protobuf::int32 Packspace_coordinates_parameter::z() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Packspace_coordinates_parameter.z)
- return z_;
- }
- inline void Packspace_coordinates_parameter::set_z(::google::protobuf::int32 value) {
- set_has_z();
- z_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Packspace_coordinates_parameter.z)
- }
- // -------------------------------------------------------------------
- // Passageway_coordinates_parameter
- // optional int32 id = 1 [default = 0];
- inline bool Passageway_coordinates_parameter::has_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void Passageway_coordinates_parameter::set_has_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void Passageway_coordinates_parameter::clear_has_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void Passageway_coordinates_parameter::clear_id() {
- id_ = 0;
- clear_has_id();
- }
- inline ::google::protobuf::int32 Passageway_coordinates_parameter::id() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Passageway_coordinates_parameter.id)
- return id_;
- }
- inline void Passageway_coordinates_parameter::set_id(::google::protobuf::int32 value) {
- set_has_id();
- id_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Passageway_coordinates_parameter.id)
- }
- // optional int32 x = 2 [default = 0];
- inline bool Passageway_coordinates_parameter::has_x() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void Passageway_coordinates_parameter::set_has_x() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void Passageway_coordinates_parameter::clear_has_x() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void Passageway_coordinates_parameter::clear_x() {
- x_ = 0;
- clear_has_x();
- }
- inline ::google::protobuf::int32 Passageway_coordinates_parameter::x() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Passageway_coordinates_parameter.x)
- return x_;
- }
- inline void Passageway_coordinates_parameter::set_x(::google::protobuf::int32 value) {
- set_has_x();
- x_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Passageway_coordinates_parameter.x)
- }
- // optional int32 y = 3 [default = 0];
- inline bool Passageway_coordinates_parameter::has_y() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void Passageway_coordinates_parameter::set_has_y() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void Passageway_coordinates_parameter::clear_has_y() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline void Passageway_coordinates_parameter::clear_y() {
- y_ = 0;
- clear_has_y();
- }
- inline ::google::protobuf::int32 Passageway_coordinates_parameter::y() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Passageway_coordinates_parameter.y)
- return y_;
- }
- inline void Passageway_coordinates_parameter::set_y(::google::protobuf::int32 value) {
- set_has_y();
- y_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Passageway_coordinates_parameter.y)
- }
- // optional int32 z = 4 [default = 0];
- inline bool Passageway_coordinates_parameter::has_z() const {
- return (_has_bits_[0] & 0x00000008u) != 0;
- }
- inline void Passageway_coordinates_parameter::set_has_z() {
- _has_bits_[0] |= 0x00000008u;
- }
- inline void Passageway_coordinates_parameter::clear_has_z() {
- _has_bits_[0] &= ~0x00000008u;
- }
- inline void Passageway_coordinates_parameter::clear_z() {
- z_ = 0;
- clear_has_z();
- }
- inline ::google::protobuf::int32 Passageway_coordinates_parameter::z() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Passageway_coordinates_parameter.z)
- return z_;
- }
- inline void Passageway_coordinates_parameter::set_z(::google::protobuf::int32 value) {
- set_has_z();
- z_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Passageway_coordinates_parameter.z)
- }
- // -------------------------------------------------------------------
- // Carrier_coordinates_parameter
- // optional int32 id = 1 [default = 0];
- inline bool Carrier_coordinates_parameter::has_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void Carrier_coordinates_parameter::set_has_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void Carrier_coordinates_parameter::clear_has_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void Carrier_coordinates_parameter::clear_id() {
- id_ = 0;
- clear_has_id();
- }
- inline ::google::protobuf::int32 Carrier_coordinates_parameter::id() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Carrier_coordinates_parameter.id)
- return id_;
- }
- inline void Carrier_coordinates_parameter::set_id(::google::protobuf::int32 value) {
- set_has_id();
- id_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Carrier_coordinates_parameter.id)
- }
- // optional int32 x = 2 [default = 0];
- inline bool Carrier_coordinates_parameter::has_x() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void Carrier_coordinates_parameter::set_has_x() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void Carrier_coordinates_parameter::clear_has_x() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void Carrier_coordinates_parameter::clear_x() {
- x_ = 0;
- clear_has_x();
- }
- inline ::google::protobuf::int32 Carrier_coordinates_parameter::x() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Carrier_coordinates_parameter.x)
- return x_;
- }
- inline void Carrier_coordinates_parameter::set_x(::google::protobuf::int32 value) {
- set_has_x();
- x_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Carrier_coordinates_parameter.x)
- }
- // optional int32 y = 3 [default = 0];
- inline bool Carrier_coordinates_parameter::has_y() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void Carrier_coordinates_parameter::set_has_y() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void Carrier_coordinates_parameter::clear_has_y() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline void Carrier_coordinates_parameter::clear_y() {
- y_ = 0;
- clear_has_y();
- }
- inline ::google::protobuf::int32 Carrier_coordinates_parameter::y() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Carrier_coordinates_parameter.y)
- return y_;
- }
- inline void Carrier_coordinates_parameter::set_y(::google::protobuf::int32 value) {
- set_has_y();
- y_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Carrier_coordinates_parameter.y)
- }
- // optional int32 z = 4 [default = 0];
- inline bool Carrier_coordinates_parameter::has_z() const {
- return (_has_bits_[0] & 0x00000008u) != 0;
- }
- inline void Carrier_coordinates_parameter::set_has_z() {
- _has_bits_[0] |= 0x00000008u;
- }
- inline void Carrier_coordinates_parameter::clear_has_z() {
- _has_bits_[0] &= ~0x00000008u;
- }
- inline void Carrier_coordinates_parameter::clear_z() {
- z_ = 0;
- clear_has_z();
- }
- inline ::google::protobuf::int32 Carrier_coordinates_parameter::z() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Carrier_coordinates_parameter.z)
- return z_;
- }
- inline void Carrier_coordinates_parameter::set_z(::google::protobuf::int32 value) {
- set_has_z();
- z_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Carrier_coordinates_parameter.z)
- }
- // -------------------------------------------------------------------
- // Catcher_coordinates_parameter
- // optional int32 id = 1 [default = 0];
- inline bool Catcher_coordinates_parameter::has_id() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void Catcher_coordinates_parameter::set_has_id() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void Catcher_coordinates_parameter::clear_has_id() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void Catcher_coordinates_parameter::clear_id() {
- id_ = 0;
- clear_has_id();
- }
- inline ::google::protobuf::int32 Catcher_coordinates_parameter::id() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Catcher_coordinates_parameter.id)
- return id_;
- }
- inline void Catcher_coordinates_parameter::set_id(::google::protobuf::int32 value) {
- set_has_id();
- id_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Catcher_coordinates_parameter.id)
- }
- // optional int32 x = 2 [default = 0];
- inline bool Catcher_coordinates_parameter::has_x() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void Catcher_coordinates_parameter::set_has_x() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void Catcher_coordinates_parameter::clear_has_x() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void Catcher_coordinates_parameter::clear_x() {
- x_ = 0;
- clear_has_x();
- }
- inline ::google::protobuf::int32 Catcher_coordinates_parameter::x() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Catcher_coordinates_parameter.x)
- return x_;
- }
- inline void Catcher_coordinates_parameter::set_x(::google::protobuf::int32 value) {
- set_has_x();
- x_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Catcher_coordinates_parameter.x)
- }
- // optional int32 y = 3 [default = 0];
- inline bool Catcher_coordinates_parameter::has_y() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void Catcher_coordinates_parameter::set_has_y() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void Catcher_coordinates_parameter::clear_has_y() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline void Catcher_coordinates_parameter::clear_y() {
- y_ = 0;
- clear_has_y();
- }
- inline ::google::protobuf::int32 Catcher_coordinates_parameter::y() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Catcher_coordinates_parameter.y)
- return y_;
- }
- inline void Catcher_coordinates_parameter::set_y(::google::protobuf::int32 value) {
- set_has_y();
- y_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Catcher_coordinates_parameter.y)
- }
- // optional int32 z = 4 [default = 0];
- inline bool Catcher_coordinates_parameter::has_z() const {
- return (_has_bits_[0] & 0x00000008u) != 0;
- }
- inline void Catcher_coordinates_parameter::set_has_z() {
- _has_bits_[0] |= 0x00000008u;
- }
- inline void Catcher_coordinates_parameter::clear_has_z() {
- _has_bits_[0] &= ~0x00000008u;
- }
- inline void Catcher_coordinates_parameter::clear_z() {
- z_ = 0;
- clear_has_z();
- }
- inline ::google::protobuf::int32 Catcher_coordinates_parameter::z() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Catcher_coordinates_parameter.z)
- return z_;
- }
- inline void Catcher_coordinates_parameter::set_z(::google::protobuf::int32 value) {
- set_has_z();
- z_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Catcher_coordinates_parameter.z)
- }
- // -------------------------------------------------------------------
- // Carrier_box_parameter
- // optional int32 x_min = 1 [default = -1000000];
- inline bool Carrier_box_parameter::has_x_min() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void Carrier_box_parameter::set_has_x_min() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void Carrier_box_parameter::clear_has_x_min() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void Carrier_box_parameter::clear_x_min() {
- x_min_ = -1000000;
- clear_has_x_min();
- }
- inline ::google::protobuf::int32 Carrier_box_parameter::x_min() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Carrier_box_parameter.x_min)
- return x_min_;
- }
- inline void Carrier_box_parameter::set_x_min(::google::protobuf::int32 value) {
- set_has_x_min();
- x_min_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Carrier_box_parameter.x_min)
- }
- // optional int32 x_max = 2 [default = 1000000];
- inline bool Carrier_box_parameter::has_x_max() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void Carrier_box_parameter::set_has_x_max() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void Carrier_box_parameter::clear_has_x_max() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void Carrier_box_parameter::clear_x_max() {
- x_max_ = 1000000;
- clear_has_x_max();
- }
- inline ::google::protobuf::int32 Carrier_box_parameter::x_max() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Carrier_box_parameter.x_max)
- return x_max_;
- }
- inline void Carrier_box_parameter::set_x_max(::google::protobuf::int32 value) {
- set_has_x_max();
- x_max_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Carrier_box_parameter.x_max)
- }
- // optional int32 y_min = 3 [default = -1000000];
- inline bool Carrier_box_parameter::has_y_min() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void Carrier_box_parameter::set_has_y_min() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void Carrier_box_parameter::clear_has_y_min() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline void Carrier_box_parameter::clear_y_min() {
- y_min_ = -1000000;
- clear_has_y_min();
- }
- inline ::google::protobuf::int32 Carrier_box_parameter::y_min() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Carrier_box_parameter.y_min)
- return y_min_;
- }
- inline void Carrier_box_parameter::set_y_min(::google::protobuf::int32 value) {
- set_has_y_min();
- y_min_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Carrier_box_parameter.y_min)
- }
- // optional int32 y_max = 4 [default = 1000000];
- inline bool Carrier_box_parameter::has_y_max() const {
- return (_has_bits_[0] & 0x00000008u) != 0;
- }
- inline void Carrier_box_parameter::set_has_y_max() {
- _has_bits_[0] |= 0x00000008u;
- }
- inline void Carrier_box_parameter::clear_has_y_max() {
- _has_bits_[0] &= ~0x00000008u;
- }
- inline void Carrier_box_parameter::clear_y_max() {
- y_max_ = 1000000;
- clear_has_y_max();
- }
- inline ::google::protobuf::int32 Carrier_box_parameter::y_max() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Carrier_box_parameter.y_max)
- return y_max_;
- }
- inline void Carrier_box_parameter::set_y_max(::google::protobuf::int32 value) {
- set_has_y_max();
- y_max_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Carrier_box_parameter.y_max)
- }
- // optional int32 z_min = 5 [default = -1000000];
- inline bool Carrier_box_parameter::has_z_min() const {
- return (_has_bits_[0] & 0x00000010u) != 0;
- }
- inline void Carrier_box_parameter::set_has_z_min() {
- _has_bits_[0] |= 0x00000010u;
- }
- inline void Carrier_box_parameter::clear_has_z_min() {
- _has_bits_[0] &= ~0x00000010u;
- }
- inline void Carrier_box_parameter::clear_z_min() {
- z_min_ = -1000000;
- clear_has_z_min();
- }
- inline ::google::protobuf::int32 Carrier_box_parameter::z_min() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Carrier_box_parameter.z_min)
- return z_min_;
- }
- inline void Carrier_box_parameter::set_z_min(::google::protobuf::int32 value) {
- set_has_z_min();
- z_min_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Carrier_box_parameter.z_min)
- }
- // optional int32 z_max = 6 [default = 1000000];
- inline bool Carrier_box_parameter::has_z_max() const {
- return (_has_bits_[0] & 0x00000020u) != 0;
- }
- inline void Carrier_box_parameter::set_has_z_max() {
- _has_bits_[0] |= 0x00000020u;
- }
- inline void Carrier_box_parameter::clear_has_z_max() {
- _has_bits_[0] &= ~0x00000020u;
- }
- inline void Carrier_box_parameter::clear_z_max() {
- z_max_ = 1000000;
- clear_has_z_max();
- }
- inline ::google::protobuf::int32 Carrier_box_parameter::z_max() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Carrier_box_parameter.z_max)
- return z_max_;
- }
- inline void Carrier_box_parameter::set_z_max(::google::protobuf::int32 value) {
- set_has_z_max();
- z_max_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Carrier_box_parameter.z_max)
- }
- // -------------------------------------------------------------------
- // Catcher_box_parameter
- // optional int32 x_min = 1 [default = -1000000];
- inline bool Catcher_box_parameter::has_x_min() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void Catcher_box_parameter::set_has_x_min() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void Catcher_box_parameter::clear_has_x_min() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void Catcher_box_parameter::clear_x_min() {
- x_min_ = -1000000;
- clear_has_x_min();
- }
- inline ::google::protobuf::int32 Catcher_box_parameter::x_min() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Catcher_box_parameter.x_min)
- return x_min_;
- }
- inline void Catcher_box_parameter::set_x_min(::google::protobuf::int32 value) {
- set_has_x_min();
- x_min_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Catcher_box_parameter.x_min)
- }
- // optional int32 x_max = 2 [default = 1000000];
- inline bool Catcher_box_parameter::has_x_max() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void Catcher_box_parameter::set_has_x_max() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void Catcher_box_parameter::clear_has_x_max() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void Catcher_box_parameter::clear_x_max() {
- x_max_ = 1000000;
- clear_has_x_max();
- }
- inline ::google::protobuf::int32 Catcher_box_parameter::x_max() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Catcher_box_parameter.x_max)
- return x_max_;
- }
- inline void Catcher_box_parameter::set_x_max(::google::protobuf::int32 value) {
- set_has_x_max();
- x_max_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Catcher_box_parameter.x_max)
- }
- // optional int32 y_min = 3 [default = -1000000];
- inline bool Catcher_box_parameter::has_y_min() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void Catcher_box_parameter::set_has_y_min() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void Catcher_box_parameter::clear_has_y_min() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline void Catcher_box_parameter::clear_y_min() {
- y_min_ = -1000000;
- clear_has_y_min();
- }
- inline ::google::protobuf::int32 Catcher_box_parameter::y_min() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Catcher_box_parameter.y_min)
- return y_min_;
- }
- inline void Catcher_box_parameter::set_y_min(::google::protobuf::int32 value) {
- set_has_y_min();
- y_min_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Catcher_box_parameter.y_min)
- }
- // optional int32 y_max = 4 [default = 1000000];
- inline bool Catcher_box_parameter::has_y_max() const {
- return (_has_bits_[0] & 0x00000008u) != 0;
- }
- inline void Catcher_box_parameter::set_has_y_max() {
- _has_bits_[0] |= 0x00000008u;
- }
- inline void Catcher_box_parameter::clear_has_y_max() {
- _has_bits_[0] &= ~0x00000008u;
- }
- inline void Catcher_box_parameter::clear_y_max() {
- y_max_ = 1000000;
- clear_has_y_max();
- }
- inline ::google::protobuf::int32 Catcher_box_parameter::y_max() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Catcher_box_parameter.y_max)
- return y_max_;
- }
- inline void Catcher_box_parameter::set_y_max(::google::protobuf::int32 value) {
- set_has_y_max();
- y_max_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Catcher_box_parameter.y_max)
- }
- // optional int32 z_min = 5 [default = -1000000];
- inline bool Catcher_box_parameter::has_z_min() const {
- return (_has_bits_[0] & 0x00000010u) != 0;
- }
- inline void Catcher_box_parameter::set_has_z_min() {
- _has_bits_[0] |= 0x00000010u;
- }
- inline void Catcher_box_parameter::clear_has_z_min() {
- _has_bits_[0] &= ~0x00000010u;
- }
- inline void Catcher_box_parameter::clear_z_min() {
- z_min_ = -1000000;
- clear_has_z_min();
- }
- inline ::google::protobuf::int32 Catcher_box_parameter::z_min() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Catcher_box_parameter.z_min)
- return z_min_;
- }
- inline void Catcher_box_parameter::set_z_min(::google::protobuf::int32 value) {
- set_has_z_min();
- z_min_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Catcher_box_parameter.z_min)
- }
- // optional int32 z_max = 6 [default = 1000000];
- inline bool Catcher_box_parameter::has_z_max() const {
- return (_has_bits_[0] & 0x00000020u) != 0;
- }
- inline void Catcher_box_parameter::set_has_z_max() {
- _has_bits_[0] |= 0x00000020u;
- }
- inline void Catcher_box_parameter::clear_has_z_max() {
- _has_bits_[0] &= ~0x00000020u;
- }
- inline void Catcher_box_parameter::clear_z_max() {
- z_max_ = 1000000;
- clear_has_z_max();
- }
- inline ::google::protobuf::int32 Catcher_box_parameter::z_max() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Catcher_box_parameter.z_max)
- return z_max_;
- }
- inline void Catcher_box_parameter::set_z_max(::google::protobuf::int32 value) {
- set_has_z_max();
- z_max_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Catcher_box_parameter.z_max)
- }
- // -------------------------------------------------------------------
- // Axis_range_parameter
- // optional int32 min = 1 [default = -1000000];
- inline bool Axis_range_parameter::has_min() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void Axis_range_parameter::set_has_min() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void Axis_range_parameter::clear_has_min() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void Axis_range_parameter::clear_min() {
- min_ = -1000000;
- clear_has_min();
- }
- inline ::google::protobuf::int32 Axis_range_parameter::min() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Axis_range_parameter.min)
- return min_;
- }
- inline void Axis_range_parameter::set_min(::google::protobuf::int32 value) {
- set_has_min();
- min_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Axis_range_parameter.min)
- }
- // optional int32 max = 2 [default = 1000000];
- inline bool Axis_range_parameter::has_max() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void Axis_range_parameter::set_has_max() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void Axis_range_parameter::clear_has_max() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void Axis_range_parameter::clear_max() {
- max_ = 1000000;
- clear_has_max();
- }
- inline ::google::protobuf::int32 Axis_range_parameter::max() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Axis_range_parameter.max)
- return max_;
- }
- inline void Axis_range_parameter::set_max(::google::protobuf::int32 value) {
- set_has_max();
- max_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Axis_range_parameter.max)
- }
- // -------------------------------------------------------------------
- // Dispatch_coordinates_parameter_all
- // repeated .Dispatch_proto.Packspace_coordinates_parameter packspace_coordinates_parameters = 1;
- inline int Dispatch_coordinates_parameter_all::packspace_coordinates_parameters_size() const {
- return packspace_coordinates_parameters_.size();
- }
- inline void Dispatch_coordinates_parameter_all::clear_packspace_coordinates_parameters() {
- packspace_coordinates_parameters_.Clear();
- }
- inline const ::Dispatch_proto::Packspace_coordinates_parameter& Dispatch_coordinates_parameter_all::packspace_coordinates_parameters(int index) const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.packspace_coordinates_parameters)
- return packspace_coordinates_parameters_.Get(index);
- }
- inline ::Dispatch_proto::Packspace_coordinates_parameter* Dispatch_coordinates_parameter_all::mutable_packspace_coordinates_parameters(int index) {
- // @@protoc_insertion_point(field_mutable:Dispatch_proto.Dispatch_coordinates_parameter_all.packspace_coordinates_parameters)
- return packspace_coordinates_parameters_.Mutable(index);
- }
- inline ::Dispatch_proto::Packspace_coordinates_parameter* Dispatch_coordinates_parameter_all::add_packspace_coordinates_parameters() {
- // @@protoc_insertion_point(field_add:Dispatch_proto.Dispatch_coordinates_parameter_all.packspace_coordinates_parameters)
- return packspace_coordinates_parameters_.Add();
- }
- inline ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Packspace_coordinates_parameter >*
- Dispatch_coordinates_parameter_all::mutable_packspace_coordinates_parameters() {
- // @@protoc_insertion_point(field_mutable_list:Dispatch_proto.Dispatch_coordinates_parameter_all.packspace_coordinates_parameters)
- return &packspace_coordinates_parameters_;
- }
- inline const ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Packspace_coordinates_parameter >&
- Dispatch_coordinates_parameter_all::packspace_coordinates_parameters() const {
- // @@protoc_insertion_point(field_list:Dispatch_proto.Dispatch_coordinates_parameter_all.packspace_coordinates_parameters)
- return packspace_coordinates_parameters_;
- }
- // repeated .Dispatch_proto.Passageway_coordinates_parameter passageway_coordinates_parameters = 2;
- inline int Dispatch_coordinates_parameter_all::passageway_coordinates_parameters_size() const {
- return passageway_coordinates_parameters_.size();
- }
- inline void Dispatch_coordinates_parameter_all::clear_passageway_coordinates_parameters() {
- passageway_coordinates_parameters_.Clear();
- }
- inline const ::Dispatch_proto::Passageway_coordinates_parameter& Dispatch_coordinates_parameter_all::passageway_coordinates_parameters(int index) const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_coordinates_parameters)
- return passageway_coordinates_parameters_.Get(index);
- }
- inline ::Dispatch_proto::Passageway_coordinates_parameter* Dispatch_coordinates_parameter_all::mutable_passageway_coordinates_parameters(int index) {
- // @@protoc_insertion_point(field_mutable:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_coordinates_parameters)
- return passageway_coordinates_parameters_.Mutable(index);
- }
- inline ::Dispatch_proto::Passageway_coordinates_parameter* Dispatch_coordinates_parameter_all::add_passageway_coordinates_parameters() {
- // @@protoc_insertion_point(field_add:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_coordinates_parameters)
- return passageway_coordinates_parameters_.Add();
- }
- inline ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Passageway_coordinates_parameter >*
- Dispatch_coordinates_parameter_all::mutable_passageway_coordinates_parameters() {
- // @@protoc_insertion_point(field_mutable_list:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_coordinates_parameters)
- return &passageway_coordinates_parameters_;
- }
- inline const ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Passageway_coordinates_parameter >&
- Dispatch_coordinates_parameter_all::passageway_coordinates_parameters() const {
- // @@protoc_insertion_point(field_list:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_coordinates_parameters)
- return passageway_coordinates_parameters_;
- }
- // repeated .Dispatch_proto.Carrier_coordinates_parameter carrier_coordinates_parameters = 3;
- inline int Dispatch_coordinates_parameter_all::carrier_coordinates_parameters_size() const {
- return carrier_coordinates_parameters_.size();
- }
- inline void Dispatch_coordinates_parameter_all::clear_carrier_coordinates_parameters() {
- carrier_coordinates_parameters_.Clear();
- }
- inline const ::Dispatch_proto::Carrier_coordinates_parameter& Dispatch_coordinates_parameter_all::carrier_coordinates_parameters(int index) const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_coordinates_parameters)
- return carrier_coordinates_parameters_.Get(index);
- }
- inline ::Dispatch_proto::Carrier_coordinates_parameter* Dispatch_coordinates_parameter_all::mutable_carrier_coordinates_parameters(int index) {
- // @@protoc_insertion_point(field_mutable:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_coordinates_parameters)
- return carrier_coordinates_parameters_.Mutable(index);
- }
- inline ::Dispatch_proto::Carrier_coordinates_parameter* Dispatch_coordinates_parameter_all::add_carrier_coordinates_parameters() {
- // @@protoc_insertion_point(field_add:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_coordinates_parameters)
- return carrier_coordinates_parameters_.Add();
- }
- inline ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Carrier_coordinates_parameter >*
- Dispatch_coordinates_parameter_all::mutable_carrier_coordinates_parameters() {
- // @@protoc_insertion_point(field_mutable_list:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_coordinates_parameters)
- return &carrier_coordinates_parameters_;
- }
- inline const ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Carrier_coordinates_parameter >&
- Dispatch_coordinates_parameter_all::carrier_coordinates_parameters() const {
- // @@protoc_insertion_point(field_list:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_coordinates_parameters)
- return carrier_coordinates_parameters_;
- }
- // repeated .Dispatch_proto.Catcher_coordinates_parameter catcher_coordinates_parameters = 4;
- inline int Dispatch_coordinates_parameter_all::catcher_coordinates_parameters_size() const {
- return catcher_coordinates_parameters_.size();
- }
- inline void Dispatch_coordinates_parameter_all::clear_catcher_coordinates_parameters() {
- catcher_coordinates_parameters_.Clear();
- }
- inline const ::Dispatch_proto::Catcher_coordinates_parameter& Dispatch_coordinates_parameter_all::catcher_coordinates_parameters(int index) const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_coordinates_parameters)
- return catcher_coordinates_parameters_.Get(index);
- }
- inline ::Dispatch_proto::Catcher_coordinates_parameter* Dispatch_coordinates_parameter_all::mutable_catcher_coordinates_parameters(int index) {
- // @@protoc_insertion_point(field_mutable:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_coordinates_parameters)
- return catcher_coordinates_parameters_.Mutable(index);
- }
- inline ::Dispatch_proto::Catcher_coordinates_parameter* Dispatch_coordinates_parameter_all::add_catcher_coordinates_parameters() {
- // @@protoc_insertion_point(field_add:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_coordinates_parameters)
- return catcher_coordinates_parameters_.Add();
- }
- inline ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Catcher_coordinates_parameter >*
- Dispatch_coordinates_parameter_all::mutable_catcher_coordinates_parameters() {
- // @@protoc_insertion_point(field_mutable_list:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_coordinates_parameters)
- return &catcher_coordinates_parameters_;
- }
- inline const ::google::protobuf::RepeatedPtrField< ::Dispatch_proto::Catcher_coordinates_parameter >&
- Dispatch_coordinates_parameter_all::catcher_coordinates_parameters() const {
- // @@protoc_insertion_point(field_list:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_coordinates_parameters)
- return catcher_coordinates_parameters_;
- }
- // optional .Dispatch_proto.Carrier_box_parameter carrier_box_parameters = 5;
- inline bool Dispatch_coordinates_parameter_all::has_carrier_box_parameters() const {
- return (_has_bits_[0] & 0x00000001u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_carrier_box_parameters() {
- _has_bits_[0] |= 0x00000001u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_carrier_box_parameters() {
- _has_bits_[0] &= ~0x00000001u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_carrier_box_parameters() {
- if (carrier_box_parameters_ != NULL) carrier_box_parameters_->Clear();
- clear_has_carrier_box_parameters();
- }
- inline const ::Dispatch_proto::Carrier_box_parameter& Dispatch_coordinates_parameter_all::carrier_box_parameters() const {
- const ::Dispatch_proto::Carrier_box_parameter* p = carrier_box_parameters_;
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_box_parameters)
- return p != NULL ? *p : *reinterpret_cast<const ::Dispatch_proto::Carrier_box_parameter*>(
- &::Dispatch_proto::_Carrier_box_parameter_default_instance_);
- }
- inline ::Dispatch_proto::Carrier_box_parameter* Dispatch_coordinates_parameter_all::release_carrier_box_parameters() {
- // @@protoc_insertion_point(field_release:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_box_parameters)
- clear_has_carrier_box_parameters();
- ::Dispatch_proto::Carrier_box_parameter* temp = carrier_box_parameters_;
- carrier_box_parameters_ = NULL;
- return temp;
- }
- inline ::Dispatch_proto::Carrier_box_parameter* Dispatch_coordinates_parameter_all::mutable_carrier_box_parameters() {
- set_has_carrier_box_parameters();
- if (carrier_box_parameters_ == NULL) {
- carrier_box_parameters_ = new ::Dispatch_proto::Carrier_box_parameter;
- }
- // @@protoc_insertion_point(field_mutable:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_box_parameters)
- return carrier_box_parameters_;
- }
- inline void Dispatch_coordinates_parameter_all::set_allocated_carrier_box_parameters(::Dispatch_proto::Carrier_box_parameter* carrier_box_parameters) {
- ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
- if (message_arena == NULL) {
- delete carrier_box_parameters_;
- }
- if (carrier_box_parameters) {
- ::google::protobuf::Arena* submessage_arena = NULL;
- if (message_arena != submessage_arena) {
- carrier_box_parameters = ::google::protobuf::internal::GetOwnedMessage(
- message_arena, carrier_box_parameters, submessage_arena);
- }
- set_has_carrier_box_parameters();
- } else {
- clear_has_carrier_box_parameters();
- }
- carrier_box_parameters_ = carrier_box_parameters;
- // @@protoc_insertion_point(field_set_allocated:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_box_parameters)
- }
- // optional .Dispatch_proto.Catcher_box_parameter catcher_box_parameters = 6;
- inline bool Dispatch_coordinates_parameter_all::has_catcher_box_parameters() const {
- return (_has_bits_[0] & 0x00000002u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_catcher_box_parameters() {
- _has_bits_[0] |= 0x00000002u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_catcher_box_parameters() {
- _has_bits_[0] &= ~0x00000002u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_catcher_box_parameters() {
- if (catcher_box_parameters_ != NULL) catcher_box_parameters_->Clear();
- clear_has_catcher_box_parameters();
- }
- inline const ::Dispatch_proto::Catcher_box_parameter& Dispatch_coordinates_parameter_all::catcher_box_parameters() const {
- const ::Dispatch_proto::Catcher_box_parameter* p = catcher_box_parameters_;
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_box_parameters)
- return p != NULL ? *p : *reinterpret_cast<const ::Dispatch_proto::Catcher_box_parameter*>(
- &::Dispatch_proto::_Catcher_box_parameter_default_instance_);
- }
- inline ::Dispatch_proto::Catcher_box_parameter* Dispatch_coordinates_parameter_all::release_catcher_box_parameters() {
- // @@protoc_insertion_point(field_release:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_box_parameters)
- clear_has_catcher_box_parameters();
- ::Dispatch_proto::Catcher_box_parameter* temp = catcher_box_parameters_;
- catcher_box_parameters_ = NULL;
- return temp;
- }
- inline ::Dispatch_proto::Catcher_box_parameter* Dispatch_coordinates_parameter_all::mutable_catcher_box_parameters() {
- set_has_catcher_box_parameters();
- if (catcher_box_parameters_ == NULL) {
- catcher_box_parameters_ = new ::Dispatch_proto::Catcher_box_parameter;
- }
- // @@protoc_insertion_point(field_mutable:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_box_parameters)
- return catcher_box_parameters_;
- }
- inline void Dispatch_coordinates_parameter_all::set_allocated_catcher_box_parameters(::Dispatch_proto::Catcher_box_parameter* catcher_box_parameters) {
- ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
- if (message_arena == NULL) {
- delete catcher_box_parameters_;
- }
- if (catcher_box_parameters) {
- ::google::protobuf::Arena* submessage_arena = NULL;
- if (message_arena != submessage_arena) {
- catcher_box_parameters = ::google::protobuf::internal::GetOwnedMessage(
- message_arena, catcher_box_parameters, submessage_arena);
- }
- set_has_catcher_box_parameters();
- } else {
- clear_has_catcher_box_parameters();
- }
- catcher_box_parameters_ = catcher_box_parameters;
- // @@protoc_insertion_point(field_set_allocated:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_box_parameters)
- }
- // optional int32 catcher_b_min = 7;
- inline bool Dispatch_coordinates_parameter_all::has_catcher_b_min() const {
- return (_has_bits_[0] & 0x00000004u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_catcher_b_min() {
- _has_bits_[0] |= 0x00000004u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_catcher_b_min() {
- _has_bits_[0] &= ~0x00000004u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_catcher_b_min() {
- catcher_b_min_ = 0;
- clear_has_catcher_b_min();
- }
- inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::catcher_b_min() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_b_min)
- return catcher_b_min_;
- }
- inline void Dispatch_coordinates_parameter_all::set_catcher_b_min(::google::protobuf::int32 value) {
- set_has_catcher_b_min();
- catcher_b_min_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_b_min)
- }
- // optional int32 catcher_b_max = 8;
- inline bool Dispatch_coordinates_parameter_all::has_catcher_b_max() const {
- return (_has_bits_[0] & 0x00000008u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_catcher_b_max() {
- _has_bits_[0] |= 0x00000008u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_catcher_b_max() {
- _has_bits_[0] &= ~0x00000008u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_catcher_b_max() {
- catcher_b_max_ = 0;
- clear_has_catcher_b_max();
- }
- inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::catcher_b_max() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_b_max)
- return catcher_b_max_;
- }
- inline void Dispatch_coordinates_parameter_all::set_catcher_b_max(::google::protobuf::int32 value) {
- set_has_catcher_b_max();
- catcher_b_max_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_b_max)
- }
- // optional int32 catcher_d1_min = 9;
- inline bool Dispatch_coordinates_parameter_all::has_catcher_d1_min() const {
- return (_has_bits_[0] & 0x00000010u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_catcher_d1_min() {
- _has_bits_[0] |= 0x00000010u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_catcher_d1_min() {
- _has_bits_[0] &= ~0x00000010u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_catcher_d1_min() {
- catcher_d1_min_ = 0;
- clear_has_catcher_d1_min();
- }
- inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::catcher_d1_min() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_d1_min)
- return catcher_d1_min_;
- }
- inline void Dispatch_coordinates_parameter_all::set_catcher_d1_min(::google::protobuf::int32 value) {
- set_has_catcher_d1_min();
- catcher_d1_min_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_d1_min)
- }
- // optional int32 catcher_d1_max = 10;
- inline bool Dispatch_coordinates_parameter_all::has_catcher_d1_max() const {
- return (_has_bits_[0] & 0x00000020u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_catcher_d1_max() {
- _has_bits_[0] |= 0x00000020u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_catcher_d1_max() {
- _has_bits_[0] &= ~0x00000020u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_catcher_d1_max() {
- catcher_d1_max_ = 0;
- clear_has_catcher_d1_max();
- }
- inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::catcher_d1_max() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_d1_max)
- return catcher_d1_max_;
- }
- inline void Dispatch_coordinates_parameter_all::set_catcher_d1_max(::google::protobuf::int32 value) {
- set_has_catcher_d1_max();
- catcher_d1_max_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_d1_max)
- }
- // optional int32 catcher_d2_min = 11;
- inline bool Dispatch_coordinates_parameter_all::has_catcher_d2_min() const {
- return (_has_bits_[0] & 0x00000040u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_catcher_d2_min() {
- _has_bits_[0] |= 0x00000040u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_catcher_d2_min() {
- _has_bits_[0] &= ~0x00000040u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_catcher_d2_min() {
- catcher_d2_min_ = 0;
- clear_has_catcher_d2_min();
- }
- inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::catcher_d2_min() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_d2_min)
- return catcher_d2_min_;
- }
- inline void Dispatch_coordinates_parameter_all::set_catcher_d2_min(::google::protobuf::int32 value) {
- set_has_catcher_d2_min();
- catcher_d2_min_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_d2_min)
- }
- // optional int32 catcher_d2_max = 12;
- inline bool Dispatch_coordinates_parameter_all::has_catcher_d2_max() const {
- return (_has_bits_[0] & 0x00000080u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_catcher_d2_max() {
- _has_bits_[0] |= 0x00000080u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_catcher_d2_max() {
- _has_bits_[0] &= ~0x00000080u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_catcher_d2_max() {
- catcher_d2_max_ = 0;
- clear_has_catcher_d2_max();
- }
- inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::catcher_d2_max() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_d2_max)
- return catcher_d2_max_;
- }
- inline void Dispatch_coordinates_parameter_all::set_catcher_d2_max(::google::protobuf::int32 value) {
- set_has_catcher_d2_max();
- catcher_d2_max_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_d2_max)
- }
- // optional int32 default_wheelbase = 13;
- inline bool Dispatch_coordinates_parameter_all::has_default_wheelbase() const {
- return (_has_bits_[0] & 0x00000100u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_default_wheelbase() {
- _has_bits_[0] |= 0x00000100u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_default_wheelbase() {
- _has_bits_[0] &= ~0x00000100u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_default_wheelbase() {
- default_wheelbase_ = 0;
- clear_has_default_wheelbase();
- }
- inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::default_wheelbase() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.default_wheelbase)
- return default_wheelbase_;
- }
- inline void Dispatch_coordinates_parameter_all::set_default_wheelbase(::google::protobuf::int32 value) {
- set_has_default_wheelbase();
- default_wheelbase_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.default_wheelbase)
- }
- // optional int32 catcher_1th_floor_z = 14;
- inline bool Dispatch_coordinates_parameter_all::has_catcher_1th_floor_z() const {
- return (_has_bits_[0] & 0x00000200u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_catcher_1th_floor_z() {
- _has_bits_[0] |= 0x00000200u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_catcher_1th_floor_z() {
- _has_bits_[0] &= ~0x00000200u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_catcher_1th_floor_z() {
- catcher_1th_floor_z_ = 0;
- clear_has_catcher_1th_floor_z();
- }
- inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::catcher_1th_floor_z() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_1th_floor_z)
- return catcher_1th_floor_z_;
- }
- inline void Dispatch_coordinates_parameter_all::set_catcher_1th_floor_z(::google::protobuf::int32 value) {
- set_has_catcher_1th_floor_z();
- catcher_1th_floor_z_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_1th_floor_z)
- }
- // optional int32 catcher_2th_floor_z = 15;
- inline bool Dispatch_coordinates_parameter_all::has_catcher_2th_floor_z() const {
- return (_has_bits_[0] & 0x00000400u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_catcher_2th_floor_z() {
- _has_bits_[0] |= 0x00000400u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_catcher_2th_floor_z() {
- _has_bits_[0] &= ~0x00000400u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_catcher_2th_floor_z() {
- catcher_2th_floor_z_ = 0;
- clear_has_catcher_2th_floor_z();
- }
- inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::catcher_2th_floor_z() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_2th_floor_z)
- return catcher_2th_floor_z_;
- }
- inline void Dispatch_coordinates_parameter_all::set_catcher_2th_floor_z(::google::protobuf::int32 value) {
- set_has_catcher_2th_floor_z();
- catcher_2th_floor_z_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_2th_floor_z)
- }
- // optional int32 catcher_3th_floor_z = 16;
- inline bool Dispatch_coordinates_parameter_all::has_catcher_3th_floor_z() const {
- return (_has_bits_[0] & 0x00000800u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_catcher_3th_floor_z() {
- _has_bits_[0] |= 0x00000800u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_catcher_3th_floor_z() {
- _has_bits_[0] &= ~0x00000800u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_catcher_3th_floor_z() {
- catcher_3th_floor_z_ = 0;
- clear_has_catcher_3th_floor_z();
- }
- inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::catcher_3th_floor_z() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_3th_floor_z)
- return catcher_3th_floor_z_;
- }
- inline void Dispatch_coordinates_parameter_all::set_catcher_3th_floor_z(::google::protobuf::int32 value) {
- set_has_catcher_3th_floor_z();
- catcher_3th_floor_z_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_3th_floor_z)
- }
- // optional int32 catcher_4th_floor_z = 17;
- inline bool Dispatch_coordinates_parameter_all::has_catcher_4th_floor_z() const {
- return (_has_bits_[0] & 0x00001000u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_catcher_4th_floor_z() {
- _has_bits_[0] |= 0x00001000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_catcher_4th_floor_z() {
- _has_bits_[0] &= ~0x00001000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_catcher_4th_floor_z() {
- catcher_4th_floor_z_ = 0;
- clear_has_catcher_4th_floor_z();
- }
- inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::catcher_4th_floor_z() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_4th_floor_z)
- return catcher_4th_floor_z_;
- }
- inline void Dispatch_coordinates_parameter_all::set_catcher_4th_floor_z(::google::protobuf::int32 value) {
- set_has_catcher_4th_floor_z();
- catcher_4th_floor_z_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_4th_floor_z)
- }
- // optional int32 carrier_1th_floor_z = 18;
- inline bool Dispatch_coordinates_parameter_all::has_carrier_1th_floor_z() const {
- return (_has_bits_[0] & 0x00002000u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_carrier_1th_floor_z() {
- _has_bits_[0] |= 0x00002000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_carrier_1th_floor_z() {
- _has_bits_[0] &= ~0x00002000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_carrier_1th_floor_z() {
- carrier_1th_floor_z_ = 0;
- clear_has_carrier_1th_floor_z();
- }
- inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::carrier_1th_floor_z() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_1th_floor_z)
- return carrier_1th_floor_z_;
- }
- inline void Dispatch_coordinates_parameter_all::set_carrier_1th_floor_z(::google::protobuf::int32 value) {
- set_has_carrier_1th_floor_z();
- carrier_1th_floor_z_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_1th_floor_z)
- }
- // optional int32 carrier_2th_floor_z = 19;
- inline bool Dispatch_coordinates_parameter_all::has_carrier_2th_floor_z() const {
- return (_has_bits_[0] & 0x00004000u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_carrier_2th_floor_z() {
- _has_bits_[0] |= 0x00004000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_carrier_2th_floor_z() {
- _has_bits_[0] &= ~0x00004000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_carrier_2th_floor_z() {
- carrier_2th_floor_z_ = 0;
- clear_has_carrier_2th_floor_z();
- }
- inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::carrier_2th_floor_z() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_2th_floor_z)
- return carrier_2th_floor_z_;
- }
- inline void Dispatch_coordinates_parameter_all::set_carrier_2th_floor_z(::google::protobuf::int32 value) {
- set_has_carrier_2th_floor_z();
- carrier_2th_floor_z_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_2th_floor_z)
- }
- // optional int32 carrier_3th_floor_z = 20;
- inline bool Dispatch_coordinates_parameter_all::has_carrier_3th_floor_z() const {
- return (_has_bits_[0] & 0x00008000u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_carrier_3th_floor_z() {
- _has_bits_[0] |= 0x00008000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_carrier_3th_floor_z() {
- _has_bits_[0] &= ~0x00008000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_carrier_3th_floor_z() {
- carrier_3th_floor_z_ = 0;
- clear_has_carrier_3th_floor_z();
- }
- inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::carrier_3th_floor_z() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_3th_floor_z)
- return carrier_3th_floor_z_;
- }
- inline void Dispatch_coordinates_parameter_all::set_carrier_3th_floor_z(::google::protobuf::int32 value) {
- set_has_carrier_3th_floor_z();
- carrier_3th_floor_z_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_3th_floor_z)
- }
- // optional int32 carrier_4th_floor_z = 21;
- inline bool Dispatch_coordinates_parameter_all::has_carrier_4th_floor_z() const {
- return (_has_bits_[0] & 0x00010000u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_carrier_4th_floor_z() {
- _has_bits_[0] |= 0x00010000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_carrier_4th_floor_z() {
- _has_bits_[0] &= ~0x00010000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_carrier_4th_floor_z() {
- carrier_4th_floor_z_ = 0;
- clear_has_carrier_4th_floor_z();
- }
- inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::carrier_4th_floor_z() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_4th_floor_z)
- return carrier_4th_floor_z_;
- }
- inline void Dispatch_coordinates_parameter_all::set_carrier_4th_floor_z(::google::protobuf::int32 value) {
- set_has_carrier_4th_floor_z();
- carrier_4th_floor_z_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_4th_floor_z)
- }
- // optional int32 catcher_d1_d2_distance = 22;
- inline bool Dispatch_coordinates_parameter_all::has_catcher_d1_d2_distance() const {
- return (_has_bits_[0] & 0x00020000u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_catcher_d1_d2_distance() {
- _has_bits_[0] |= 0x00020000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_catcher_d1_d2_distance() {
- _has_bits_[0] &= ~0x00020000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_catcher_d1_d2_distance() {
- catcher_d1_d2_distance_ = 0;
- clear_has_catcher_d1_d2_distance();
- }
- inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::catcher_d1_d2_distance() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_d1_d2_distance)
- return catcher_d1_d2_distance_;
- }
- inline void Dispatch_coordinates_parameter_all::set_catcher_d1_d2_distance(::google::protobuf::int32 value) {
- set_has_catcher_d1_d2_distance();
- catcher_d1_d2_distance_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_d1_d2_distance)
- }
- // optional int32 catcher_wheel_base_limit = 23;
- inline bool Dispatch_coordinates_parameter_all::has_catcher_wheel_base_limit() const {
- return (_has_bits_[0] & 0x00040000u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_catcher_wheel_base_limit() {
- _has_bits_[0] |= 0x00040000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_catcher_wheel_base_limit() {
- _has_bits_[0] &= ~0x00040000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_catcher_wheel_base_limit() {
- catcher_wheel_base_limit_ = 0;
- clear_has_catcher_wheel_base_limit();
- }
- inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::catcher_wheel_base_limit() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_wheel_base_limit)
- return catcher_wheel_base_limit_;
- }
- inline void Dispatch_coordinates_parameter_all::set_catcher_wheel_base_limit(::google::protobuf::int32 value) {
- set_has_catcher_wheel_base_limit();
- catcher_wheel_base_limit_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.catcher_wheel_base_limit)
- }
- // optional int32 carrier_y_y1_distance = 24;
- inline bool Dispatch_coordinates_parameter_all::has_carrier_y_y1_distance() const {
- return (_has_bits_[0] & 0x00080000u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_carrier_y_y1_distance() {
- _has_bits_[0] |= 0x00080000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_carrier_y_y1_distance() {
- _has_bits_[0] &= ~0x00080000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_carrier_y_y1_distance() {
- carrier_y_y1_distance_ = 0;
- clear_has_carrier_y_y1_distance();
- }
- inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::carrier_y_y1_distance() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_y_y1_distance)
- return carrier_y_y1_distance_;
- }
- inline void Dispatch_coordinates_parameter_all::set_carrier_y_y1_distance(::google::protobuf::int32 value) {
- set_has_carrier_y_y1_distance();
- carrier_y_y1_distance_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_y_y1_distance)
- }
- // optional int32 carrier_default_y1_back = 25;
- inline bool Dispatch_coordinates_parameter_all::has_carrier_default_y1_back() const {
- return (_has_bits_[0] & 0x00100000u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_carrier_default_y1_back() {
- _has_bits_[0] |= 0x00100000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_carrier_default_y1_back() {
- _has_bits_[0] &= ~0x00100000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_carrier_default_y1_back() {
- carrier_default_y1_back_ = 0;
- clear_has_carrier_default_y1_back();
- }
- inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::carrier_default_y1_back() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_default_y1_back)
- return carrier_default_y1_back_;
- }
- inline void Dispatch_coordinates_parameter_all::set_carrier_default_y1_back(::google::protobuf::int32 value) {
- set_has_carrier_default_y1_back();
- carrier_default_y1_back_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_default_y1_back)
- }
- // optional int32 carrier_default_y1_leave = 26;
- inline bool Dispatch_coordinates_parameter_all::has_carrier_default_y1_leave() const {
- return (_has_bits_[0] & 0x00200000u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_carrier_default_y1_leave() {
- _has_bits_[0] |= 0x00200000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_carrier_default_y1_leave() {
- _has_bits_[0] &= ~0x00200000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_carrier_default_y1_leave() {
- carrier_default_y1_leave_ = 0;
- clear_has_carrier_default_y1_leave();
- }
- inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::carrier_default_y1_leave() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_default_y1_leave)
- return carrier_default_y1_leave_;
- }
- inline void Dispatch_coordinates_parameter_all::set_carrier_default_y1_leave(::google::protobuf::int32 value) {
- set_has_carrier_default_y1_leave();
- carrier_default_y1_leave_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_default_y1_leave)
- }
- // optional int32 carrier_default_y_back = 27;
- inline bool Dispatch_coordinates_parameter_all::has_carrier_default_y_back() const {
- return (_has_bits_[0] & 0x00400000u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_carrier_default_y_back() {
- _has_bits_[0] |= 0x00400000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_carrier_default_y_back() {
- _has_bits_[0] &= ~0x00400000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_carrier_default_y_back() {
- carrier_default_y_back_ = 0;
- clear_has_carrier_default_y_back();
- }
- inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::carrier_default_y_back() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_default_y_back)
- return carrier_default_y_back_;
- }
- inline void Dispatch_coordinates_parameter_all::set_carrier_default_y_back(::google::protobuf::int32 value) {
- set_has_carrier_default_y_back();
- carrier_default_y_back_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_default_y_back)
- }
- // optional int32 carrier_default_y_leave = 28;
- inline bool Dispatch_coordinates_parameter_all::has_carrier_default_y_leave() const {
- return (_has_bits_[0] & 0x00800000u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_carrier_default_y_leave() {
- _has_bits_[0] |= 0x00800000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_carrier_default_y_leave() {
- _has_bits_[0] &= ~0x00800000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_carrier_default_y_leave() {
- carrier_default_y_leave_ = 0;
- clear_has_carrier_default_y_leave();
- }
- inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::carrier_default_y_leave() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_default_y_leave)
- return carrier_default_y_leave_;
- }
- inline void Dispatch_coordinates_parameter_all::set_carrier_default_y_leave(::google::protobuf::int32 value) {
- set_has_carrier_default_y_leave();
- carrier_default_y_leave_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_default_y_leave)
- }
- // optional int32 carrier_default_x_left = 29;
- inline bool Dispatch_coordinates_parameter_all::has_carrier_default_x_left() const {
- return (_has_bits_[0] & 0x01000000u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_carrier_default_x_left() {
- _has_bits_[0] |= 0x01000000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_carrier_default_x_left() {
- _has_bits_[0] &= ~0x01000000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_carrier_default_x_left() {
- carrier_default_x_left_ = 0;
- clear_has_carrier_default_x_left();
- }
- inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::carrier_default_x_left() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_default_x_left)
- return carrier_default_x_left_;
- }
- inline void Dispatch_coordinates_parameter_all::set_carrier_default_x_left(::google::protobuf::int32 value) {
- set_has_carrier_default_x_left();
- carrier_default_x_left_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_default_x_left)
- }
- // optional int32 carrier_default_x_right = 30;
- inline bool Dispatch_coordinates_parameter_all::has_carrier_default_x_right() const {
- return (_has_bits_[0] & 0x02000000u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_carrier_default_x_right() {
- _has_bits_[0] |= 0x02000000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_carrier_default_x_right() {
- _has_bits_[0] &= ~0x02000000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_carrier_default_x_right() {
- carrier_default_x_right_ = 0;
- clear_has_carrier_default_x_right();
- }
- inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::carrier_default_x_right() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_default_x_right)
- return carrier_default_x_right_;
- }
- inline void Dispatch_coordinates_parameter_all::set_carrier_default_x_right(::google::protobuf::int32 value) {
- set_has_carrier_default_x_right();
- carrier_default_x_right_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.carrier_default_x_right)
- }
- // optional int32 passageway_terminal_id_min = 31;
- inline bool Dispatch_coordinates_parameter_all::has_passageway_terminal_id_min() const {
- return (_has_bits_[0] & 0x04000000u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_passageway_terminal_id_min() {
- _has_bits_[0] |= 0x04000000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_passageway_terminal_id_min() {
- _has_bits_[0] &= ~0x04000000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_passageway_terminal_id_min() {
- passageway_terminal_id_min_ = 0;
- clear_has_passageway_terminal_id_min();
- }
- inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::passageway_terminal_id_min() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_terminal_id_min)
- return passageway_terminal_id_min_;
- }
- inline void Dispatch_coordinates_parameter_all::set_passageway_terminal_id_min(::google::protobuf::int32 value) {
- set_has_passageway_terminal_id_min();
- passageway_terminal_id_min_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_terminal_id_min)
- }
- // optional int32 passageway_terminal_id_max = 32;
- inline bool Dispatch_coordinates_parameter_all::has_passageway_terminal_id_max() const {
- return (_has_bits_[0] & 0x08000000u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_passageway_terminal_id_max() {
- _has_bits_[0] |= 0x08000000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_passageway_terminal_id_max() {
- _has_bits_[0] &= ~0x08000000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_passageway_terminal_id_max() {
- passageway_terminal_id_max_ = 0;
- clear_has_passageway_terminal_id_max();
- }
- inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::passageway_terminal_id_max() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_terminal_id_max)
- return passageway_terminal_id_max_;
- }
- inline void Dispatch_coordinates_parameter_all::set_passageway_terminal_id_max(::google::protobuf::int32 value) {
- set_has_passageway_terminal_id_max();
- passageway_terminal_id_max_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_terminal_id_max)
- }
- // optional int32 passageway_terminal_number = 33;
- inline bool Dispatch_coordinates_parameter_all::has_passageway_terminal_number() const {
- return (_has_bits_[0] & 0x10000000u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_passageway_terminal_number() {
- _has_bits_[0] |= 0x10000000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_passageway_terminal_number() {
- _has_bits_[0] &= ~0x10000000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_passageway_terminal_number() {
- passageway_terminal_number_ = 0;
- clear_has_passageway_terminal_number();
- }
- inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::passageway_terminal_number() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_terminal_number)
- return passageway_terminal_number_;
- }
- inline void Dispatch_coordinates_parameter_all::set_passageway_terminal_number(::google::protobuf::int32 value) {
- set_has_passageway_terminal_number();
- passageway_terminal_number_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_terminal_number)
- }
- // repeated .Dispatch_proto.Passageway_functioning_pattern passageway_functioning_patterns = 34;
- inline int Dispatch_coordinates_parameter_all::passageway_functioning_patterns_size() const {
- return passageway_functioning_patterns_.size();
- }
- inline void Dispatch_coordinates_parameter_all::clear_passageway_functioning_patterns() {
- passageway_functioning_patterns_.Clear();
- }
- inline ::Dispatch_proto::Passageway_functioning_pattern Dispatch_coordinates_parameter_all::passageway_functioning_patterns(int index) const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_functioning_patterns)
- return static_cast< ::Dispatch_proto::Passageway_functioning_pattern >(passageway_functioning_patterns_.Get(index));
- }
- inline void Dispatch_coordinates_parameter_all::set_passageway_functioning_patterns(int index, ::Dispatch_proto::Passageway_functioning_pattern value) {
- assert(::Dispatch_proto::Passageway_functioning_pattern_IsValid(value));
- passageway_functioning_patterns_.Set(index, value);
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_functioning_patterns)
- }
- inline void Dispatch_coordinates_parameter_all::add_passageway_functioning_patterns(::Dispatch_proto::Passageway_functioning_pattern value) {
- assert(::Dispatch_proto::Passageway_functioning_pattern_IsValid(value));
- passageway_functioning_patterns_.Add(value);
- // @@protoc_insertion_point(field_add:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_functioning_patterns)
- }
- inline const ::google::protobuf::RepeatedField<int>&
- Dispatch_coordinates_parameter_all::passageway_functioning_patterns() const {
- // @@protoc_insertion_point(field_list:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_functioning_patterns)
- return passageway_functioning_patterns_;
- }
- inline ::google::protobuf::RepeatedField<int>*
- Dispatch_coordinates_parameter_all::mutable_passageway_functioning_patterns() {
- // @@protoc_insertion_point(field_mutable_list:Dispatch_proto.Dispatch_coordinates_parameter_all.passageway_functioning_patterns)
- return &passageway_functioning_patterns_;
- }
- // optional int32 car_wheel_base_min = 35;
- inline bool Dispatch_coordinates_parameter_all::has_car_wheel_base_min() const {
- return (_has_bits_[0] & 0x20000000u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_car_wheel_base_min() {
- _has_bits_[0] |= 0x20000000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_car_wheel_base_min() {
- _has_bits_[0] &= ~0x20000000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_car_wheel_base_min() {
- car_wheel_base_min_ = 0;
- clear_has_car_wheel_base_min();
- }
- inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::car_wheel_base_min() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.car_wheel_base_min)
- return car_wheel_base_min_;
- }
- inline void Dispatch_coordinates_parameter_all::set_car_wheel_base_min(::google::protobuf::int32 value) {
- set_has_car_wheel_base_min();
- car_wheel_base_min_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.car_wheel_base_min)
- }
- // optional int32 car_wheel_base_max = 36;
- inline bool Dispatch_coordinates_parameter_all::has_car_wheel_base_max() const {
- return (_has_bits_[0] & 0x40000000u) != 0;
- }
- inline void Dispatch_coordinates_parameter_all::set_has_car_wheel_base_max() {
- _has_bits_[0] |= 0x40000000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_has_car_wheel_base_max() {
- _has_bits_[0] &= ~0x40000000u;
- }
- inline void Dispatch_coordinates_parameter_all::clear_car_wheel_base_max() {
- car_wheel_base_max_ = 0;
- clear_has_car_wheel_base_max();
- }
- inline ::google::protobuf::int32 Dispatch_coordinates_parameter_all::car_wheel_base_max() const {
- // @@protoc_insertion_point(field_get:Dispatch_proto.Dispatch_coordinates_parameter_all.car_wheel_base_max)
- return car_wheel_base_max_;
- }
- inline void Dispatch_coordinates_parameter_all::set_car_wheel_base_max(::google::protobuf::int32 value) {
- set_has_car_wheel_base_max();
- car_wheel_base_max_ = value;
- // @@protoc_insertion_point(field_set:Dispatch_proto.Dispatch_coordinates_parameter_all.car_wheel_base_max)
- }
- #ifdef __GNUC__
- #pragma GCC diagnostic pop
- #endif // __GNUC__
- // -------------------------------------------------------------------
- // -------------------------------------------------------------------
- // -------------------------------------------------------------------
- // -------------------------------------------------------------------
- // -------------------------------------------------------------------
- // -------------------------------------------------------------------
- // -------------------------------------------------------------------
- // -------------------------------------------------------------------
- // -------------------------------------------------------------------
- // -------------------------------------------------------------------
- // -------------------------------------------------------------------
- // @@protoc_insertion_point(namespace_scope)
- } // namespace Dispatch_proto
- namespace google {
- namespace protobuf {
- template <> struct is_proto_enum< ::Dispatch_proto::Passageway_functioning_pattern> : ::google::protobuf::internal::true_type {};
- template <>
- inline const EnumDescriptor* GetEnumDescriptor< ::Dispatch_proto::Passageway_functioning_pattern>() {
- return ::Dispatch_proto::Passageway_functioning_pattern_descriptor();
- }
- } // namespace protobuf
- } // namespace google
- // @@protoc_insertion_point(global_scope)
- #endif // PROTOBUF_dispatch_5fparameter_2eproto__INCLUDED
|