dispatch_message.pb.h 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974
  1. // Generated by the protocol buffer compiler. DO NOT EDIT!
  2. // source: dispatch_message.proto
  3. #ifndef PROTOBUF_dispatch_5fmessage_2eproto__INCLUDED
  4. #define PROTOBUF_dispatch_5fmessage_2eproto__INCLUDED
  5. #include <string>
  6. #include <google/protobuf/stubs/common.h>
  7. #if GOOGLE_PROTOBUF_VERSION < 3005000
  8. #error This file was generated by a newer version of protoc which is
  9. #error incompatible with your Protocol Buffer headers. Please update
  10. #error your headers.
  11. #endif
  12. #if 3005000 < GOOGLE_PROTOBUF_MIN_PROTOC_VERSION
  13. #error This file was generated by an older version of protoc which is
  14. #error incompatible with your Protocol Buffer headers. Please
  15. #error regenerate this file with a newer version of protoc.
  16. #endif
  17. #include <google/protobuf/io/coded_stream.h>
  18. #include <google/protobuf/arena.h>
  19. #include <google/protobuf/arenastring.h>
  20. #include <google/protobuf/generated_message_table_driven.h>
  21. #include <google/protobuf/generated_message_util.h>
  22. #include <google/protobuf/metadata.h>
  23. #include <google/protobuf/message.h>
  24. #include <google/protobuf/repeated_field.h> // IWYU pragma: export
  25. #include <google/protobuf/extension_set.h> // IWYU pragma: export
  26. #include <google/protobuf/generated_enum_reflection.h>
  27. #include <google/protobuf/unknown_field_set.h>
  28. #include "message_base.pb.h"
  29. // @@protoc_insertion_point(includes)
  30. namespace protobuf_dispatch_5fmessage_2eproto {
  31. // Internal implementation detail -- do not use these members.
  32. struct TableStruct {
  33. static const ::google::protobuf::internal::ParseTableField entries[];
  34. static const ::google::protobuf::internal::AuxillaryParseTableField aux[];
  35. static const ::google::protobuf::internal::ParseTable schema[5];
  36. static const ::google::protobuf::internal::FieldMetadata field_metadata[];
  37. static const ::google::protobuf::internal::SerializationTable serialization_table[];
  38. static const ::google::protobuf::uint32 offsets[];
  39. };
  40. void AddDescriptors();
  41. void InitDefaultsDevice_positionImpl();
  42. void InitDefaultsDevice_position();
  43. void InitDefaultsDispatch_manager_status_msgImpl();
  44. void InitDefaultsDispatch_manager_status_msg();
  45. void InitDefaultsDispatch_terminal_status_msgImpl();
  46. void InitDefaultsDispatch_terminal_status_msg();
  47. void InitDefaultsDispatch_request_msgImpl();
  48. void InitDefaultsDispatch_request_msg();
  49. void InitDefaultsDispatch_response_msgImpl();
  50. void InitDefaultsDispatch_response_msg();
  51. inline void InitDefaults() {
  52. InitDefaultsDevice_position();
  53. InitDefaultsDispatch_manager_status_msg();
  54. InitDefaultsDispatch_terminal_status_msg();
  55. InitDefaultsDispatch_request_msg();
  56. InitDefaultsDispatch_response_msg();
  57. }
  58. } // namespace protobuf_dispatch_5fmessage_2eproto
  59. namespace message {
  60. class Device_position;
  61. class Device_positionDefaultTypeInternal;
  62. extern Device_positionDefaultTypeInternal _Device_position_default_instance_;
  63. class Dispatch_manager_status_msg;
  64. class Dispatch_manager_status_msgDefaultTypeInternal;
  65. extern Dispatch_manager_status_msgDefaultTypeInternal _Dispatch_manager_status_msg_default_instance_;
  66. class Dispatch_request_msg;
  67. class Dispatch_request_msgDefaultTypeInternal;
  68. extern Dispatch_request_msgDefaultTypeInternal _Dispatch_request_msg_default_instance_;
  69. class Dispatch_response_msg;
  70. class Dispatch_response_msgDefaultTypeInternal;
  71. extern Dispatch_response_msgDefaultTypeInternal _Dispatch_response_msg_default_instance_;
  72. class Dispatch_terminal_status_msg;
  73. class Dispatch_terminal_status_msgDefaultTypeInternal;
  74. extern Dispatch_terminal_status_msgDefaultTypeInternal _Dispatch_terminal_status_msg_default_instance_;
  75. } // namespace message
  76. namespace message {
  77. enum Dispatch_manager_status {
  78. E_DISPATCH_MANAGER_UNKNOW = 0,
  79. E_DISPATCH_MANAGER_READY = 1,
  80. E_DISPATCH_MANAGER_STORE = 2,
  81. E_DISPATCH_MANAGER_PICKUP = 3,
  82. E_DISPATCH_MANAGER_FAULT = 10
  83. };
  84. bool Dispatch_manager_status_IsValid(int value);
  85. const Dispatch_manager_status Dispatch_manager_status_MIN = E_DISPATCH_MANAGER_UNKNOW;
  86. const Dispatch_manager_status Dispatch_manager_status_MAX = E_DISPATCH_MANAGER_FAULT;
  87. const int Dispatch_manager_status_ARRAYSIZE = Dispatch_manager_status_MAX + 1;
  88. const ::google::protobuf::EnumDescriptor* Dispatch_manager_status_descriptor();
  89. inline const ::std::string& Dispatch_manager_status_Name(Dispatch_manager_status value) {
  90. return ::google::protobuf::internal::NameOfEnum(
  91. Dispatch_manager_status_descriptor(), value);
  92. }
  93. inline bool Dispatch_manager_status_Parse(
  94. const ::std::string& name, Dispatch_manager_status* value) {
  95. return ::google::protobuf::internal::ParseNamedEnum<Dispatch_manager_status>(
  96. Dispatch_manager_status_descriptor(), name, value);
  97. }
  98. enum Catcher_status {
  99. E_CATCHER_UNKNOW = 0,
  100. E_CATCHER_READY = 1,
  101. E_CATCHER_STORE = 2,
  102. E_CATCHER_PICKUP = 3,
  103. E_CATCHER_FAULT = 10
  104. };
  105. bool Catcher_status_IsValid(int value);
  106. const Catcher_status Catcher_status_MIN = E_CATCHER_UNKNOW;
  107. const Catcher_status Catcher_status_MAX = E_CATCHER_FAULT;
  108. const int Catcher_status_ARRAYSIZE = Catcher_status_MAX + 1;
  109. const ::google::protobuf::EnumDescriptor* Catcher_status_descriptor();
  110. inline const ::std::string& Catcher_status_Name(Catcher_status value) {
  111. return ::google::protobuf::internal::NameOfEnum(
  112. Catcher_status_descriptor(), value);
  113. }
  114. inline bool Catcher_status_Parse(
  115. const ::std::string& name, Catcher_status* value) {
  116. return ::google::protobuf::internal::ParseNamedEnum<Catcher_status>(
  117. Catcher_status_descriptor(), name, value);
  118. }
  119. enum Carrier_status {
  120. E_CARRIER_UNKNOW = 0,
  121. E_CARRIER_READY = 1,
  122. E_CARRIER_STORE = 2,
  123. E_CARRIER_PICKUP = 3,
  124. E_CARRIER_FAULT = 10
  125. };
  126. bool Carrier_status_IsValid(int value);
  127. const Carrier_status Carrier_status_MIN = E_CARRIER_UNKNOW;
  128. const Carrier_status Carrier_status_MAX = E_CARRIER_FAULT;
  129. const int Carrier_status_ARRAYSIZE = Carrier_status_MAX + 1;
  130. const ::google::protobuf::EnumDescriptor* Carrier_status_descriptor();
  131. inline const ::std::string& Carrier_status_Name(Carrier_status value) {
  132. return ::google::protobuf::internal::NameOfEnum(
  133. Carrier_status_descriptor(), value);
  134. }
  135. inline bool Carrier_status_Parse(
  136. const ::std::string& name, Carrier_status* value) {
  137. return ::google::protobuf::internal::ParseNamedEnum<Carrier_status>(
  138. Carrier_status_descriptor(), name, value);
  139. }
  140. enum Elevator_status {
  141. E_ELEVATOR_UNKNOW = 0,
  142. E_ELEVATOR_READY = 1,
  143. E_ELEVATOR_STORE = 2,
  144. E_ELEVATOR_PICKUP = 3,
  145. E_ELEVATOR_FAULT = 10
  146. };
  147. bool Elevator_status_IsValid(int value);
  148. const Elevator_status Elevator_status_MIN = E_ELEVATOR_UNKNOW;
  149. const Elevator_status Elevator_status_MAX = E_ELEVATOR_FAULT;
  150. const int Elevator_status_ARRAYSIZE = Elevator_status_MAX + 1;
  151. const ::google::protobuf::EnumDescriptor* Elevator_status_descriptor();
  152. inline const ::std::string& Elevator_status_Name(Elevator_status value) {
  153. return ::google::protobuf::internal::NameOfEnum(
  154. Elevator_status_descriptor(), value);
  155. }
  156. inline bool Elevator_status_Parse(
  157. const ::std::string& name, Elevator_status* value) {
  158. return ::google::protobuf::internal::ParseNamedEnum<Elevator_status>(
  159. Elevator_status_descriptor(), name, value);
  160. }
  161. enum Passageway_status {
  162. E_PASSAGEWAY_UNKNOW = 0,
  163. E_PASSAGEWAY_READY = 1,
  164. E_PASSAGEWAY_STORE = 2,
  165. E_PASSAGEWAY_PICKUP = 3,
  166. E_PASSAGEWAY_FAULT = 10
  167. };
  168. bool Passageway_status_IsValid(int value);
  169. const Passageway_status Passageway_status_MIN = E_PASSAGEWAY_UNKNOW;
  170. const Passageway_status Passageway_status_MAX = E_PASSAGEWAY_FAULT;
  171. const int Passageway_status_ARRAYSIZE = Passageway_status_MAX + 1;
  172. const ::google::protobuf::EnumDescriptor* Passageway_status_descriptor();
  173. inline const ::std::string& Passageway_status_Name(Passageway_status value) {
  174. return ::google::protobuf::internal::NameOfEnum(
  175. Passageway_status_descriptor(), value);
  176. }
  177. inline bool Passageway_status_Parse(
  178. const ::std::string& name, Passageway_status* value) {
  179. return ::google::protobuf::internal::ParseNamedEnum<Passageway_status>(
  180. Passageway_status_descriptor(), name, value);
  181. }
  182. enum Terminal_status {
  183. E_TERMINAL_UNKNOW = 0,
  184. E_TERMINAL_READY = 1,
  185. E_TERMINAL_STORE = 2,
  186. E_TERMINAL_PICKUP = 3,
  187. E_TERMINAL_FAULT = 10
  188. };
  189. bool Terminal_status_IsValid(int value);
  190. const Terminal_status Terminal_status_MIN = E_TERMINAL_UNKNOW;
  191. const Terminal_status Terminal_status_MAX = E_TERMINAL_FAULT;
  192. const int Terminal_status_ARRAYSIZE = Terminal_status_MAX + 1;
  193. const ::google::protobuf::EnumDescriptor* Terminal_status_descriptor();
  194. inline const ::std::string& Terminal_status_Name(Terminal_status value) {
  195. return ::google::protobuf::internal::NameOfEnum(
  196. Terminal_status_descriptor(), value);
  197. }
  198. inline bool Terminal_status_Parse(
  199. const ::std::string& name, Terminal_status* value) {
  200. return ::google::protobuf::internal::ParseNamedEnum<Terminal_status>(
  201. Terminal_status_descriptor(), name, value);
  202. }
  203. enum Passageway_direction {
  204. E_INLET = 0,
  205. E_OUTLET = 1,
  206. E_BILATERAL = 2
  207. };
  208. bool Passageway_direction_IsValid(int value);
  209. const Passageway_direction Passageway_direction_MIN = E_INLET;
  210. const Passageway_direction Passageway_direction_MAX = E_BILATERAL;
  211. const int Passageway_direction_ARRAYSIZE = Passageway_direction_MAX + 1;
  212. const ::google::protobuf::EnumDescriptor* Passageway_direction_descriptor();
  213. inline const ::std::string& Passageway_direction_Name(Passageway_direction value) {
  214. return ::google::protobuf::internal::NameOfEnum(
  215. Passageway_direction_descriptor(), value);
  216. }
  217. inline bool Passageway_direction_Parse(
  218. const ::std::string& name, Passageway_direction* value) {
  219. return ::google::protobuf::internal::ParseNamedEnum<Passageway_direction>(
  220. Passageway_direction_descriptor(), name, value);
  221. }
  222. enum Dispatch_motion_direction {
  223. E_STORE_CAR = 0,
  224. E_PICKUP_CAR = 1
  225. };
  226. bool Dispatch_motion_direction_IsValid(int value);
  227. const Dispatch_motion_direction Dispatch_motion_direction_MIN = E_STORE_CAR;
  228. const Dispatch_motion_direction Dispatch_motion_direction_MAX = E_PICKUP_CAR;
  229. const int Dispatch_motion_direction_ARRAYSIZE = Dispatch_motion_direction_MAX + 1;
  230. const ::google::protobuf::EnumDescriptor* Dispatch_motion_direction_descriptor();
  231. inline const ::std::string& Dispatch_motion_direction_Name(Dispatch_motion_direction value) {
  232. return ::google::protobuf::internal::NameOfEnum(
  233. Dispatch_motion_direction_descriptor(), value);
  234. }
  235. inline bool Dispatch_motion_direction_Parse(
  236. const ::std::string& name, Dispatch_motion_direction* value) {
  237. return ::google::protobuf::internal::ParseNamedEnum<Dispatch_motion_direction>(
  238. Dispatch_motion_direction_descriptor(), name, value);
  239. }
  240. // ===================================================================
  241. class Device_position : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Device_position) */ {
  242. public:
  243. Device_position();
  244. virtual ~Device_position();
  245. Device_position(const Device_position& from);
  246. inline Device_position& operator=(const Device_position& from) {
  247. CopyFrom(from);
  248. return *this;
  249. }
  250. #if LANG_CXX11
  251. Device_position(Device_position&& from) noexcept
  252. : Device_position() {
  253. *this = ::std::move(from);
  254. }
  255. inline Device_position& operator=(Device_position&& from) noexcept {
  256. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  257. if (this != &from) InternalSwap(&from);
  258. } else {
  259. CopyFrom(from);
  260. }
  261. return *this;
  262. }
  263. #endif
  264. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  265. return _internal_metadata_.unknown_fields();
  266. }
  267. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  268. return _internal_metadata_.mutable_unknown_fields();
  269. }
  270. static const ::google::protobuf::Descriptor* descriptor();
  271. static const Device_position& default_instance();
  272. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  273. static inline const Device_position* internal_default_instance() {
  274. return reinterpret_cast<const Device_position*>(
  275. &_Device_position_default_instance_);
  276. }
  277. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  278. 0;
  279. void Swap(Device_position* other);
  280. friend void swap(Device_position& a, Device_position& b) {
  281. a.Swap(&b);
  282. }
  283. // implements Message ----------------------------------------------
  284. inline Device_position* New() const PROTOBUF_FINAL { return New(NULL); }
  285. Device_position* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  286. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  287. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  288. void CopyFrom(const Device_position& from);
  289. void MergeFrom(const Device_position& from);
  290. void Clear() PROTOBUF_FINAL;
  291. bool IsInitialized() const PROTOBUF_FINAL;
  292. size_t ByteSizeLong() const PROTOBUF_FINAL;
  293. bool MergePartialFromCodedStream(
  294. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  295. void SerializeWithCachedSizes(
  296. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  297. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  298. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  299. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  300. private:
  301. void SharedCtor();
  302. void SharedDtor();
  303. void SetCachedSize(int size) const PROTOBUF_FINAL;
  304. void InternalSwap(Device_position* other);
  305. private:
  306. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  307. return NULL;
  308. }
  309. inline void* MaybeArenaPtr() const {
  310. return NULL;
  311. }
  312. public:
  313. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  314. // nested types ----------------------------------------------------
  315. // accessors -------------------------------------------------------
  316. // required float x = 1;
  317. bool has_x() const;
  318. void clear_x();
  319. static const int kXFieldNumber = 1;
  320. float x() const;
  321. void set_x(float value);
  322. // required float y = 2;
  323. bool has_y() const;
  324. void clear_y();
  325. static const int kYFieldNumber = 2;
  326. float y() const;
  327. void set_y(float value);
  328. // required float z = 3;
  329. bool has_z() const;
  330. void clear_z();
  331. static const int kZFieldNumber = 3;
  332. float z() const;
  333. void set_z(float value);
  334. // @@protoc_insertion_point(class_scope:message.Device_position)
  335. private:
  336. void set_has_x();
  337. void clear_has_x();
  338. void set_has_y();
  339. void clear_has_y();
  340. void set_has_z();
  341. void clear_has_z();
  342. // helper for ByteSizeLong()
  343. size_t RequiredFieldsByteSizeFallback() const;
  344. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  345. ::google::protobuf::internal::HasBits<1> _has_bits_;
  346. mutable int _cached_size_;
  347. float x_;
  348. float y_;
  349. float z_;
  350. friend struct ::protobuf_dispatch_5fmessage_2eproto::TableStruct;
  351. friend void ::protobuf_dispatch_5fmessage_2eproto::InitDefaultsDevice_positionImpl();
  352. };
  353. // -------------------------------------------------------------------
  354. class Dispatch_manager_status_msg : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Dispatch_manager_status_msg) */ {
  355. public:
  356. Dispatch_manager_status_msg();
  357. virtual ~Dispatch_manager_status_msg();
  358. Dispatch_manager_status_msg(const Dispatch_manager_status_msg& from);
  359. inline Dispatch_manager_status_msg& operator=(const Dispatch_manager_status_msg& from) {
  360. CopyFrom(from);
  361. return *this;
  362. }
  363. #if LANG_CXX11
  364. Dispatch_manager_status_msg(Dispatch_manager_status_msg&& from) noexcept
  365. : Dispatch_manager_status_msg() {
  366. *this = ::std::move(from);
  367. }
  368. inline Dispatch_manager_status_msg& operator=(Dispatch_manager_status_msg&& from) noexcept {
  369. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  370. if (this != &from) InternalSwap(&from);
  371. } else {
  372. CopyFrom(from);
  373. }
  374. return *this;
  375. }
  376. #endif
  377. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  378. return _internal_metadata_.unknown_fields();
  379. }
  380. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  381. return _internal_metadata_.mutable_unknown_fields();
  382. }
  383. static const ::google::protobuf::Descriptor* descriptor();
  384. static const Dispatch_manager_status_msg& default_instance();
  385. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  386. static inline const Dispatch_manager_status_msg* internal_default_instance() {
  387. return reinterpret_cast<const Dispatch_manager_status_msg*>(
  388. &_Dispatch_manager_status_msg_default_instance_);
  389. }
  390. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  391. 1;
  392. void Swap(Dispatch_manager_status_msg* other);
  393. friend void swap(Dispatch_manager_status_msg& a, Dispatch_manager_status_msg& b) {
  394. a.Swap(&b);
  395. }
  396. // implements Message ----------------------------------------------
  397. inline Dispatch_manager_status_msg* New() const PROTOBUF_FINAL { return New(NULL); }
  398. Dispatch_manager_status_msg* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  399. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  400. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  401. void CopyFrom(const Dispatch_manager_status_msg& from);
  402. void MergeFrom(const Dispatch_manager_status_msg& from);
  403. void Clear() PROTOBUF_FINAL;
  404. bool IsInitialized() const PROTOBUF_FINAL;
  405. size_t ByteSizeLong() const PROTOBUF_FINAL;
  406. bool MergePartialFromCodedStream(
  407. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  408. void SerializeWithCachedSizes(
  409. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  410. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  411. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  412. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  413. private:
  414. void SharedCtor();
  415. void SharedDtor();
  416. void SetCachedSize(int size) const PROTOBUF_FINAL;
  417. void InternalSwap(Dispatch_manager_status_msg* other);
  418. private:
  419. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  420. return NULL;
  421. }
  422. inline void* MaybeArenaPtr() const {
  423. return NULL;
  424. }
  425. public:
  426. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  427. // nested types ----------------------------------------------------
  428. // accessors -------------------------------------------------------
  429. // repeated .message.Catcher_status catcher_status = 4;
  430. int catcher_status_size() const;
  431. void clear_catcher_status();
  432. static const int kCatcherStatusFieldNumber = 4;
  433. ::message::Catcher_status catcher_status(int index) const;
  434. void set_catcher_status(int index, ::message::Catcher_status value);
  435. void add_catcher_status(::message::Catcher_status value);
  436. const ::google::protobuf::RepeatedField<int>& catcher_status() const;
  437. ::google::protobuf::RepeatedField<int>* mutable_catcher_status();
  438. // repeated .message.Carrier_status carrier_status = 5;
  439. int carrier_status_size() const;
  440. void clear_carrier_status();
  441. static const int kCarrierStatusFieldNumber = 5;
  442. ::message::Carrier_status carrier_status(int index) const;
  443. void set_carrier_status(int index, ::message::Carrier_status value);
  444. void add_carrier_status(::message::Carrier_status value);
  445. const ::google::protobuf::RepeatedField<int>& carrier_status() const;
  446. ::google::protobuf::RepeatedField<int>* mutable_carrier_status();
  447. // repeated .message.Elevator_status elevator_status = 6;
  448. int elevator_status_size() const;
  449. void clear_elevator_status();
  450. static const int kElevatorStatusFieldNumber = 6;
  451. ::message::Elevator_status elevator_status(int index) const;
  452. void set_elevator_status(int index, ::message::Elevator_status value);
  453. void add_elevator_status(::message::Elevator_status value);
  454. const ::google::protobuf::RepeatedField<int>& elevator_status() const;
  455. ::google::protobuf::RepeatedField<int>* mutable_elevator_status();
  456. // repeated .message.Passageway_status passageway_status = 7;
  457. int passageway_status_size() const;
  458. void clear_passageway_status();
  459. static const int kPassagewayStatusFieldNumber = 7;
  460. ::message::Passageway_status passageway_status(int index) const;
  461. void set_passageway_status(int index, ::message::Passageway_status value);
  462. void add_passageway_status(::message::Passageway_status value);
  463. const ::google::protobuf::RepeatedField<int>& passageway_status() const;
  464. ::google::protobuf::RepeatedField<int>* mutable_passageway_status();
  465. // required .message.Base_info base_info = 1;
  466. bool has_base_info() const;
  467. void clear_base_info();
  468. static const int kBaseInfoFieldNumber = 1;
  469. const ::message::Base_info& base_info() const;
  470. ::message::Base_info* release_base_info();
  471. ::message::Base_info* mutable_base_info();
  472. void set_allocated_base_info(::message::Base_info* base_info);
  473. // required int32 dispatch_id = 2;
  474. bool has_dispatch_id() const;
  475. void clear_dispatch_id();
  476. static const int kDispatchIdFieldNumber = 2;
  477. ::google::protobuf::int32 dispatch_id() const;
  478. void set_dispatch_id(::google::protobuf::int32 value);
  479. // required .message.Dispatch_manager_status dispatch_manager_status = 3;
  480. bool has_dispatch_manager_status() const;
  481. void clear_dispatch_manager_status();
  482. static const int kDispatchManagerStatusFieldNumber = 3;
  483. ::message::Dispatch_manager_status dispatch_manager_status() const;
  484. void set_dispatch_manager_status(::message::Dispatch_manager_status value);
  485. // @@protoc_insertion_point(class_scope:message.Dispatch_manager_status_msg)
  486. private:
  487. void set_has_base_info();
  488. void clear_has_base_info();
  489. void set_has_dispatch_id();
  490. void clear_has_dispatch_id();
  491. void set_has_dispatch_manager_status();
  492. void clear_has_dispatch_manager_status();
  493. // helper for ByteSizeLong()
  494. size_t RequiredFieldsByteSizeFallback() const;
  495. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  496. ::google::protobuf::internal::HasBits<1> _has_bits_;
  497. mutable int _cached_size_;
  498. ::google::protobuf::RepeatedField<int> catcher_status_;
  499. ::google::protobuf::RepeatedField<int> carrier_status_;
  500. ::google::protobuf::RepeatedField<int> elevator_status_;
  501. ::google::protobuf::RepeatedField<int> passageway_status_;
  502. ::message::Base_info* base_info_;
  503. ::google::protobuf::int32 dispatch_id_;
  504. int dispatch_manager_status_;
  505. friend struct ::protobuf_dispatch_5fmessage_2eproto::TableStruct;
  506. friend void ::protobuf_dispatch_5fmessage_2eproto::InitDefaultsDispatch_manager_status_msgImpl();
  507. };
  508. // -------------------------------------------------------------------
  509. class Dispatch_terminal_status_msg : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Dispatch_terminal_status_msg) */ {
  510. public:
  511. Dispatch_terminal_status_msg();
  512. virtual ~Dispatch_terminal_status_msg();
  513. Dispatch_terminal_status_msg(const Dispatch_terminal_status_msg& from);
  514. inline Dispatch_terminal_status_msg& operator=(const Dispatch_terminal_status_msg& from) {
  515. CopyFrom(from);
  516. return *this;
  517. }
  518. #if LANG_CXX11
  519. Dispatch_terminal_status_msg(Dispatch_terminal_status_msg&& from) noexcept
  520. : Dispatch_terminal_status_msg() {
  521. *this = ::std::move(from);
  522. }
  523. inline Dispatch_terminal_status_msg& operator=(Dispatch_terminal_status_msg&& from) noexcept {
  524. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  525. if (this != &from) InternalSwap(&from);
  526. } else {
  527. CopyFrom(from);
  528. }
  529. return *this;
  530. }
  531. #endif
  532. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  533. return _internal_metadata_.unknown_fields();
  534. }
  535. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  536. return _internal_metadata_.mutable_unknown_fields();
  537. }
  538. static const ::google::protobuf::Descriptor* descriptor();
  539. static const Dispatch_terminal_status_msg& default_instance();
  540. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  541. static inline const Dispatch_terminal_status_msg* internal_default_instance() {
  542. return reinterpret_cast<const Dispatch_terminal_status_msg*>(
  543. &_Dispatch_terminal_status_msg_default_instance_);
  544. }
  545. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  546. 2;
  547. void Swap(Dispatch_terminal_status_msg* other);
  548. friend void swap(Dispatch_terminal_status_msg& a, Dispatch_terminal_status_msg& b) {
  549. a.Swap(&b);
  550. }
  551. // implements Message ----------------------------------------------
  552. inline Dispatch_terminal_status_msg* New() const PROTOBUF_FINAL { return New(NULL); }
  553. Dispatch_terminal_status_msg* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  554. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  555. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  556. void CopyFrom(const Dispatch_terminal_status_msg& from);
  557. void MergeFrom(const Dispatch_terminal_status_msg& from);
  558. void Clear() PROTOBUF_FINAL;
  559. bool IsInitialized() const PROTOBUF_FINAL;
  560. size_t ByteSizeLong() const PROTOBUF_FINAL;
  561. bool MergePartialFromCodedStream(
  562. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  563. void SerializeWithCachedSizes(
  564. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  565. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  566. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  567. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  568. private:
  569. void SharedCtor();
  570. void SharedDtor();
  571. void SetCachedSize(int size) const PROTOBUF_FINAL;
  572. void InternalSwap(Dispatch_terminal_status_msg* other);
  573. private:
  574. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  575. return NULL;
  576. }
  577. inline void* MaybeArenaPtr() const {
  578. return NULL;
  579. }
  580. public:
  581. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  582. // nested types ----------------------------------------------------
  583. // accessors -------------------------------------------------------
  584. // required .message.Base_info base_info = 1;
  585. bool has_base_info() const;
  586. void clear_base_info();
  587. static const int kBaseInfoFieldNumber = 1;
  588. const ::message::Base_info& base_info() const;
  589. ::message::Base_info* release_base_info();
  590. ::message::Base_info* mutable_base_info();
  591. void set_allocated_base_info(::message::Base_info* base_info);
  592. // required int32 terminal_id = 2;
  593. bool has_terminal_id() const;
  594. void clear_terminal_id();
  595. static const int kTerminalIdFieldNumber = 2;
  596. ::google::protobuf::int32 terminal_id() const;
  597. void set_terminal_id(::google::protobuf::int32 value);
  598. // required .message.Terminal_status terminal_status = 3;
  599. bool has_terminal_status() const;
  600. void clear_terminal_status();
  601. static const int kTerminalStatusFieldNumber = 3;
  602. ::message::Terminal_status terminal_status() const;
  603. void set_terminal_status(::message::Terminal_status value);
  604. // required .message.Passageway_direction passageway_direction = 4;
  605. bool has_passageway_direction() const;
  606. void clear_passageway_direction();
  607. static const int kPassagewayDirectionFieldNumber = 4;
  608. ::message::Passageway_direction passageway_direction() const;
  609. void set_passageway_direction(::message::Passageway_direction value);
  610. // @@protoc_insertion_point(class_scope:message.Dispatch_terminal_status_msg)
  611. private:
  612. void set_has_base_info();
  613. void clear_has_base_info();
  614. void set_has_terminal_id();
  615. void clear_has_terminal_id();
  616. void set_has_terminal_status();
  617. void clear_has_terminal_status();
  618. void set_has_passageway_direction();
  619. void clear_has_passageway_direction();
  620. // helper for ByteSizeLong()
  621. size_t RequiredFieldsByteSizeFallback() const;
  622. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  623. ::google::protobuf::internal::HasBits<1> _has_bits_;
  624. mutable int _cached_size_;
  625. ::message::Base_info* base_info_;
  626. ::google::protobuf::int32 terminal_id_;
  627. int terminal_status_;
  628. int passageway_direction_;
  629. friend struct ::protobuf_dispatch_5fmessage_2eproto::TableStruct;
  630. friend void ::protobuf_dispatch_5fmessage_2eproto::InitDefaultsDispatch_terminal_status_msgImpl();
  631. };
  632. // -------------------------------------------------------------------
  633. class Dispatch_request_msg : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Dispatch_request_msg) */ {
  634. public:
  635. Dispatch_request_msg();
  636. virtual ~Dispatch_request_msg();
  637. Dispatch_request_msg(const Dispatch_request_msg& from);
  638. inline Dispatch_request_msg& operator=(const Dispatch_request_msg& from) {
  639. CopyFrom(from);
  640. return *this;
  641. }
  642. #if LANG_CXX11
  643. Dispatch_request_msg(Dispatch_request_msg&& from) noexcept
  644. : Dispatch_request_msg() {
  645. *this = ::std::move(from);
  646. }
  647. inline Dispatch_request_msg& operator=(Dispatch_request_msg&& from) noexcept {
  648. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  649. if (this != &from) InternalSwap(&from);
  650. } else {
  651. CopyFrom(from);
  652. }
  653. return *this;
  654. }
  655. #endif
  656. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  657. return _internal_metadata_.unknown_fields();
  658. }
  659. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  660. return _internal_metadata_.mutable_unknown_fields();
  661. }
  662. static const ::google::protobuf::Descriptor* descriptor();
  663. static const Dispatch_request_msg& default_instance();
  664. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  665. static inline const Dispatch_request_msg* internal_default_instance() {
  666. return reinterpret_cast<const Dispatch_request_msg*>(
  667. &_Dispatch_request_msg_default_instance_);
  668. }
  669. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  670. 3;
  671. void Swap(Dispatch_request_msg* other);
  672. friend void swap(Dispatch_request_msg& a, Dispatch_request_msg& b) {
  673. a.Swap(&b);
  674. }
  675. // implements Message ----------------------------------------------
  676. inline Dispatch_request_msg* New() const PROTOBUF_FINAL { return New(NULL); }
  677. Dispatch_request_msg* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  678. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  679. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  680. void CopyFrom(const Dispatch_request_msg& from);
  681. void MergeFrom(const Dispatch_request_msg& from);
  682. void Clear() PROTOBUF_FINAL;
  683. bool IsInitialized() const PROTOBUF_FINAL;
  684. size_t ByteSizeLong() const PROTOBUF_FINAL;
  685. bool MergePartialFromCodedStream(
  686. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  687. void SerializeWithCachedSizes(
  688. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  689. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  690. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  691. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  692. private:
  693. void SharedCtor();
  694. void SharedDtor();
  695. void SetCachedSize(int size) const PROTOBUF_FINAL;
  696. void InternalSwap(Dispatch_request_msg* other);
  697. private:
  698. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  699. return NULL;
  700. }
  701. inline void* MaybeArenaPtr() const {
  702. return NULL;
  703. }
  704. public:
  705. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  706. // nested types ----------------------------------------------------
  707. // accessors -------------------------------------------------------
  708. // required string command_key = 2;
  709. bool has_command_key() const;
  710. void clear_command_key();
  711. static const int kCommandKeyFieldNumber = 2;
  712. const ::std::string& command_key() const;
  713. void set_command_key(const ::std::string& value);
  714. #if LANG_CXX11
  715. void set_command_key(::std::string&& value);
  716. #endif
  717. void set_command_key(const char* value);
  718. void set_command_key(const char* value, size_t size);
  719. ::std::string* mutable_command_key();
  720. ::std::string* release_command_key();
  721. void set_allocated_command_key(::std::string* command_key);
  722. // required .message.Base_info base_info = 1;
  723. bool has_base_info() const;
  724. void clear_base_info();
  725. static const int kBaseInfoFieldNumber = 1;
  726. const ::message::Base_info& base_info() const;
  727. ::message::Base_info* release_base_info();
  728. ::message::Base_info* mutable_base_info();
  729. void set_allocated_base_info(::message::Base_info* base_info);
  730. // required .message.Parkspace_info parkspace_info = 5;
  731. bool has_parkspace_info() const;
  732. void clear_parkspace_info();
  733. static const int kParkspaceInfoFieldNumber = 5;
  734. const ::message::Parkspace_info& parkspace_info() const;
  735. ::message::Parkspace_info* release_parkspace_info();
  736. ::message::Parkspace_info* mutable_parkspace_info();
  737. void set_allocated_parkspace_info(::message::Parkspace_info* parkspace_info);
  738. // optional .message.Locate_information locate_information = 6;
  739. bool has_locate_information() const;
  740. void clear_locate_information();
  741. static const int kLocateInformationFieldNumber = 6;
  742. const ::message::Locate_information& locate_information() const;
  743. ::message::Locate_information* release_locate_information();
  744. ::message::Locate_information* mutable_locate_information();
  745. void set_allocated_locate_information(::message::Locate_information* locate_information);
  746. // required .message.Dispatch_motion_direction dispatch_motion_direction = 3;
  747. bool has_dispatch_motion_direction() const;
  748. void clear_dispatch_motion_direction();
  749. static const int kDispatchMotionDirectionFieldNumber = 3;
  750. ::message::Dispatch_motion_direction dispatch_motion_direction() const;
  751. void set_dispatch_motion_direction(::message::Dispatch_motion_direction value);
  752. // required int32 terminal_id = 4;
  753. bool has_terminal_id() const;
  754. void clear_terminal_id();
  755. static const int kTerminalIdFieldNumber = 4;
  756. ::google::protobuf::int32 terminal_id() const;
  757. void set_terminal_id(::google::protobuf::int32 value);
  758. // @@protoc_insertion_point(class_scope:message.Dispatch_request_msg)
  759. private:
  760. void set_has_base_info();
  761. void clear_has_base_info();
  762. void set_has_command_key();
  763. void clear_has_command_key();
  764. void set_has_dispatch_motion_direction();
  765. void clear_has_dispatch_motion_direction();
  766. void set_has_terminal_id();
  767. void clear_has_terminal_id();
  768. void set_has_parkspace_info();
  769. void clear_has_parkspace_info();
  770. void set_has_locate_information();
  771. void clear_has_locate_information();
  772. // helper for ByteSizeLong()
  773. size_t RequiredFieldsByteSizeFallback() const;
  774. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  775. ::google::protobuf::internal::HasBits<1> _has_bits_;
  776. mutable int _cached_size_;
  777. ::google::protobuf::internal::ArenaStringPtr command_key_;
  778. ::message::Base_info* base_info_;
  779. ::message::Parkspace_info* parkspace_info_;
  780. ::message::Locate_information* locate_information_;
  781. int dispatch_motion_direction_;
  782. ::google::protobuf::int32 terminal_id_;
  783. friend struct ::protobuf_dispatch_5fmessage_2eproto::TableStruct;
  784. friend void ::protobuf_dispatch_5fmessage_2eproto::InitDefaultsDispatch_request_msgImpl();
  785. };
  786. // -------------------------------------------------------------------
  787. class Dispatch_response_msg : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Dispatch_response_msg) */ {
  788. public:
  789. Dispatch_response_msg();
  790. virtual ~Dispatch_response_msg();
  791. Dispatch_response_msg(const Dispatch_response_msg& from);
  792. inline Dispatch_response_msg& operator=(const Dispatch_response_msg& from) {
  793. CopyFrom(from);
  794. return *this;
  795. }
  796. #if LANG_CXX11
  797. Dispatch_response_msg(Dispatch_response_msg&& from) noexcept
  798. : Dispatch_response_msg() {
  799. *this = ::std::move(from);
  800. }
  801. inline Dispatch_response_msg& operator=(Dispatch_response_msg&& from) noexcept {
  802. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  803. if (this != &from) InternalSwap(&from);
  804. } else {
  805. CopyFrom(from);
  806. }
  807. return *this;
  808. }
  809. #endif
  810. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  811. return _internal_metadata_.unknown_fields();
  812. }
  813. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  814. return _internal_metadata_.mutable_unknown_fields();
  815. }
  816. static const ::google::protobuf::Descriptor* descriptor();
  817. static const Dispatch_response_msg& default_instance();
  818. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  819. static inline const Dispatch_response_msg* internal_default_instance() {
  820. return reinterpret_cast<const Dispatch_response_msg*>(
  821. &_Dispatch_response_msg_default_instance_);
  822. }
  823. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  824. 4;
  825. void Swap(Dispatch_response_msg* other);
  826. friend void swap(Dispatch_response_msg& a, Dispatch_response_msg& b) {
  827. a.Swap(&b);
  828. }
  829. // implements Message ----------------------------------------------
  830. inline Dispatch_response_msg* New() const PROTOBUF_FINAL { return New(NULL); }
  831. Dispatch_response_msg* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  832. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  833. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  834. void CopyFrom(const Dispatch_response_msg& from);
  835. void MergeFrom(const Dispatch_response_msg& from);
  836. void Clear() PROTOBUF_FINAL;
  837. bool IsInitialized() const PROTOBUF_FINAL;
  838. size_t ByteSizeLong() const PROTOBUF_FINAL;
  839. bool MergePartialFromCodedStream(
  840. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  841. void SerializeWithCachedSizes(
  842. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  843. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  844. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  845. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  846. private:
  847. void SharedCtor();
  848. void SharedDtor();
  849. void SetCachedSize(int size) const PROTOBUF_FINAL;
  850. void InternalSwap(Dispatch_response_msg* other);
  851. private:
  852. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  853. return NULL;
  854. }
  855. inline void* MaybeArenaPtr() const {
  856. return NULL;
  857. }
  858. public:
  859. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  860. // nested types ----------------------------------------------------
  861. // accessors -------------------------------------------------------
  862. // required string command_key = 2;
  863. bool has_command_key() const;
  864. void clear_command_key();
  865. static const int kCommandKeyFieldNumber = 2;
  866. const ::std::string& command_key() const;
  867. void set_command_key(const ::std::string& value);
  868. #if LANG_CXX11
  869. void set_command_key(::std::string&& value);
  870. #endif
  871. void set_command_key(const char* value);
  872. void set_command_key(const char* value, size_t size);
  873. ::std::string* mutable_command_key();
  874. ::std::string* release_command_key();
  875. void set_allocated_command_key(::std::string* command_key);
  876. // required .message.Base_info base_info = 1;
  877. bool has_base_info() const;
  878. void clear_base_info();
  879. static const int kBaseInfoFieldNumber = 1;
  880. const ::message::Base_info& base_info() const;
  881. ::message::Base_info* release_base_info();
  882. ::message::Base_info* mutable_base_info();
  883. void set_allocated_base_info(::message::Base_info* base_info);
  884. // required .message.Error_manager error_manager = 3;
  885. bool has_error_manager() const;
  886. void clear_error_manager();
  887. static const int kErrorManagerFieldNumber = 3;
  888. const ::message::Error_manager& error_manager() const;
  889. ::message::Error_manager* release_error_manager();
  890. ::message::Error_manager* mutable_error_manager();
  891. void set_allocated_error_manager(::message::Error_manager* error_manager);
  892. // @@protoc_insertion_point(class_scope:message.Dispatch_response_msg)
  893. private:
  894. void set_has_base_info();
  895. void clear_has_base_info();
  896. void set_has_command_key();
  897. void clear_has_command_key();
  898. void set_has_error_manager();
  899. void clear_has_error_manager();
  900. // helper for ByteSizeLong()
  901. size_t RequiredFieldsByteSizeFallback() const;
  902. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  903. ::google::protobuf::internal::HasBits<1> _has_bits_;
  904. mutable int _cached_size_;
  905. ::google::protobuf::internal::ArenaStringPtr command_key_;
  906. ::message::Base_info* base_info_;
  907. ::message::Error_manager* error_manager_;
  908. friend struct ::protobuf_dispatch_5fmessage_2eproto::TableStruct;
  909. friend void ::protobuf_dispatch_5fmessage_2eproto::InitDefaultsDispatch_response_msgImpl();
  910. };
  911. // ===================================================================
  912. // ===================================================================
  913. #ifdef __GNUC__
  914. #pragma GCC diagnostic push
  915. #pragma GCC diagnostic ignored "-Wstrict-aliasing"
  916. #endif // __GNUC__
  917. // Device_position
  918. // required float x = 1;
  919. inline bool Device_position::has_x() const {
  920. return (_has_bits_[0] & 0x00000001u) != 0;
  921. }
  922. inline void Device_position::set_has_x() {
  923. _has_bits_[0] |= 0x00000001u;
  924. }
  925. inline void Device_position::clear_has_x() {
  926. _has_bits_[0] &= ~0x00000001u;
  927. }
  928. inline void Device_position::clear_x() {
  929. x_ = 0;
  930. clear_has_x();
  931. }
  932. inline float Device_position::x() const {
  933. // @@protoc_insertion_point(field_get:message.Device_position.x)
  934. return x_;
  935. }
  936. inline void Device_position::set_x(float value) {
  937. set_has_x();
  938. x_ = value;
  939. // @@protoc_insertion_point(field_set:message.Device_position.x)
  940. }
  941. // required float y = 2;
  942. inline bool Device_position::has_y() const {
  943. return (_has_bits_[0] & 0x00000002u) != 0;
  944. }
  945. inline void Device_position::set_has_y() {
  946. _has_bits_[0] |= 0x00000002u;
  947. }
  948. inline void Device_position::clear_has_y() {
  949. _has_bits_[0] &= ~0x00000002u;
  950. }
  951. inline void Device_position::clear_y() {
  952. y_ = 0;
  953. clear_has_y();
  954. }
  955. inline float Device_position::y() const {
  956. // @@protoc_insertion_point(field_get:message.Device_position.y)
  957. return y_;
  958. }
  959. inline void Device_position::set_y(float value) {
  960. set_has_y();
  961. y_ = value;
  962. // @@protoc_insertion_point(field_set:message.Device_position.y)
  963. }
  964. // required float z = 3;
  965. inline bool Device_position::has_z() const {
  966. return (_has_bits_[0] & 0x00000004u) != 0;
  967. }
  968. inline void Device_position::set_has_z() {
  969. _has_bits_[0] |= 0x00000004u;
  970. }
  971. inline void Device_position::clear_has_z() {
  972. _has_bits_[0] &= ~0x00000004u;
  973. }
  974. inline void Device_position::clear_z() {
  975. z_ = 0;
  976. clear_has_z();
  977. }
  978. inline float Device_position::z() const {
  979. // @@protoc_insertion_point(field_get:message.Device_position.z)
  980. return z_;
  981. }
  982. inline void Device_position::set_z(float value) {
  983. set_has_z();
  984. z_ = value;
  985. // @@protoc_insertion_point(field_set:message.Device_position.z)
  986. }
  987. // -------------------------------------------------------------------
  988. // Dispatch_manager_status_msg
  989. // required .message.Base_info base_info = 1;
  990. inline bool Dispatch_manager_status_msg::has_base_info() const {
  991. return (_has_bits_[0] & 0x00000001u) != 0;
  992. }
  993. inline void Dispatch_manager_status_msg::set_has_base_info() {
  994. _has_bits_[0] |= 0x00000001u;
  995. }
  996. inline void Dispatch_manager_status_msg::clear_has_base_info() {
  997. _has_bits_[0] &= ~0x00000001u;
  998. }
  999. inline const ::message::Base_info& Dispatch_manager_status_msg::base_info() const {
  1000. const ::message::Base_info* p = base_info_;
  1001. // @@protoc_insertion_point(field_get:message.Dispatch_manager_status_msg.base_info)
  1002. return p != NULL ? *p : *reinterpret_cast<const ::message::Base_info*>(
  1003. &::message::_Base_info_default_instance_);
  1004. }
  1005. inline ::message::Base_info* Dispatch_manager_status_msg::release_base_info() {
  1006. // @@protoc_insertion_point(field_release:message.Dispatch_manager_status_msg.base_info)
  1007. clear_has_base_info();
  1008. ::message::Base_info* temp = base_info_;
  1009. base_info_ = NULL;
  1010. return temp;
  1011. }
  1012. inline ::message::Base_info* Dispatch_manager_status_msg::mutable_base_info() {
  1013. set_has_base_info();
  1014. if (base_info_ == NULL) {
  1015. base_info_ = new ::message::Base_info;
  1016. }
  1017. // @@protoc_insertion_point(field_mutable:message.Dispatch_manager_status_msg.base_info)
  1018. return base_info_;
  1019. }
  1020. inline void Dispatch_manager_status_msg::set_allocated_base_info(::message::Base_info* base_info) {
  1021. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  1022. if (message_arena == NULL) {
  1023. delete reinterpret_cast< ::google::protobuf::MessageLite*>(base_info_);
  1024. }
  1025. if (base_info) {
  1026. ::google::protobuf::Arena* submessage_arena = NULL;
  1027. if (message_arena != submessage_arena) {
  1028. base_info = ::google::protobuf::internal::GetOwnedMessage(
  1029. message_arena, base_info, submessage_arena);
  1030. }
  1031. set_has_base_info();
  1032. } else {
  1033. clear_has_base_info();
  1034. }
  1035. base_info_ = base_info;
  1036. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_manager_status_msg.base_info)
  1037. }
  1038. // required int32 dispatch_id = 2;
  1039. inline bool Dispatch_manager_status_msg::has_dispatch_id() const {
  1040. return (_has_bits_[0] & 0x00000002u) != 0;
  1041. }
  1042. inline void Dispatch_manager_status_msg::set_has_dispatch_id() {
  1043. _has_bits_[0] |= 0x00000002u;
  1044. }
  1045. inline void Dispatch_manager_status_msg::clear_has_dispatch_id() {
  1046. _has_bits_[0] &= ~0x00000002u;
  1047. }
  1048. inline void Dispatch_manager_status_msg::clear_dispatch_id() {
  1049. dispatch_id_ = 0;
  1050. clear_has_dispatch_id();
  1051. }
  1052. inline ::google::protobuf::int32 Dispatch_manager_status_msg::dispatch_id() const {
  1053. // @@protoc_insertion_point(field_get:message.Dispatch_manager_status_msg.dispatch_id)
  1054. return dispatch_id_;
  1055. }
  1056. inline void Dispatch_manager_status_msg::set_dispatch_id(::google::protobuf::int32 value) {
  1057. set_has_dispatch_id();
  1058. dispatch_id_ = value;
  1059. // @@protoc_insertion_point(field_set:message.Dispatch_manager_status_msg.dispatch_id)
  1060. }
  1061. // required .message.Dispatch_manager_status dispatch_manager_status = 3;
  1062. inline bool Dispatch_manager_status_msg::has_dispatch_manager_status() const {
  1063. return (_has_bits_[0] & 0x00000004u) != 0;
  1064. }
  1065. inline void Dispatch_manager_status_msg::set_has_dispatch_manager_status() {
  1066. _has_bits_[0] |= 0x00000004u;
  1067. }
  1068. inline void Dispatch_manager_status_msg::clear_has_dispatch_manager_status() {
  1069. _has_bits_[0] &= ~0x00000004u;
  1070. }
  1071. inline void Dispatch_manager_status_msg::clear_dispatch_manager_status() {
  1072. dispatch_manager_status_ = 0;
  1073. clear_has_dispatch_manager_status();
  1074. }
  1075. inline ::message::Dispatch_manager_status Dispatch_manager_status_msg::dispatch_manager_status() const {
  1076. // @@protoc_insertion_point(field_get:message.Dispatch_manager_status_msg.dispatch_manager_status)
  1077. return static_cast< ::message::Dispatch_manager_status >(dispatch_manager_status_);
  1078. }
  1079. inline void Dispatch_manager_status_msg::set_dispatch_manager_status(::message::Dispatch_manager_status value) {
  1080. assert(::message::Dispatch_manager_status_IsValid(value));
  1081. set_has_dispatch_manager_status();
  1082. dispatch_manager_status_ = value;
  1083. // @@protoc_insertion_point(field_set:message.Dispatch_manager_status_msg.dispatch_manager_status)
  1084. }
  1085. // repeated .message.Catcher_status catcher_status = 4;
  1086. inline int Dispatch_manager_status_msg::catcher_status_size() const {
  1087. return catcher_status_.size();
  1088. }
  1089. inline void Dispatch_manager_status_msg::clear_catcher_status() {
  1090. catcher_status_.Clear();
  1091. }
  1092. inline ::message::Catcher_status Dispatch_manager_status_msg::catcher_status(int index) const {
  1093. // @@protoc_insertion_point(field_get:message.Dispatch_manager_status_msg.catcher_status)
  1094. return static_cast< ::message::Catcher_status >(catcher_status_.Get(index));
  1095. }
  1096. inline void Dispatch_manager_status_msg::set_catcher_status(int index, ::message::Catcher_status value) {
  1097. assert(::message::Catcher_status_IsValid(value));
  1098. catcher_status_.Set(index, value);
  1099. // @@protoc_insertion_point(field_set:message.Dispatch_manager_status_msg.catcher_status)
  1100. }
  1101. inline void Dispatch_manager_status_msg::add_catcher_status(::message::Catcher_status value) {
  1102. assert(::message::Catcher_status_IsValid(value));
  1103. catcher_status_.Add(value);
  1104. // @@protoc_insertion_point(field_add:message.Dispatch_manager_status_msg.catcher_status)
  1105. }
  1106. inline const ::google::protobuf::RepeatedField<int>&
  1107. Dispatch_manager_status_msg::catcher_status() const {
  1108. // @@protoc_insertion_point(field_list:message.Dispatch_manager_status_msg.catcher_status)
  1109. return catcher_status_;
  1110. }
  1111. inline ::google::protobuf::RepeatedField<int>*
  1112. Dispatch_manager_status_msg::mutable_catcher_status() {
  1113. // @@protoc_insertion_point(field_mutable_list:message.Dispatch_manager_status_msg.catcher_status)
  1114. return &catcher_status_;
  1115. }
  1116. // repeated .message.Carrier_status carrier_status = 5;
  1117. inline int Dispatch_manager_status_msg::carrier_status_size() const {
  1118. return carrier_status_.size();
  1119. }
  1120. inline void Dispatch_manager_status_msg::clear_carrier_status() {
  1121. carrier_status_.Clear();
  1122. }
  1123. inline ::message::Carrier_status Dispatch_manager_status_msg::carrier_status(int index) const {
  1124. // @@protoc_insertion_point(field_get:message.Dispatch_manager_status_msg.carrier_status)
  1125. return static_cast< ::message::Carrier_status >(carrier_status_.Get(index));
  1126. }
  1127. inline void Dispatch_manager_status_msg::set_carrier_status(int index, ::message::Carrier_status value) {
  1128. assert(::message::Carrier_status_IsValid(value));
  1129. carrier_status_.Set(index, value);
  1130. // @@protoc_insertion_point(field_set:message.Dispatch_manager_status_msg.carrier_status)
  1131. }
  1132. inline void Dispatch_manager_status_msg::add_carrier_status(::message::Carrier_status value) {
  1133. assert(::message::Carrier_status_IsValid(value));
  1134. carrier_status_.Add(value);
  1135. // @@protoc_insertion_point(field_add:message.Dispatch_manager_status_msg.carrier_status)
  1136. }
  1137. inline const ::google::protobuf::RepeatedField<int>&
  1138. Dispatch_manager_status_msg::carrier_status() const {
  1139. // @@protoc_insertion_point(field_list:message.Dispatch_manager_status_msg.carrier_status)
  1140. return carrier_status_;
  1141. }
  1142. inline ::google::protobuf::RepeatedField<int>*
  1143. Dispatch_manager_status_msg::mutable_carrier_status() {
  1144. // @@protoc_insertion_point(field_mutable_list:message.Dispatch_manager_status_msg.carrier_status)
  1145. return &carrier_status_;
  1146. }
  1147. // repeated .message.Elevator_status elevator_status = 6;
  1148. inline int Dispatch_manager_status_msg::elevator_status_size() const {
  1149. return elevator_status_.size();
  1150. }
  1151. inline void Dispatch_manager_status_msg::clear_elevator_status() {
  1152. elevator_status_.Clear();
  1153. }
  1154. inline ::message::Elevator_status Dispatch_manager_status_msg::elevator_status(int index) const {
  1155. // @@protoc_insertion_point(field_get:message.Dispatch_manager_status_msg.elevator_status)
  1156. return static_cast< ::message::Elevator_status >(elevator_status_.Get(index));
  1157. }
  1158. inline void Dispatch_manager_status_msg::set_elevator_status(int index, ::message::Elevator_status value) {
  1159. assert(::message::Elevator_status_IsValid(value));
  1160. elevator_status_.Set(index, value);
  1161. // @@protoc_insertion_point(field_set:message.Dispatch_manager_status_msg.elevator_status)
  1162. }
  1163. inline void Dispatch_manager_status_msg::add_elevator_status(::message::Elevator_status value) {
  1164. assert(::message::Elevator_status_IsValid(value));
  1165. elevator_status_.Add(value);
  1166. // @@protoc_insertion_point(field_add:message.Dispatch_manager_status_msg.elevator_status)
  1167. }
  1168. inline const ::google::protobuf::RepeatedField<int>&
  1169. Dispatch_manager_status_msg::elevator_status() const {
  1170. // @@protoc_insertion_point(field_list:message.Dispatch_manager_status_msg.elevator_status)
  1171. return elevator_status_;
  1172. }
  1173. inline ::google::protobuf::RepeatedField<int>*
  1174. Dispatch_manager_status_msg::mutable_elevator_status() {
  1175. // @@protoc_insertion_point(field_mutable_list:message.Dispatch_manager_status_msg.elevator_status)
  1176. return &elevator_status_;
  1177. }
  1178. // repeated .message.Passageway_status passageway_status = 7;
  1179. inline int Dispatch_manager_status_msg::passageway_status_size() const {
  1180. return passageway_status_.size();
  1181. }
  1182. inline void Dispatch_manager_status_msg::clear_passageway_status() {
  1183. passageway_status_.Clear();
  1184. }
  1185. inline ::message::Passageway_status Dispatch_manager_status_msg::passageway_status(int index) const {
  1186. // @@protoc_insertion_point(field_get:message.Dispatch_manager_status_msg.passageway_status)
  1187. return static_cast< ::message::Passageway_status >(passageway_status_.Get(index));
  1188. }
  1189. inline void Dispatch_manager_status_msg::set_passageway_status(int index, ::message::Passageway_status value) {
  1190. assert(::message::Passageway_status_IsValid(value));
  1191. passageway_status_.Set(index, value);
  1192. // @@protoc_insertion_point(field_set:message.Dispatch_manager_status_msg.passageway_status)
  1193. }
  1194. inline void Dispatch_manager_status_msg::add_passageway_status(::message::Passageway_status value) {
  1195. assert(::message::Passageway_status_IsValid(value));
  1196. passageway_status_.Add(value);
  1197. // @@protoc_insertion_point(field_add:message.Dispatch_manager_status_msg.passageway_status)
  1198. }
  1199. inline const ::google::protobuf::RepeatedField<int>&
  1200. Dispatch_manager_status_msg::passageway_status() const {
  1201. // @@protoc_insertion_point(field_list:message.Dispatch_manager_status_msg.passageway_status)
  1202. return passageway_status_;
  1203. }
  1204. inline ::google::protobuf::RepeatedField<int>*
  1205. Dispatch_manager_status_msg::mutable_passageway_status() {
  1206. // @@protoc_insertion_point(field_mutable_list:message.Dispatch_manager_status_msg.passageway_status)
  1207. return &passageway_status_;
  1208. }
  1209. // -------------------------------------------------------------------
  1210. // Dispatch_terminal_status_msg
  1211. // required .message.Base_info base_info = 1;
  1212. inline bool Dispatch_terminal_status_msg::has_base_info() const {
  1213. return (_has_bits_[0] & 0x00000001u) != 0;
  1214. }
  1215. inline void Dispatch_terminal_status_msg::set_has_base_info() {
  1216. _has_bits_[0] |= 0x00000001u;
  1217. }
  1218. inline void Dispatch_terminal_status_msg::clear_has_base_info() {
  1219. _has_bits_[0] &= ~0x00000001u;
  1220. }
  1221. inline const ::message::Base_info& Dispatch_terminal_status_msg::base_info() const {
  1222. const ::message::Base_info* p = base_info_;
  1223. // @@protoc_insertion_point(field_get:message.Dispatch_terminal_status_msg.base_info)
  1224. return p != NULL ? *p : *reinterpret_cast<const ::message::Base_info*>(
  1225. &::message::_Base_info_default_instance_);
  1226. }
  1227. inline ::message::Base_info* Dispatch_terminal_status_msg::release_base_info() {
  1228. // @@protoc_insertion_point(field_release:message.Dispatch_terminal_status_msg.base_info)
  1229. clear_has_base_info();
  1230. ::message::Base_info* temp = base_info_;
  1231. base_info_ = NULL;
  1232. return temp;
  1233. }
  1234. inline ::message::Base_info* Dispatch_terminal_status_msg::mutable_base_info() {
  1235. set_has_base_info();
  1236. if (base_info_ == NULL) {
  1237. base_info_ = new ::message::Base_info;
  1238. }
  1239. // @@protoc_insertion_point(field_mutable:message.Dispatch_terminal_status_msg.base_info)
  1240. return base_info_;
  1241. }
  1242. inline void Dispatch_terminal_status_msg::set_allocated_base_info(::message::Base_info* base_info) {
  1243. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  1244. if (message_arena == NULL) {
  1245. delete reinterpret_cast< ::google::protobuf::MessageLite*>(base_info_);
  1246. }
  1247. if (base_info) {
  1248. ::google::protobuf::Arena* submessage_arena = NULL;
  1249. if (message_arena != submessage_arena) {
  1250. base_info = ::google::protobuf::internal::GetOwnedMessage(
  1251. message_arena, base_info, submessage_arena);
  1252. }
  1253. set_has_base_info();
  1254. } else {
  1255. clear_has_base_info();
  1256. }
  1257. base_info_ = base_info;
  1258. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_terminal_status_msg.base_info)
  1259. }
  1260. // required int32 terminal_id = 2;
  1261. inline bool Dispatch_terminal_status_msg::has_terminal_id() const {
  1262. return (_has_bits_[0] & 0x00000002u) != 0;
  1263. }
  1264. inline void Dispatch_terminal_status_msg::set_has_terminal_id() {
  1265. _has_bits_[0] |= 0x00000002u;
  1266. }
  1267. inline void Dispatch_terminal_status_msg::clear_has_terminal_id() {
  1268. _has_bits_[0] &= ~0x00000002u;
  1269. }
  1270. inline void Dispatch_terminal_status_msg::clear_terminal_id() {
  1271. terminal_id_ = 0;
  1272. clear_has_terminal_id();
  1273. }
  1274. inline ::google::protobuf::int32 Dispatch_terminal_status_msg::terminal_id() const {
  1275. // @@protoc_insertion_point(field_get:message.Dispatch_terminal_status_msg.terminal_id)
  1276. return terminal_id_;
  1277. }
  1278. inline void Dispatch_terminal_status_msg::set_terminal_id(::google::protobuf::int32 value) {
  1279. set_has_terminal_id();
  1280. terminal_id_ = value;
  1281. // @@protoc_insertion_point(field_set:message.Dispatch_terminal_status_msg.terminal_id)
  1282. }
  1283. // required .message.Terminal_status terminal_status = 3;
  1284. inline bool Dispatch_terminal_status_msg::has_terminal_status() const {
  1285. return (_has_bits_[0] & 0x00000004u) != 0;
  1286. }
  1287. inline void Dispatch_terminal_status_msg::set_has_terminal_status() {
  1288. _has_bits_[0] |= 0x00000004u;
  1289. }
  1290. inline void Dispatch_terminal_status_msg::clear_has_terminal_status() {
  1291. _has_bits_[0] &= ~0x00000004u;
  1292. }
  1293. inline void Dispatch_terminal_status_msg::clear_terminal_status() {
  1294. terminal_status_ = 0;
  1295. clear_has_terminal_status();
  1296. }
  1297. inline ::message::Terminal_status Dispatch_terminal_status_msg::terminal_status() const {
  1298. // @@protoc_insertion_point(field_get:message.Dispatch_terminal_status_msg.terminal_status)
  1299. return static_cast< ::message::Terminal_status >(terminal_status_);
  1300. }
  1301. inline void Dispatch_terminal_status_msg::set_terminal_status(::message::Terminal_status value) {
  1302. assert(::message::Terminal_status_IsValid(value));
  1303. set_has_terminal_status();
  1304. terminal_status_ = value;
  1305. // @@protoc_insertion_point(field_set:message.Dispatch_terminal_status_msg.terminal_status)
  1306. }
  1307. // required .message.Passageway_direction passageway_direction = 4;
  1308. inline bool Dispatch_terminal_status_msg::has_passageway_direction() const {
  1309. return (_has_bits_[0] & 0x00000008u) != 0;
  1310. }
  1311. inline void Dispatch_terminal_status_msg::set_has_passageway_direction() {
  1312. _has_bits_[0] |= 0x00000008u;
  1313. }
  1314. inline void Dispatch_terminal_status_msg::clear_has_passageway_direction() {
  1315. _has_bits_[0] &= ~0x00000008u;
  1316. }
  1317. inline void Dispatch_terminal_status_msg::clear_passageway_direction() {
  1318. passageway_direction_ = 0;
  1319. clear_has_passageway_direction();
  1320. }
  1321. inline ::message::Passageway_direction Dispatch_terminal_status_msg::passageway_direction() const {
  1322. // @@protoc_insertion_point(field_get:message.Dispatch_terminal_status_msg.passageway_direction)
  1323. return static_cast< ::message::Passageway_direction >(passageway_direction_);
  1324. }
  1325. inline void Dispatch_terminal_status_msg::set_passageway_direction(::message::Passageway_direction value) {
  1326. assert(::message::Passageway_direction_IsValid(value));
  1327. set_has_passageway_direction();
  1328. passageway_direction_ = value;
  1329. // @@protoc_insertion_point(field_set:message.Dispatch_terminal_status_msg.passageway_direction)
  1330. }
  1331. // -------------------------------------------------------------------
  1332. // Dispatch_request_msg
  1333. // required .message.Base_info base_info = 1;
  1334. inline bool Dispatch_request_msg::has_base_info() const {
  1335. return (_has_bits_[0] & 0x00000002u) != 0;
  1336. }
  1337. inline void Dispatch_request_msg::set_has_base_info() {
  1338. _has_bits_[0] |= 0x00000002u;
  1339. }
  1340. inline void Dispatch_request_msg::clear_has_base_info() {
  1341. _has_bits_[0] &= ~0x00000002u;
  1342. }
  1343. inline const ::message::Base_info& Dispatch_request_msg::base_info() const {
  1344. const ::message::Base_info* p = base_info_;
  1345. // @@protoc_insertion_point(field_get:message.Dispatch_request_msg.base_info)
  1346. return p != NULL ? *p : *reinterpret_cast<const ::message::Base_info*>(
  1347. &::message::_Base_info_default_instance_);
  1348. }
  1349. inline ::message::Base_info* Dispatch_request_msg::release_base_info() {
  1350. // @@protoc_insertion_point(field_release:message.Dispatch_request_msg.base_info)
  1351. clear_has_base_info();
  1352. ::message::Base_info* temp = base_info_;
  1353. base_info_ = NULL;
  1354. return temp;
  1355. }
  1356. inline ::message::Base_info* Dispatch_request_msg::mutable_base_info() {
  1357. set_has_base_info();
  1358. if (base_info_ == NULL) {
  1359. base_info_ = new ::message::Base_info;
  1360. }
  1361. // @@protoc_insertion_point(field_mutable:message.Dispatch_request_msg.base_info)
  1362. return base_info_;
  1363. }
  1364. inline void Dispatch_request_msg::set_allocated_base_info(::message::Base_info* base_info) {
  1365. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  1366. if (message_arena == NULL) {
  1367. delete reinterpret_cast< ::google::protobuf::MessageLite*>(base_info_);
  1368. }
  1369. if (base_info) {
  1370. ::google::protobuf::Arena* submessage_arena = NULL;
  1371. if (message_arena != submessage_arena) {
  1372. base_info = ::google::protobuf::internal::GetOwnedMessage(
  1373. message_arena, base_info, submessage_arena);
  1374. }
  1375. set_has_base_info();
  1376. } else {
  1377. clear_has_base_info();
  1378. }
  1379. base_info_ = base_info;
  1380. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_request_msg.base_info)
  1381. }
  1382. // required string command_key = 2;
  1383. inline bool Dispatch_request_msg::has_command_key() const {
  1384. return (_has_bits_[0] & 0x00000001u) != 0;
  1385. }
  1386. inline void Dispatch_request_msg::set_has_command_key() {
  1387. _has_bits_[0] |= 0x00000001u;
  1388. }
  1389. inline void Dispatch_request_msg::clear_has_command_key() {
  1390. _has_bits_[0] &= ~0x00000001u;
  1391. }
  1392. inline void Dispatch_request_msg::clear_command_key() {
  1393. command_key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1394. clear_has_command_key();
  1395. }
  1396. inline const ::std::string& Dispatch_request_msg::command_key() const {
  1397. // @@protoc_insertion_point(field_get:message.Dispatch_request_msg.command_key)
  1398. return command_key_.GetNoArena();
  1399. }
  1400. inline void Dispatch_request_msg::set_command_key(const ::std::string& value) {
  1401. set_has_command_key();
  1402. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  1403. // @@protoc_insertion_point(field_set:message.Dispatch_request_msg.command_key)
  1404. }
  1405. #if LANG_CXX11
  1406. inline void Dispatch_request_msg::set_command_key(::std::string&& value) {
  1407. set_has_command_key();
  1408. command_key_.SetNoArena(
  1409. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  1410. // @@protoc_insertion_point(field_set_rvalue:message.Dispatch_request_msg.command_key)
  1411. }
  1412. #endif
  1413. inline void Dispatch_request_msg::set_command_key(const char* value) {
  1414. GOOGLE_DCHECK(value != NULL);
  1415. set_has_command_key();
  1416. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  1417. // @@protoc_insertion_point(field_set_char:message.Dispatch_request_msg.command_key)
  1418. }
  1419. inline void Dispatch_request_msg::set_command_key(const char* value, size_t size) {
  1420. set_has_command_key();
  1421. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  1422. ::std::string(reinterpret_cast<const char*>(value), size));
  1423. // @@protoc_insertion_point(field_set_pointer:message.Dispatch_request_msg.command_key)
  1424. }
  1425. inline ::std::string* Dispatch_request_msg::mutable_command_key() {
  1426. set_has_command_key();
  1427. // @@protoc_insertion_point(field_mutable:message.Dispatch_request_msg.command_key)
  1428. return command_key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1429. }
  1430. inline ::std::string* Dispatch_request_msg::release_command_key() {
  1431. // @@protoc_insertion_point(field_release:message.Dispatch_request_msg.command_key)
  1432. clear_has_command_key();
  1433. return command_key_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1434. }
  1435. inline void Dispatch_request_msg::set_allocated_command_key(::std::string* command_key) {
  1436. if (command_key != NULL) {
  1437. set_has_command_key();
  1438. } else {
  1439. clear_has_command_key();
  1440. }
  1441. command_key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), command_key);
  1442. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_request_msg.command_key)
  1443. }
  1444. // required .message.Dispatch_motion_direction dispatch_motion_direction = 3;
  1445. inline bool Dispatch_request_msg::has_dispatch_motion_direction() const {
  1446. return (_has_bits_[0] & 0x00000010u) != 0;
  1447. }
  1448. inline void Dispatch_request_msg::set_has_dispatch_motion_direction() {
  1449. _has_bits_[0] |= 0x00000010u;
  1450. }
  1451. inline void Dispatch_request_msg::clear_has_dispatch_motion_direction() {
  1452. _has_bits_[0] &= ~0x00000010u;
  1453. }
  1454. inline void Dispatch_request_msg::clear_dispatch_motion_direction() {
  1455. dispatch_motion_direction_ = 0;
  1456. clear_has_dispatch_motion_direction();
  1457. }
  1458. inline ::message::Dispatch_motion_direction Dispatch_request_msg::dispatch_motion_direction() const {
  1459. // @@protoc_insertion_point(field_get:message.Dispatch_request_msg.dispatch_motion_direction)
  1460. return static_cast< ::message::Dispatch_motion_direction >(dispatch_motion_direction_);
  1461. }
  1462. inline void Dispatch_request_msg::set_dispatch_motion_direction(::message::Dispatch_motion_direction value) {
  1463. assert(::message::Dispatch_motion_direction_IsValid(value));
  1464. set_has_dispatch_motion_direction();
  1465. dispatch_motion_direction_ = value;
  1466. // @@protoc_insertion_point(field_set:message.Dispatch_request_msg.dispatch_motion_direction)
  1467. }
  1468. // required int32 terminal_id = 4;
  1469. inline bool Dispatch_request_msg::has_terminal_id() const {
  1470. return (_has_bits_[0] & 0x00000020u) != 0;
  1471. }
  1472. inline void Dispatch_request_msg::set_has_terminal_id() {
  1473. _has_bits_[0] |= 0x00000020u;
  1474. }
  1475. inline void Dispatch_request_msg::clear_has_terminal_id() {
  1476. _has_bits_[0] &= ~0x00000020u;
  1477. }
  1478. inline void Dispatch_request_msg::clear_terminal_id() {
  1479. terminal_id_ = 0;
  1480. clear_has_terminal_id();
  1481. }
  1482. inline ::google::protobuf::int32 Dispatch_request_msg::terminal_id() const {
  1483. // @@protoc_insertion_point(field_get:message.Dispatch_request_msg.terminal_id)
  1484. return terminal_id_;
  1485. }
  1486. inline void Dispatch_request_msg::set_terminal_id(::google::protobuf::int32 value) {
  1487. set_has_terminal_id();
  1488. terminal_id_ = value;
  1489. // @@protoc_insertion_point(field_set:message.Dispatch_request_msg.terminal_id)
  1490. }
  1491. // required .message.Parkspace_info parkspace_info = 5;
  1492. inline bool Dispatch_request_msg::has_parkspace_info() const {
  1493. return (_has_bits_[0] & 0x00000004u) != 0;
  1494. }
  1495. inline void Dispatch_request_msg::set_has_parkspace_info() {
  1496. _has_bits_[0] |= 0x00000004u;
  1497. }
  1498. inline void Dispatch_request_msg::clear_has_parkspace_info() {
  1499. _has_bits_[0] &= ~0x00000004u;
  1500. }
  1501. inline const ::message::Parkspace_info& Dispatch_request_msg::parkspace_info() const {
  1502. const ::message::Parkspace_info* p = parkspace_info_;
  1503. // @@protoc_insertion_point(field_get:message.Dispatch_request_msg.parkspace_info)
  1504. return p != NULL ? *p : *reinterpret_cast<const ::message::Parkspace_info*>(
  1505. &::message::_Parkspace_info_default_instance_);
  1506. }
  1507. inline ::message::Parkspace_info* Dispatch_request_msg::release_parkspace_info() {
  1508. // @@protoc_insertion_point(field_release:message.Dispatch_request_msg.parkspace_info)
  1509. clear_has_parkspace_info();
  1510. ::message::Parkspace_info* temp = parkspace_info_;
  1511. parkspace_info_ = NULL;
  1512. return temp;
  1513. }
  1514. inline ::message::Parkspace_info* Dispatch_request_msg::mutable_parkspace_info() {
  1515. set_has_parkspace_info();
  1516. if (parkspace_info_ == NULL) {
  1517. parkspace_info_ = new ::message::Parkspace_info;
  1518. }
  1519. // @@protoc_insertion_point(field_mutable:message.Dispatch_request_msg.parkspace_info)
  1520. return parkspace_info_;
  1521. }
  1522. inline void Dispatch_request_msg::set_allocated_parkspace_info(::message::Parkspace_info* parkspace_info) {
  1523. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  1524. if (message_arena == NULL) {
  1525. delete reinterpret_cast< ::google::protobuf::MessageLite*>(parkspace_info_);
  1526. }
  1527. if (parkspace_info) {
  1528. ::google::protobuf::Arena* submessage_arena = NULL;
  1529. if (message_arena != submessage_arena) {
  1530. parkspace_info = ::google::protobuf::internal::GetOwnedMessage(
  1531. message_arena, parkspace_info, submessage_arena);
  1532. }
  1533. set_has_parkspace_info();
  1534. } else {
  1535. clear_has_parkspace_info();
  1536. }
  1537. parkspace_info_ = parkspace_info;
  1538. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_request_msg.parkspace_info)
  1539. }
  1540. // optional .message.Locate_information locate_information = 6;
  1541. inline bool Dispatch_request_msg::has_locate_information() const {
  1542. return (_has_bits_[0] & 0x00000008u) != 0;
  1543. }
  1544. inline void Dispatch_request_msg::set_has_locate_information() {
  1545. _has_bits_[0] |= 0x00000008u;
  1546. }
  1547. inline void Dispatch_request_msg::clear_has_locate_information() {
  1548. _has_bits_[0] &= ~0x00000008u;
  1549. }
  1550. inline const ::message::Locate_information& Dispatch_request_msg::locate_information() const {
  1551. const ::message::Locate_information* p = locate_information_;
  1552. // @@protoc_insertion_point(field_get:message.Dispatch_request_msg.locate_information)
  1553. return p != NULL ? *p : *reinterpret_cast<const ::message::Locate_information*>(
  1554. &::message::_Locate_information_default_instance_);
  1555. }
  1556. inline ::message::Locate_information* Dispatch_request_msg::release_locate_information() {
  1557. // @@protoc_insertion_point(field_release:message.Dispatch_request_msg.locate_information)
  1558. clear_has_locate_information();
  1559. ::message::Locate_information* temp = locate_information_;
  1560. locate_information_ = NULL;
  1561. return temp;
  1562. }
  1563. inline ::message::Locate_information* Dispatch_request_msg::mutable_locate_information() {
  1564. set_has_locate_information();
  1565. if (locate_information_ == NULL) {
  1566. locate_information_ = new ::message::Locate_information;
  1567. }
  1568. // @@protoc_insertion_point(field_mutable:message.Dispatch_request_msg.locate_information)
  1569. return locate_information_;
  1570. }
  1571. inline void Dispatch_request_msg::set_allocated_locate_information(::message::Locate_information* locate_information) {
  1572. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  1573. if (message_arena == NULL) {
  1574. delete reinterpret_cast< ::google::protobuf::MessageLite*>(locate_information_);
  1575. }
  1576. if (locate_information) {
  1577. ::google::protobuf::Arena* submessage_arena = NULL;
  1578. if (message_arena != submessage_arena) {
  1579. locate_information = ::google::protobuf::internal::GetOwnedMessage(
  1580. message_arena, locate_information, submessage_arena);
  1581. }
  1582. set_has_locate_information();
  1583. } else {
  1584. clear_has_locate_information();
  1585. }
  1586. locate_information_ = locate_information;
  1587. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_request_msg.locate_information)
  1588. }
  1589. // -------------------------------------------------------------------
  1590. // Dispatch_response_msg
  1591. // required .message.Base_info base_info = 1;
  1592. inline bool Dispatch_response_msg::has_base_info() const {
  1593. return (_has_bits_[0] & 0x00000002u) != 0;
  1594. }
  1595. inline void Dispatch_response_msg::set_has_base_info() {
  1596. _has_bits_[0] |= 0x00000002u;
  1597. }
  1598. inline void Dispatch_response_msg::clear_has_base_info() {
  1599. _has_bits_[0] &= ~0x00000002u;
  1600. }
  1601. inline const ::message::Base_info& Dispatch_response_msg::base_info() const {
  1602. const ::message::Base_info* p = base_info_;
  1603. // @@protoc_insertion_point(field_get:message.Dispatch_response_msg.base_info)
  1604. return p != NULL ? *p : *reinterpret_cast<const ::message::Base_info*>(
  1605. &::message::_Base_info_default_instance_);
  1606. }
  1607. inline ::message::Base_info* Dispatch_response_msg::release_base_info() {
  1608. // @@protoc_insertion_point(field_release:message.Dispatch_response_msg.base_info)
  1609. clear_has_base_info();
  1610. ::message::Base_info* temp = base_info_;
  1611. base_info_ = NULL;
  1612. return temp;
  1613. }
  1614. inline ::message::Base_info* Dispatch_response_msg::mutable_base_info() {
  1615. set_has_base_info();
  1616. if (base_info_ == NULL) {
  1617. base_info_ = new ::message::Base_info;
  1618. }
  1619. // @@protoc_insertion_point(field_mutable:message.Dispatch_response_msg.base_info)
  1620. return base_info_;
  1621. }
  1622. inline void Dispatch_response_msg::set_allocated_base_info(::message::Base_info* base_info) {
  1623. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  1624. if (message_arena == NULL) {
  1625. delete reinterpret_cast< ::google::protobuf::MessageLite*>(base_info_);
  1626. }
  1627. if (base_info) {
  1628. ::google::protobuf::Arena* submessage_arena = NULL;
  1629. if (message_arena != submessage_arena) {
  1630. base_info = ::google::protobuf::internal::GetOwnedMessage(
  1631. message_arena, base_info, submessage_arena);
  1632. }
  1633. set_has_base_info();
  1634. } else {
  1635. clear_has_base_info();
  1636. }
  1637. base_info_ = base_info;
  1638. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_response_msg.base_info)
  1639. }
  1640. // required string command_key = 2;
  1641. inline bool Dispatch_response_msg::has_command_key() const {
  1642. return (_has_bits_[0] & 0x00000001u) != 0;
  1643. }
  1644. inline void Dispatch_response_msg::set_has_command_key() {
  1645. _has_bits_[0] |= 0x00000001u;
  1646. }
  1647. inline void Dispatch_response_msg::clear_has_command_key() {
  1648. _has_bits_[0] &= ~0x00000001u;
  1649. }
  1650. inline void Dispatch_response_msg::clear_command_key() {
  1651. command_key_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1652. clear_has_command_key();
  1653. }
  1654. inline const ::std::string& Dispatch_response_msg::command_key() const {
  1655. // @@protoc_insertion_point(field_get:message.Dispatch_response_msg.command_key)
  1656. return command_key_.GetNoArena();
  1657. }
  1658. inline void Dispatch_response_msg::set_command_key(const ::std::string& value) {
  1659. set_has_command_key();
  1660. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  1661. // @@protoc_insertion_point(field_set:message.Dispatch_response_msg.command_key)
  1662. }
  1663. #if LANG_CXX11
  1664. inline void Dispatch_response_msg::set_command_key(::std::string&& value) {
  1665. set_has_command_key();
  1666. command_key_.SetNoArena(
  1667. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  1668. // @@protoc_insertion_point(field_set_rvalue:message.Dispatch_response_msg.command_key)
  1669. }
  1670. #endif
  1671. inline void Dispatch_response_msg::set_command_key(const char* value) {
  1672. GOOGLE_DCHECK(value != NULL);
  1673. set_has_command_key();
  1674. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  1675. // @@protoc_insertion_point(field_set_char:message.Dispatch_response_msg.command_key)
  1676. }
  1677. inline void Dispatch_response_msg::set_command_key(const char* value, size_t size) {
  1678. set_has_command_key();
  1679. command_key_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  1680. ::std::string(reinterpret_cast<const char*>(value), size));
  1681. // @@protoc_insertion_point(field_set_pointer:message.Dispatch_response_msg.command_key)
  1682. }
  1683. inline ::std::string* Dispatch_response_msg::mutable_command_key() {
  1684. set_has_command_key();
  1685. // @@protoc_insertion_point(field_mutable:message.Dispatch_response_msg.command_key)
  1686. return command_key_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1687. }
  1688. inline ::std::string* Dispatch_response_msg::release_command_key() {
  1689. // @@protoc_insertion_point(field_release:message.Dispatch_response_msg.command_key)
  1690. clear_has_command_key();
  1691. return command_key_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1692. }
  1693. inline void Dispatch_response_msg::set_allocated_command_key(::std::string* command_key) {
  1694. if (command_key != NULL) {
  1695. set_has_command_key();
  1696. } else {
  1697. clear_has_command_key();
  1698. }
  1699. command_key_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), command_key);
  1700. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_response_msg.command_key)
  1701. }
  1702. // required .message.Error_manager error_manager = 3;
  1703. inline bool Dispatch_response_msg::has_error_manager() const {
  1704. return (_has_bits_[0] & 0x00000004u) != 0;
  1705. }
  1706. inline void Dispatch_response_msg::set_has_error_manager() {
  1707. _has_bits_[0] |= 0x00000004u;
  1708. }
  1709. inline void Dispatch_response_msg::clear_has_error_manager() {
  1710. _has_bits_[0] &= ~0x00000004u;
  1711. }
  1712. inline const ::message::Error_manager& Dispatch_response_msg::error_manager() const {
  1713. const ::message::Error_manager* p = error_manager_;
  1714. // @@protoc_insertion_point(field_get:message.Dispatch_response_msg.error_manager)
  1715. return p != NULL ? *p : *reinterpret_cast<const ::message::Error_manager*>(
  1716. &::message::_Error_manager_default_instance_);
  1717. }
  1718. inline ::message::Error_manager* Dispatch_response_msg::release_error_manager() {
  1719. // @@protoc_insertion_point(field_release:message.Dispatch_response_msg.error_manager)
  1720. clear_has_error_manager();
  1721. ::message::Error_manager* temp = error_manager_;
  1722. error_manager_ = NULL;
  1723. return temp;
  1724. }
  1725. inline ::message::Error_manager* Dispatch_response_msg::mutable_error_manager() {
  1726. set_has_error_manager();
  1727. if (error_manager_ == NULL) {
  1728. error_manager_ = new ::message::Error_manager;
  1729. }
  1730. // @@protoc_insertion_point(field_mutable:message.Dispatch_response_msg.error_manager)
  1731. return error_manager_;
  1732. }
  1733. inline void Dispatch_response_msg::set_allocated_error_manager(::message::Error_manager* error_manager) {
  1734. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  1735. if (message_arena == NULL) {
  1736. delete reinterpret_cast< ::google::protobuf::MessageLite*>(error_manager_);
  1737. }
  1738. if (error_manager) {
  1739. ::google::protobuf::Arena* submessage_arena = NULL;
  1740. if (message_arena != submessage_arena) {
  1741. error_manager = ::google::protobuf::internal::GetOwnedMessage(
  1742. message_arena, error_manager, submessage_arena);
  1743. }
  1744. set_has_error_manager();
  1745. } else {
  1746. clear_has_error_manager();
  1747. }
  1748. error_manager_ = error_manager;
  1749. // @@protoc_insertion_point(field_set_allocated:message.Dispatch_response_msg.error_manager)
  1750. }
  1751. #ifdef __GNUC__
  1752. #pragma GCC diagnostic pop
  1753. #endif // __GNUC__
  1754. // -------------------------------------------------------------------
  1755. // -------------------------------------------------------------------
  1756. // -------------------------------------------------------------------
  1757. // -------------------------------------------------------------------
  1758. // @@protoc_insertion_point(namespace_scope)
  1759. } // namespace message
  1760. namespace google {
  1761. namespace protobuf {
  1762. template <> struct is_proto_enum< ::message::Dispatch_manager_status> : ::google::protobuf::internal::true_type {};
  1763. template <>
  1764. inline const EnumDescriptor* GetEnumDescriptor< ::message::Dispatch_manager_status>() {
  1765. return ::message::Dispatch_manager_status_descriptor();
  1766. }
  1767. template <> struct is_proto_enum< ::message::Catcher_status> : ::google::protobuf::internal::true_type {};
  1768. template <>
  1769. inline const EnumDescriptor* GetEnumDescriptor< ::message::Catcher_status>() {
  1770. return ::message::Catcher_status_descriptor();
  1771. }
  1772. template <> struct is_proto_enum< ::message::Carrier_status> : ::google::protobuf::internal::true_type {};
  1773. template <>
  1774. inline const EnumDescriptor* GetEnumDescriptor< ::message::Carrier_status>() {
  1775. return ::message::Carrier_status_descriptor();
  1776. }
  1777. template <> struct is_proto_enum< ::message::Elevator_status> : ::google::protobuf::internal::true_type {};
  1778. template <>
  1779. inline const EnumDescriptor* GetEnumDescriptor< ::message::Elevator_status>() {
  1780. return ::message::Elevator_status_descriptor();
  1781. }
  1782. template <> struct is_proto_enum< ::message::Passageway_status> : ::google::protobuf::internal::true_type {};
  1783. template <>
  1784. inline const EnumDescriptor* GetEnumDescriptor< ::message::Passageway_status>() {
  1785. return ::message::Passageway_status_descriptor();
  1786. }
  1787. template <> struct is_proto_enum< ::message::Terminal_status> : ::google::protobuf::internal::true_type {};
  1788. template <>
  1789. inline const EnumDescriptor* GetEnumDescriptor< ::message::Terminal_status>() {
  1790. return ::message::Terminal_status_descriptor();
  1791. }
  1792. template <> struct is_proto_enum< ::message::Passageway_direction> : ::google::protobuf::internal::true_type {};
  1793. template <>
  1794. inline const EnumDescriptor* GetEnumDescriptor< ::message::Passageway_direction>() {
  1795. return ::message::Passageway_direction_descriptor();
  1796. }
  1797. template <> struct is_proto_enum< ::message::Dispatch_motion_direction> : ::google::protobuf::internal::true_type {};
  1798. template <>
  1799. inline const EnumDescriptor* GetEnumDescriptor< ::message::Dispatch_motion_direction>() {
  1800. return ::message::Dispatch_motion_direction_descriptor();
  1801. }
  1802. } // namespace protobuf
  1803. } // namespace google
  1804. // @@protoc_insertion_point(global_scope)
  1805. #endif // PROTOBUF_dispatch_5fmessage_2eproto__INCLUDED