message_base.pb.h 110 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120
  1. // Generated by the protocol buffer compiler. DO NOT EDIT!
  2. // source: message_base.proto
  3. #ifndef PROTOBUF_message_5fbase_2eproto__INCLUDED
  4. #define PROTOBUF_message_5fbase_2eproto__INCLUDED
  5. #include <string>
  6. #include <google/protobuf/stubs/common.h>
  7. #if GOOGLE_PROTOBUF_VERSION < 3005000
  8. #error This file was generated by a newer version of protoc which is
  9. #error incompatible with your Protocol Buffer headers. Please update
  10. #error your headers.
  11. #endif
  12. #if 3005000 < GOOGLE_PROTOBUF_MIN_PROTOC_VERSION
  13. #error This file was generated by an older version of protoc which is
  14. #error incompatible with your Protocol Buffer headers. Please
  15. #error regenerate this file with a newer version of protoc.
  16. #endif
  17. #include <google/protobuf/io/coded_stream.h>
  18. #include <google/protobuf/arena.h>
  19. #include <google/protobuf/arenastring.h>
  20. #include <google/protobuf/generated_message_table_driven.h>
  21. #include <google/protobuf/generated_message_util.h>
  22. #include <google/protobuf/metadata.h>
  23. #include <google/protobuf/message.h>
  24. #include <google/protobuf/repeated_field.h> // IWYU pragma: export
  25. #include <google/protobuf/extension_set.h> // IWYU pragma: export
  26. #include <google/protobuf/generated_enum_reflection.h>
  27. #include <google/protobuf/unknown_field_set.h>
  28. // @@protoc_insertion_point(includes)
  29. namespace protobuf_message_5fbase_2eproto {
  30. // Internal implementation detail -- do not use these members.
  31. struct TableStruct {
  32. static const ::google::protobuf::internal::ParseTableField entries[];
  33. static const ::google::protobuf::internal::AuxillaryParseTableField aux[];
  34. static const ::google::protobuf::internal::ParseTable schema[7];
  35. static const ::google::protobuf::internal::FieldMetadata field_metadata[];
  36. static const ::google::protobuf::internal::SerializationTable serialization_table[];
  37. static const ::google::protobuf::uint32 offsets[];
  38. };
  39. void AddDescriptors();
  40. void InitDefaultsBase_infoImpl();
  41. void InitDefaultsBase_info();
  42. void InitDefaultsBase_msgImpl();
  43. void InitDefaultsBase_msg();
  44. void InitDefaultsError_managerImpl();
  45. void InitDefaultsError_manager();
  46. void InitDefaultsLocate_informationImpl();
  47. void InitDefaultsLocate_information();
  48. void InitDefaultsCar_infoImpl();
  49. void InitDefaultsCar_info();
  50. void InitDefaultsParkspace_infoImpl();
  51. void InitDefaultsParkspace_info();
  52. void InitDefaultsId_structImpl();
  53. void InitDefaultsId_struct();
  54. inline void InitDefaults() {
  55. InitDefaultsBase_info();
  56. InitDefaultsBase_msg();
  57. InitDefaultsError_manager();
  58. InitDefaultsLocate_information();
  59. InitDefaultsCar_info();
  60. InitDefaultsParkspace_info();
  61. InitDefaultsId_struct();
  62. }
  63. } // namespace protobuf_message_5fbase_2eproto
  64. namespace message {
  65. class Base_info;
  66. class Base_infoDefaultTypeInternal;
  67. extern Base_infoDefaultTypeInternal _Base_info_default_instance_;
  68. class Base_msg;
  69. class Base_msgDefaultTypeInternal;
  70. extern Base_msgDefaultTypeInternal _Base_msg_default_instance_;
  71. class Car_info;
  72. class Car_infoDefaultTypeInternal;
  73. extern Car_infoDefaultTypeInternal _Car_info_default_instance_;
  74. class Error_manager;
  75. class Error_managerDefaultTypeInternal;
  76. extern Error_managerDefaultTypeInternal _Error_manager_default_instance_;
  77. class Id_struct;
  78. class Id_structDefaultTypeInternal;
  79. extern Id_structDefaultTypeInternal _Id_struct_default_instance_;
  80. class Locate_information;
  81. class Locate_informationDefaultTypeInternal;
  82. extern Locate_informationDefaultTypeInternal _Locate_information_default_instance_;
  83. class Parkspace_info;
  84. class Parkspace_infoDefaultTypeInternal;
  85. extern Parkspace_infoDefaultTypeInternal _Parkspace_info_default_instance_;
  86. } // namespace message
  87. namespace message {
  88. enum Message_type {
  89. eBase_msg = 0,
  90. eCommand_msg = 1,
  91. eLocate_status_msg = 17,
  92. eLocate_request_msg = 18,
  93. eLocate_response_msg = 19,
  94. eLocate_sift_request_msg = 20,
  95. eLocate_sift_response_msg = 21,
  96. eDispatch_status_msg = 33,
  97. eDispatch_request_msg = 34,
  98. eDispatch_response_msg = 35,
  99. eParkspace_allocation_status_msg = 49,
  100. eParkspace_allocation_request_msg = 50,
  101. eParkspace_allocation_response_msg = 51,
  102. eParkspace_search_request_msg = 52,
  103. eParkspace_search_response_msg = 53,
  104. eParkspace_release_request_msg = 54,
  105. eParkspace_release_response_msg = 55,
  106. eParkspace_force_update_request_msg = 56,
  107. eParkspace_force_update_response_msg = 57,
  108. eParkspace_confirm_alloc_request_msg = 58,
  109. eParkspace_confirm_alloc_response_msg = 59,
  110. eParkspace_allocation_data_msg = 60,
  111. eParkspace_allocation_data_response_msg = 61,
  112. eParkspace_manual_search_request_msg = 62,
  113. eParkspace_manual_search_response_msg = 63,
  114. eStore_command_request_msg = 65,
  115. eStore_command_response_msg = 66,
  116. ePickup_command_request_msg = 67,
  117. ePickup_command_response_msg = 68,
  118. eTerminal_status_msg = 80,
  119. eStoring_process_statu_msg = 144,
  120. ePicking_process_statu_msg = 145,
  121. eCentral_controller_statu_msg = 160,
  122. eEntrance_manual_operation_msg = 176,
  123. eProcess_manual_operation_msg = 177,
  124. eNotify_request_msg = 192,
  125. eNotify_response_msg = 193,
  126. eNotify_status_msg = 194,
  127. eUnNormalized_module_statu_msg = 208,
  128. eDispatch_plan_request_msg = 224,
  129. eDispatch_plan_response_msg = 225,
  130. eDispatch_control_request_msg = 226,
  131. eDispatch_control_response_msg = 227,
  132. eDispatch_manager_status_msg = 234,
  133. eDispatch_manager_data_msg = 235,
  134. eGround_detect_request_msg = 240,
  135. eGround_detect_response_msg = 241,
  136. eGround_status_msg = 242
  137. };
  138. bool Message_type_IsValid(int value);
  139. const Message_type Message_type_MIN = eBase_msg;
  140. const Message_type Message_type_MAX = eGround_status_msg;
  141. const int Message_type_ARRAYSIZE = Message_type_MAX + 1;
  142. const ::google::protobuf::EnumDescriptor* Message_type_descriptor();
  143. inline const ::std::string& Message_type_Name(Message_type value) {
  144. return ::google::protobuf::internal::NameOfEnum(
  145. Message_type_descriptor(), value);
  146. }
  147. inline bool Message_type_Parse(
  148. const ::std::string& name, Message_type* value) {
  149. return ::google::protobuf::internal::ParseNamedEnum<Message_type>(
  150. Message_type_descriptor(), name, value);
  151. }
  152. enum Communicator {
  153. eEmpty = 0,
  154. eMain = 1,
  155. eTerminor = 256,
  156. eParkspace = 512,
  157. eMeasurer = 768,
  158. eMeasurer_sift_server = 769,
  159. eDispatch_manager = 1024,
  160. eDispatch_control = 1025,
  161. eNotify = 1281,
  162. eGround_measurer = 3840
  163. };
  164. bool Communicator_IsValid(int value);
  165. const Communicator Communicator_MIN = eEmpty;
  166. const Communicator Communicator_MAX = eGround_measurer;
  167. const int Communicator_ARRAYSIZE = Communicator_MAX + 1;
  168. const ::google::protobuf::EnumDescriptor* Communicator_descriptor();
  169. inline const ::std::string& Communicator_Name(Communicator value) {
  170. return ::google::protobuf::internal::NameOfEnum(
  171. Communicator_descriptor(), value);
  172. }
  173. inline bool Communicator_Parse(
  174. const ::std::string& name, Communicator* value) {
  175. return ::google::protobuf::internal::ParseNamedEnum<Communicator>(
  176. Communicator_descriptor(), name, value);
  177. }
  178. enum Process_type {
  179. eStoring = 1,
  180. ePicking = 2
  181. };
  182. bool Process_type_IsValid(int value);
  183. const Process_type Process_type_MIN = eStoring;
  184. const Process_type Process_type_MAX = ePicking;
  185. const int Process_type_ARRAYSIZE = Process_type_MAX + 1;
  186. const ::google::protobuf::EnumDescriptor* Process_type_descriptor();
  187. inline const ::std::string& Process_type_Name(Process_type value) {
  188. return ::google::protobuf::internal::NameOfEnum(
  189. Process_type_descriptor(), value);
  190. }
  191. inline bool Process_type_Parse(
  192. const ::std::string& name, Process_type* value) {
  193. return ::google::protobuf::internal::ParseNamedEnum<Process_type>(
  194. Process_type_descriptor(), name, value);
  195. }
  196. enum Error_level {
  197. NORMAL = 0,
  198. NEGLIGIBLE_ERROR = 1,
  199. MINOR_ERROR = 2,
  200. MAJOR_ERROR = 3,
  201. CRITICAL_ERROR = 4
  202. };
  203. bool Error_level_IsValid(int value);
  204. const Error_level Error_level_MIN = NORMAL;
  205. const Error_level Error_level_MAX = CRITICAL_ERROR;
  206. const int Error_level_ARRAYSIZE = Error_level_MAX + 1;
  207. const ::google::protobuf::EnumDescriptor* Error_level_descriptor();
  208. inline const ::std::string& Error_level_Name(Error_level value) {
  209. return ::google::protobuf::internal::NameOfEnum(
  210. Error_level_descriptor(), value);
  211. }
  212. inline bool Error_level_Parse(
  213. const ::std::string& name, Error_level* value) {
  214. return ::google::protobuf::internal::ParseNamedEnum<Error_level>(
  215. Error_level_descriptor(), name, value);
  216. }
  217. enum Parkspace_status {
  218. eParkspace_status_unknow = 0,
  219. eParkspace_empty = 1,
  220. eParkspace_occupied = 2,
  221. eParkspace_reserved = 3,
  222. eParkspace_locked = 4,
  223. eParkspace_error = 5
  224. };
  225. bool Parkspace_status_IsValid(int value);
  226. const Parkspace_status Parkspace_status_MIN = eParkspace_status_unknow;
  227. const Parkspace_status Parkspace_status_MAX = eParkspace_error;
  228. const int Parkspace_status_ARRAYSIZE = Parkspace_status_MAX + 1;
  229. const ::google::protobuf::EnumDescriptor* Parkspace_status_descriptor();
  230. inline const ::std::string& Parkspace_status_Name(Parkspace_status value) {
  231. return ::google::protobuf::internal::NameOfEnum(
  232. Parkspace_status_descriptor(), value);
  233. }
  234. inline bool Parkspace_status_Parse(
  235. const ::std::string& name, Parkspace_status* value) {
  236. return ::google::protobuf::internal::ParseNamedEnum<Parkspace_status>(
  237. Parkspace_status_descriptor(), name, value);
  238. }
  239. enum Direction {
  240. eDirection_unknow = 0,
  241. eForward = 1,
  242. eBackward = 2
  243. };
  244. bool Direction_IsValid(int value);
  245. const Direction Direction_MIN = eDirection_unknow;
  246. const Direction Direction_MAX = eBackward;
  247. const int Direction_ARRAYSIZE = Direction_MAX + 1;
  248. const ::google::protobuf::EnumDescriptor* Direction_descriptor();
  249. inline const ::std::string& Direction_Name(Direction value) {
  250. return ::google::protobuf::internal::NameOfEnum(
  251. Direction_descriptor(), value);
  252. }
  253. inline bool Direction_Parse(
  254. const ::std::string& name, Direction* value) {
  255. return ::google::protobuf::internal::ParseNamedEnum<Direction>(
  256. Direction_descriptor(), name, value);
  257. }
  258. enum Parkspace_path {
  259. UNKNOW_PATH = 0,
  260. OPTIMAL_PATH = 1,
  261. LEFT_PATH = 2,
  262. RIGHT_PATH = 3,
  263. TEMPORARY_CACHE_PATH = 4
  264. };
  265. bool Parkspace_path_IsValid(int value);
  266. const Parkspace_path Parkspace_path_MIN = UNKNOW_PATH;
  267. const Parkspace_path Parkspace_path_MAX = TEMPORARY_CACHE_PATH;
  268. const int Parkspace_path_ARRAYSIZE = Parkspace_path_MAX + 1;
  269. const ::google::protobuf::EnumDescriptor* Parkspace_path_descriptor();
  270. inline const ::std::string& Parkspace_path_Name(Parkspace_path value) {
  271. return ::google::protobuf::internal::NameOfEnum(
  272. Parkspace_path_descriptor(), value);
  273. }
  274. inline bool Parkspace_path_Parse(
  275. const ::std::string& name, Parkspace_path* value) {
  276. return ::google::protobuf::internal::ParseNamedEnum<Parkspace_path>(
  277. Parkspace_path_descriptor(), name, value);
  278. }
  279. enum Parkspace_type {
  280. UNKNOW_PARKSPACE_TYPE = 0,
  281. MIN_PARKINGSPACE = 1,
  282. MID_PARKINGSPACE = 2,
  283. BIG_PARKINGSPACE = 3
  284. };
  285. bool Parkspace_type_IsValid(int value);
  286. const Parkspace_type Parkspace_type_MIN = UNKNOW_PARKSPACE_TYPE;
  287. const Parkspace_type Parkspace_type_MAX = BIG_PARKINGSPACE;
  288. const int Parkspace_type_ARRAYSIZE = Parkspace_type_MAX + 1;
  289. const ::google::protobuf::EnumDescriptor* Parkspace_type_descriptor();
  290. inline const ::std::string& Parkspace_type_Name(Parkspace_type value) {
  291. return ::google::protobuf::internal::NameOfEnum(
  292. Parkspace_type_descriptor(), value);
  293. }
  294. inline bool Parkspace_type_Parse(
  295. const ::std::string& name, Parkspace_type* value) {
  296. return ::google::protobuf::internal::ParseNamedEnum<Parkspace_type>(
  297. Parkspace_type_descriptor(), name, value);
  298. }
  299. enum Car_type {
  300. UNKNOW_CAR_TYPE = 0,
  301. MIN_CAR = 1,
  302. MID_CAR = 2,
  303. BIG_CAR = 3
  304. };
  305. bool Car_type_IsValid(int value);
  306. const Car_type Car_type_MIN = UNKNOW_CAR_TYPE;
  307. const Car_type Car_type_MAX = BIG_CAR;
  308. const int Car_type_ARRAYSIZE = Car_type_MAX + 1;
  309. const ::google::protobuf::EnumDescriptor* Car_type_descriptor();
  310. inline const ::std::string& Car_type_Name(Car_type value) {
  311. return ::google::protobuf::internal::NameOfEnum(
  312. Car_type_descriptor(), value);
  313. }
  314. inline bool Car_type_Parse(
  315. const ::std::string& name, Car_type* value) {
  316. return ::google::protobuf::internal::ParseNamedEnum<Car_type>(
  317. Car_type_descriptor(), name, value);
  318. }
  319. enum Step_type {
  320. eAlloc_step = 0,
  321. eMeasure_step = 1,
  322. eCompare_step = 2,
  323. eDispatch_step = 3,
  324. eConfirm_step = 4,
  325. eSearch_step = 5,
  326. eWait_step = 6,
  327. eRelease_step = 7,
  328. eComplete = 8,
  329. eBackConfirm_step = 9,
  330. eBack_compare_step = 10,
  331. eBackMeasure_step = 11,
  332. eBackAlloc_step = 12,
  333. eBackWait_step = 13,
  334. eBackDispatch_step = 14,
  335. eBackSearch_step = 15,
  336. eBackComplete = 16
  337. };
  338. bool Step_type_IsValid(int value);
  339. const Step_type Step_type_MIN = eAlloc_step;
  340. const Step_type Step_type_MAX = eBackComplete;
  341. const int Step_type_ARRAYSIZE = Step_type_MAX + 1;
  342. const ::google::protobuf::EnumDescriptor* Step_type_descriptor();
  343. inline const ::std::string& Step_type_Name(Step_type value) {
  344. return ::google::protobuf::internal::NameOfEnum(
  345. Step_type_descriptor(), value);
  346. }
  347. inline bool Step_type_Parse(
  348. const ::std::string& name, Step_type* value) {
  349. return ::google::protobuf::internal::ParseNamedEnum<Step_type>(
  350. Step_type_descriptor(), name, value);
  351. }
  352. enum Step_statu {
  353. eWaiting = 0,
  354. eWorking = 1,
  355. eError = 2,
  356. eFinished = 3
  357. };
  358. bool Step_statu_IsValid(int value);
  359. const Step_statu Step_statu_MIN = eWaiting;
  360. const Step_statu Step_statu_MAX = eFinished;
  361. const int Step_statu_ARRAYSIZE = Step_statu_MAX + 1;
  362. const ::google::protobuf::EnumDescriptor* Step_statu_descriptor();
  363. inline const ::std::string& Step_statu_Name(Step_statu value) {
  364. return ::google::protobuf::internal::NameOfEnum(
  365. Step_statu_descriptor(), value);
  366. }
  367. inline bool Step_statu_Parse(
  368. const ::std::string& name, Step_statu* value) {
  369. return ::google::protobuf::internal::ParseNamedEnum<Step_statu>(
  370. Step_statu_descriptor(), name, value);
  371. }
  372. enum Dispatch_device_type {
  373. ROBOT_1 = 101,
  374. ROBOT_2 = 102,
  375. CARRIER_1 = 200,
  376. CARRIER_2 = 207,
  377. CARRIER_3 = 203,
  378. PASSAGEWAY_0 = 300,
  379. PASSAGEWAY_1 = 301,
  380. PASSAGEWAY_2 = 302,
  381. PASSAGEWAY_3 = 303,
  382. PASSAGEWAY_4 = 304,
  383. PASSAGEWAY_5 = 305,
  384. PASSAGEWAY_6 = 306,
  385. PASSAGEWAY_7 = 307
  386. };
  387. bool Dispatch_device_type_IsValid(int value);
  388. const Dispatch_device_type Dispatch_device_type_MIN = ROBOT_1;
  389. const Dispatch_device_type Dispatch_device_type_MAX = PASSAGEWAY_7;
  390. const int Dispatch_device_type_ARRAYSIZE = Dispatch_device_type_MAX + 1;
  391. const ::google::protobuf::EnumDescriptor* Dispatch_device_type_descriptor();
  392. inline const ::std::string& Dispatch_device_type_Name(Dispatch_device_type value) {
  393. return ::google::protobuf::internal::NameOfEnum(
  394. Dispatch_device_type_descriptor(), value);
  395. }
  396. inline bool Dispatch_device_type_Parse(
  397. const ::std::string& name, Dispatch_device_type* value) {
  398. return ::google::protobuf::internal::ParseNamedEnum<Dispatch_device_type>(
  399. Dispatch_device_type_descriptor(), name, value);
  400. }
  401. // ===================================================================
  402. class Base_info : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Base_info) */ {
  403. public:
  404. Base_info();
  405. virtual ~Base_info();
  406. Base_info(const Base_info& from);
  407. inline Base_info& operator=(const Base_info& from) {
  408. CopyFrom(from);
  409. return *this;
  410. }
  411. #if LANG_CXX11
  412. Base_info(Base_info&& from) noexcept
  413. : Base_info() {
  414. *this = ::std::move(from);
  415. }
  416. inline Base_info& operator=(Base_info&& from) noexcept {
  417. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  418. if (this != &from) InternalSwap(&from);
  419. } else {
  420. CopyFrom(from);
  421. }
  422. return *this;
  423. }
  424. #endif
  425. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  426. return _internal_metadata_.unknown_fields();
  427. }
  428. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  429. return _internal_metadata_.mutable_unknown_fields();
  430. }
  431. static const ::google::protobuf::Descriptor* descriptor();
  432. static const Base_info& default_instance();
  433. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  434. static inline const Base_info* internal_default_instance() {
  435. return reinterpret_cast<const Base_info*>(
  436. &_Base_info_default_instance_);
  437. }
  438. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  439. 0;
  440. void Swap(Base_info* other);
  441. friend void swap(Base_info& a, Base_info& b) {
  442. a.Swap(&b);
  443. }
  444. // implements Message ----------------------------------------------
  445. inline Base_info* New() const PROTOBUF_FINAL { return New(NULL); }
  446. Base_info* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  447. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  448. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  449. void CopyFrom(const Base_info& from);
  450. void MergeFrom(const Base_info& from);
  451. void Clear() PROTOBUF_FINAL;
  452. bool IsInitialized() const PROTOBUF_FINAL;
  453. size_t ByteSizeLong() const PROTOBUF_FINAL;
  454. bool MergePartialFromCodedStream(
  455. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  456. void SerializeWithCachedSizes(
  457. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  458. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  459. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  460. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  461. private:
  462. void SharedCtor();
  463. void SharedDtor();
  464. void SetCachedSize(int size) const PROTOBUF_FINAL;
  465. void InternalSwap(Base_info* other);
  466. private:
  467. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  468. return NULL;
  469. }
  470. inline void* MaybeArenaPtr() const {
  471. return NULL;
  472. }
  473. public:
  474. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  475. // nested types ----------------------------------------------------
  476. // accessors -------------------------------------------------------
  477. // required .message.Message_type msg_type = 1 [default = eBase_msg];
  478. bool has_msg_type() const;
  479. void clear_msg_type();
  480. static const int kMsgTypeFieldNumber = 1;
  481. ::message::Message_type msg_type() const;
  482. void set_msg_type(::message::Message_type value);
  483. // optional int32 timeout_ms = 2 [default = 0];
  484. bool has_timeout_ms() const;
  485. void clear_timeout_ms();
  486. static const int kTimeoutMsFieldNumber = 2;
  487. ::google::protobuf::int32 timeout_ms() const;
  488. void set_timeout_ms(::google::protobuf::int32 value);
  489. // required .message.Communicator sender = 3 [default = eEmpty];
  490. bool has_sender() const;
  491. void clear_sender();
  492. static const int kSenderFieldNumber = 3;
  493. ::message::Communicator sender() const;
  494. void set_sender(::message::Communicator value);
  495. // required .message.Communicator receiver = 4 [default = eEmpty];
  496. bool has_receiver() const;
  497. void clear_receiver();
  498. static const int kReceiverFieldNumber = 4;
  499. ::message::Communicator receiver() const;
  500. void set_receiver(::message::Communicator value);
  501. // @@protoc_insertion_point(class_scope:message.Base_info)
  502. private:
  503. void set_has_msg_type();
  504. void clear_has_msg_type();
  505. void set_has_timeout_ms();
  506. void clear_has_timeout_ms();
  507. void set_has_sender();
  508. void clear_has_sender();
  509. void set_has_receiver();
  510. void clear_has_receiver();
  511. // helper for ByteSizeLong()
  512. size_t RequiredFieldsByteSizeFallback() const;
  513. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  514. ::google::protobuf::internal::HasBits<1> _has_bits_;
  515. mutable int _cached_size_;
  516. int msg_type_;
  517. ::google::protobuf::int32 timeout_ms_;
  518. int sender_;
  519. int receiver_;
  520. friend struct ::protobuf_message_5fbase_2eproto::TableStruct;
  521. friend void ::protobuf_message_5fbase_2eproto::InitDefaultsBase_infoImpl();
  522. };
  523. // -------------------------------------------------------------------
  524. class Base_msg : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Base_msg) */ {
  525. public:
  526. Base_msg();
  527. virtual ~Base_msg();
  528. Base_msg(const Base_msg& from);
  529. inline Base_msg& operator=(const Base_msg& from) {
  530. CopyFrom(from);
  531. return *this;
  532. }
  533. #if LANG_CXX11
  534. Base_msg(Base_msg&& from) noexcept
  535. : Base_msg() {
  536. *this = ::std::move(from);
  537. }
  538. inline Base_msg& operator=(Base_msg&& from) noexcept {
  539. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  540. if (this != &from) InternalSwap(&from);
  541. } else {
  542. CopyFrom(from);
  543. }
  544. return *this;
  545. }
  546. #endif
  547. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  548. return _internal_metadata_.unknown_fields();
  549. }
  550. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  551. return _internal_metadata_.mutable_unknown_fields();
  552. }
  553. static const ::google::protobuf::Descriptor* descriptor();
  554. static const Base_msg& default_instance();
  555. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  556. static inline const Base_msg* internal_default_instance() {
  557. return reinterpret_cast<const Base_msg*>(
  558. &_Base_msg_default_instance_);
  559. }
  560. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  561. 1;
  562. void Swap(Base_msg* other);
  563. friend void swap(Base_msg& a, Base_msg& b) {
  564. a.Swap(&b);
  565. }
  566. // implements Message ----------------------------------------------
  567. inline Base_msg* New() const PROTOBUF_FINAL { return New(NULL); }
  568. Base_msg* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  569. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  570. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  571. void CopyFrom(const Base_msg& from);
  572. void MergeFrom(const Base_msg& from);
  573. void Clear() PROTOBUF_FINAL;
  574. bool IsInitialized() const PROTOBUF_FINAL;
  575. size_t ByteSizeLong() const PROTOBUF_FINAL;
  576. bool MergePartialFromCodedStream(
  577. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  578. void SerializeWithCachedSizes(
  579. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  580. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  581. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  582. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  583. private:
  584. void SharedCtor();
  585. void SharedDtor();
  586. void SetCachedSize(int size) const PROTOBUF_FINAL;
  587. void InternalSwap(Base_msg* other);
  588. private:
  589. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  590. return NULL;
  591. }
  592. inline void* MaybeArenaPtr() const {
  593. return NULL;
  594. }
  595. public:
  596. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  597. // nested types ----------------------------------------------------
  598. // accessors -------------------------------------------------------
  599. // required .message.Base_info base_info = 1;
  600. bool has_base_info() const;
  601. void clear_base_info();
  602. static const int kBaseInfoFieldNumber = 1;
  603. const ::message::Base_info& base_info() const;
  604. ::message::Base_info* release_base_info();
  605. ::message::Base_info* mutable_base_info();
  606. void set_allocated_base_info(::message::Base_info* base_info);
  607. // @@protoc_insertion_point(class_scope:message.Base_msg)
  608. private:
  609. void set_has_base_info();
  610. void clear_has_base_info();
  611. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  612. ::google::protobuf::internal::HasBits<1> _has_bits_;
  613. mutable int _cached_size_;
  614. ::message::Base_info* base_info_;
  615. friend struct ::protobuf_message_5fbase_2eproto::TableStruct;
  616. friend void ::protobuf_message_5fbase_2eproto::InitDefaultsBase_msgImpl();
  617. };
  618. // -------------------------------------------------------------------
  619. class Error_manager : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Error_manager) */ {
  620. public:
  621. Error_manager();
  622. virtual ~Error_manager();
  623. Error_manager(const Error_manager& from);
  624. inline Error_manager& operator=(const Error_manager& from) {
  625. CopyFrom(from);
  626. return *this;
  627. }
  628. #if LANG_CXX11
  629. Error_manager(Error_manager&& from) noexcept
  630. : Error_manager() {
  631. *this = ::std::move(from);
  632. }
  633. inline Error_manager& operator=(Error_manager&& from) noexcept {
  634. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  635. if (this != &from) InternalSwap(&from);
  636. } else {
  637. CopyFrom(from);
  638. }
  639. return *this;
  640. }
  641. #endif
  642. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  643. return _internal_metadata_.unknown_fields();
  644. }
  645. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  646. return _internal_metadata_.mutable_unknown_fields();
  647. }
  648. static const ::google::protobuf::Descriptor* descriptor();
  649. static const Error_manager& default_instance();
  650. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  651. static inline const Error_manager* internal_default_instance() {
  652. return reinterpret_cast<const Error_manager*>(
  653. &_Error_manager_default_instance_);
  654. }
  655. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  656. 2;
  657. void Swap(Error_manager* other);
  658. friend void swap(Error_manager& a, Error_manager& b) {
  659. a.Swap(&b);
  660. }
  661. // implements Message ----------------------------------------------
  662. inline Error_manager* New() const PROTOBUF_FINAL { return New(NULL); }
  663. Error_manager* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  664. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  665. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  666. void CopyFrom(const Error_manager& from);
  667. void MergeFrom(const Error_manager& from);
  668. void Clear() PROTOBUF_FINAL;
  669. bool IsInitialized() const PROTOBUF_FINAL;
  670. size_t ByteSizeLong() const PROTOBUF_FINAL;
  671. bool MergePartialFromCodedStream(
  672. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  673. void SerializeWithCachedSizes(
  674. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  675. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  676. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  677. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  678. private:
  679. void SharedCtor();
  680. void SharedDtor();
  681. void SetCachedSize(int size) const PROTOBUF_FINAL;
  682. void InternalSwap(Error_manager* other);
  683. private:
  684. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  685. return NULL;
  686. }
  687. inline void* MaybeArenaPtr() const {
  688. return NULL;
  689. }
  690. public:
  691. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  692. // nested types ----------------------------------------------------
  693. // accessors -------------------------------------------------------
  694. // optional string error_description = 3 [default = ""];
  695. bool has_error_description() const;
  696. void clear_error_description();
  697. static const int kErrorDescriptionFieldNumber = 3;
  698. const ::std::string& error_description() const;
  699. void set_error_description(const ::std::string& value);
  700. #if LANG_CXX11
  701. void set_error_description(::std::string&& value);
  702. #endif
  703. void set_error_description(const char* value);
  704. void set_error_description(const char* value, size_t size);
  705. ::std::string* mutable_error_description();
  706. ::std::string* release_error_description();
  707. void set_allocated_error_description(::std::string* error_description);
  708. // required int32 error_code = 1 [default = 0];
  709. bool has_error_code() const;
  710. void clear_error_code();
  711. static const int kErrorCodeFieldNumber = 1;
  712. ::google::protobuf::int32 error_code() const;
  713. void set_error_code(::google::protobuf::int32 value);
  714. // optional .message.Error_level error_level = 2 [default = NORMAL];
  715. bool has_error_level() const;
  716. void clear_error_level();
  717. static const int kErrorLevelFieldNumber = 2;
  718. ::message::Error_level error_level() const;
  719. void set_error_level(::message::Error_level value);
  720. // @@protoc_insertion_point(class_scope:message.Error_manager)
  721. private:
  722. void set_has_error_code();
  723. void clear_has_error_code();
  724. void set_has_error_level();
  725. void clear_has_error_level();
  726. void set_has_error_description();
  727. void clear_has_error_description();
  728. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  729. ::google::protobuf::internal::HasBits<1> _has_bits_;
  730. mutable int _cached_size_;
  731. ::google::protobuf::internal::ArenaStringPtr error_description_;
  732. ::google::protobuf::int32 error_code_;
  733. int error_level_;
  734. friend struct ::protobuf_message_5fbase_2eproto::TableStruct;
  735. friend void ::protobuf_message_5fbase_2eproto::InitDefaultsError_managerImpl();
  736. };
  737. // -------------------------------------------------------------------
  738. class Locate_information : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Locate_information) */ {
  739. public:
  740. Locate_information();
  741. virtual ~Locate_information();
  742. Locate_information(const Locate_information& from);
  743. inline Locate_information& operator=(const Locate_information& from) {
  744. CopyFrom(from);
  745. return *this;
  746. }
  747. #if LANG_CXX11
  748. Locate_information(Locate_information&& from) noexcept
  749. : Locate_information() {
  750. *this = ::std::move(from);
  751. }
  752. inline Locate_information& operator=(Locate_information&& from) noexcept {
  753. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  754. if (this != &from) InternalSwap(&from);
  755. } else {
  756. CopyFrom(from);
  757. }
  758. return *this;
  759. }
  760. #endif
  761. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  762. return _internal_metadata_.unknown_fields();
  763. }
  764. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  765. return _internal_metadata_.mutable_unknown_fields();
  766. }
  767. static const ::google::protobuf::Descriptor* descriptor();
  768. static const Locate_information& default_instance();
  769. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  770. static inline const Locate_information* internal_default_instance() {
  771. return reinterpret_cast<const Locate_information*>(
  772. &_Locate_information_default_instance_);
  773. }
  774. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  775. 3;
  776. void Swap(Locate_information* other);
  777. friend void swap(Locate_information& a, Locate_information& b) {
  778. a.Swap(&b);
  779. }
  780. // implements Message ----------------------------------------------
  781. inline Locate_information* New() const PROTOBUF_FINAL { return New(NULL); }
  782. Locate_information* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  783. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  784. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  785. void CopyFrom(const Locate_information& from);
  786. void MergeFrom(const Locate_information& from);
  787. void Clear() PROTOBUF_FINAL;
  788. bool IsInitialized() const PROTOBUF_FINAL;
  789. size_t ByteSizeLong() const PROTOBUF_FINAL;
  790. bool MergePartialFromCodedStream(
  791. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  792. void SerializeWithCachedSizes(
  793. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  794. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  795. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  796. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  797. private:
  798. void SharedCtor();
  799. void SharedDtor();
  800. void SetCachedSize(int size) const PROTOBUF_FINAL;
  801. void InternalSwap(Locate_information* other);
  802. private:
  803. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  804. return NULL;
  805. }
  806. inline void* MaybeArenaPtr() const {
  807. return NULL;
  808. }
  809. public:
  810. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  811. // nested types ----------------------------------------------------
  812. // accessors -------------------------------------------------------
  813. // optional float locate_x = 1 [default = 0];
  814. bool has_locate_x() const;
  815. void clear_locate_x();
  816. static const int kLocateXFieldNumber = 1;
  817. float locate_x() const;
  818. void set_locate_x(float value);
  819. // optional float locate_y = 2 [default = 0];
  820. bool has_locate_y() const;
  821. void clear_locate_y();
  822. static const int kLocateYFieldNumber = 2;
  823. float locate_y() const;
  824. void set_locate_y(float value);
  825. // optional float locate_angle = 3 [default = 0];
  826. bool has_locate_angle() const;
  827. void clear_locate_angle();
  828. static const int kLocateAngleFieldNumber = 3;
  829. float locate_angle() const;
  830. void set_locate_angle(float value);
  831. // optional float locate_length = 4 [default = 0];
  832. bool has_locate_length() const;
  833. void clear_locate_length();
  834. static const int kLocateLengthFieldNumber = 4;
  835. float locate_length() const;
  836. void set_locate_length(float value);
  837. // optional float locate_width = 5 [default = 0];
  838. bool has_locate_width() const;
  839. void clear_locate_width();
  840. static const int kLocateWidthFieldNumber = 5;
  841. float locate_width() const;
  842. void set_locate_width(float value);
  843. // optional float locate_height = 6 [default = 0];
  844. bool has_locate_height() const;
  845. void clear_locate_height();
  846. static const int kLocateHeightFieldNumber = 6;
  847. float locate_height() const;
  848. void set_locate_height(float value);
  849. // optional float locate_wheel_base = 7 [default = 0];
  850. bool has_locate_wheel_base() const;
  851. void clear_locate_wheel_base();
  852. static const int kLocateWheelBaseFieldNumber = 7;
  853. float locate_wheel_base() const;
  854. void set_locate_wheel_base(float value);
  855. // optional float locate_wheel_width = 8 [default = 0];
  856. bool has_locate_wheel_width() const;
  857. void clear_locate_wheel_width();
  858. static const int kLocateWheelWidthFieldNumber = 8;
  859. float locate_wheel_width() const;
  860. void set_locate_wheel_width(float value);
  861. // optional bool locate_correct = 9 [default = false];
  862. bool has_locate_correct() const;
  863. void clear_locate_correct();
  864. static const int kLocateCorrectFieldNumber = 9;
  865. bool locate_correct() const;
  866. void set_locate_correct(bool value);
  867. // optional float locate_front_theta = 10 [default = 0];
  868. bool has_locate_front_theta() const;
  869. void clear_locate_front_theta();
  870. static const int kLocateFrontThetaFieldNumber = 10;
  871. float locate_front_theta() const;
  872. void set_locate_front_theta(float value);
  873. // optional float uniformed_car_x = 11;
  874. bool has_uniformed_car_x() const;
  875. void clear_uniformed_car_x();
  876. static const int kUniformedCarXFieldNumber = 11;
  877. float uniformed_car_x() const;
  878. void set_uniformed_car_x(float value);
  879. // optional float uniformed_car_y = 12;
  880. bool has_uniformed_car_y() const;
  881. void clear_uniformed_car_y();
  882. static const int kUniformedCarYFieldNumber = 12;
  883. float uniformed_car_y() const;
  884. void set_uniformed_car_y(float value);
  885. // @@protoc_insertion_point(class_scope:message.Locate_information)
  886. private:
  887. void set_has_locate_x();
  888. void clear_has_locate_x();
  889. void set_has_locate_y();
  890. void clear_has_locate_y();
  891. void set_has_locate_angle();
  892. void clear_has_locate_angle();
  893. void set_has_locate_length();
  894. void clear_has_locate_length();
  895. void set_has_locate_width();
  896. void clear_has_locate_width();
  897. void set_has_locate_height();
  898. void clear_has_locate_height();
  899. void set_has_locate_wheel_base();
  900. void clear_has_locate_wheel_base();
  901. void set_has_locate_wheel_width();
  902. void clear_has_locate_wheel_width();
  903. void set_has_locate_correct();
  904. void clear_has_locate_correct();
  905. void set_has_locate_front_theta();
  906. void clear_has_locate_front_theta();
  907. void set_has_uniformed_car_x();
  908. void clear_has_uniformed_car_x();
  909. void set_has_uniformed_car_y();
  910. void clear_has_uniformed_car_y();
  911. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  912. ::google::protobuf::internal::HasBits<1> _has_bits_;
  913. mutable int _cached_size_;
  914. float locate_x_;
  915. float locate_y_;
  916. float locate_angle_;
  917. float locate_length_;
  918. float locate_width_;
  919. float locate_height_;
  920. float locate_wheel_base_;
  921. float locate_wheel_width_;
  922. bool locate_correct_;
  923. float locate_front_theta_;
  924. float uniformed_car_x_;
  925. float uniformed_car_y_;
  926. friend struct ::protobuf_message_5fbase_2eproto::TableStruct;
  927. friend void ::protobuf_message_5fbase_2eproto::InitDefaultsLocate_informationImpl();
  928. };
  929. // -------------------------------------------------------------------
  930. class Car_info : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Car_info) */ {
  931. public:
  932. Car_info();
  933. virtual ~Car_info();
  934. Car_info(const Car_info& from);
  935. inline Car_info& operator=(const Car_info& from) {
  936. CopyFrom(from);
  937. return *this;
  938. }
  939. #if LANG_CXX11
  940. Car_info(Car_info&& from) noexcept
  941. : Car_info() {
  942. *this = ::std::move(from);
  943. }
  944. inline Car_info& operator=(Car_info&& from) noexcept {
  945. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  946. if (this != &from) InternalSwap(&from);
  947. } else {
  948. CopyFrom(from);
  949. }
  950. return *this;
  951. }
  952. #endif
  953. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  954. return _internal_metadata_.unknown_fields();
  955. }
  956. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  957. return _internal_metadata_.mutable_unknown_fields();
  958. }
  959. static const ::google::protobuf::Descriptor* descriptor();
  960. static const Car_info& default_instance();
  961. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  962. static inline const Car_info* internal_default_instance() {
  963. return reinterpret_cast<const Car_info*>(
  964. &_Car_info_default_instance_);
  965. }
  966. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  967. 4;
  968. void Swap(Car_info* other);
  969. friend void swap(Car_info& a, Car_info& b) {
  970. a.Swap(&b);
  971. }
  972. // implements Message ----------------------------------------------
  973. inline Car_info* New() const PROTOBUF_FINAL { return New(NULL); }
  974. Car_info* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  975. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  976. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  977. void CopyFrom(const Car_info& from);
  978. void MergeFrom(const Car_info& from);
  979. void Clear() PROTOBUF_FINAL;
  980. bool IsInitialized() const PROTOBUF_FINAL;
  981. size_t ByteSizeLong() const PROTOBUF_FINAL;
  982. bool MergePartialFromCodedStream(
  983. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  984. void SerializeWithCachedSizes(
  985. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  986. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  987. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  988. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  989. private:
  990. void SharedCtor();
  991. void SharedDtor();
  992. void SetCachedSize(int size) const PROTOBUF_FINAL;
  993. void InternalSwap(Car_info* other);
  994. private:
  995. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  996. return NULL;
  997. }
  998. inline void* MaybeArenaPtr() const {
  999. return NULL;
  1000. }
  1001. public:
  1002. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  1003. // nested types ----------------------------------------------------
  1004. // accessors -------------------------------------------------------
  1005. // optional string license = 4 [default = ""];
  1006. bool has_license() const;
  1007. void clear_license();
  1008. static const int kLicenseFieldNumber = 4;
  1009. const ::std::string& license() const;
  1010. void set_license(const ::std::string& value);
  1011. #if LANG_CXX11
  1012. void set_license(::std::string&& value);
  1013. #endif
  1014. void set_license(const char* value);
  1015. void set_license(const char* value, size_t size);
  1016. ::std::string* mutable_license();
  1017. ::std::string* release_license();
  1018. void set_allocated_license(::std::string* license);
  1019. // optional string car_numberPlate = 5 [default = ""];
  1020. bool has_car_numberplate() const;
  1021. void clear_car_numberplate();
  1022. static const int kCarNumberPlateFieldNumber = 5;
  1023. const ::std::string& car_numberplate() const;
  1024. void set_car_numberplate(const ::std::string& value);
  1025. #if LANG_CXX11
  1026. void set_car_numberplate(::std::string&& value);
  1027. #endif
  1028. void set_car_numberplate(const char* value);
  1029. void set_car_numberplate(const char* value, size_t size);
  1030. ::std::string* mutable_car_numberplate();
  1031. ::std::string* release_car_numberplate();
  1032. void set_allocated_car_numberplate(::std::string* car_numberplate);
  1033. // optional float car_length = 1 [default = 0];
  1034. bool has_car_length() const;
  1035. void clear_car_length();
  1036. static const int kCarLengthFieldNumber = 1;
  1037. float car_length() const;
  1038. void set_car_length(float value);
  1039. // optional float car_width = 2 [default = 0];
  1040. bool has_car_width() const;
  1041. void clear_car_width();
  1042. static const int kCarWidthFieldNumber = 2;
  1043. float car_width() const;
  1044. void set_car_width(float value);
  1045. // optional float car_height = 3 [default = 0];
  1046. bool has_car_height() const;
  1047. void clear_car_height();
  1048. static const int kCarHeightFieldNumber = 3;
  1049. float car_height() const;
  1050. void set_car_height(float value);
  1051. // optional float car_wheel_base = 6 [default = 0];
  1052. bool has_car_wheel_base() const;
  1053. void clear_car_wheel_base();
  1054. static const int kCarWheelBaseFieldNumber = 6;
  1055. float car_wheel_base() const;
  1056. void set_car_wheel_base(float value);
  1057. // optional float car_wheel_width = 7 [default = 0];
  1058. bool has_car_wheel_width() const;
  1059. void clear_car_wheel_width();
  1060. static const int kCarWheelWidthFieldNumber = 7;
  1061. float car_wheel_width() const;
  1062. void set_car_wheel_width(float value);
  1063. // @@protoc_insertion_point(class_scope:message.Car_info)
  1064. private:
  1065. void set_has_car_length();
  1066. void clear_has_car_length();
  1067. void set_has_car_width();
  1068. void clear_has_car_width();
  1069. void set_has_car_height();
  1070. void clear_has_car_height();
  1071. void set_has_license();
  1072. void clear_has_license();
  1073. void set_has_car_numberplate();
  1074. void clear_has_car_numberplate();
  1075. void set_has_car_wheel_base();
  1076. void clear_has_car_wheel_base();
  1077. void set_has_car_wheel_width();
  1078. void clear_has_car_wheel_width();
  1079. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  1080. ::google::protobuf::internal::HasBits<1> _has_bits_;
  1081. mutable int _cached_size_;
  1082. ::google::protobuf::internal::ArenaStringPtr license_;
  1083. ::google::protobuf::internal::ArenaStringPtr car_numberplate_;
  1084. float car_length_;
  1085. float car_width_;
  1086. float car_height_;
  1087. float car_wheel_base_;
  1088. float car_wheel_width_;
  1089. friend struct ::protobuf_message_5fbase_2eproto::TableStruct;
  1090. friend void ::protobuf_message_5fbase_2eproto::InitDefaultsCar_infoImpl();
  1091. };
  1092. // -------------------------------------------------------------------
  1093. class Parkspace_info : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Parkspace_info) */ {
  1094. public:
  1095. Parkspace_info();
  1096. virtual ~Parkspace_info();
  1097. Parkspace_info(const Parkspace_info& from);
  1098. inline Parkspace_info& operator=(const Parkspace_info& from) {
  1099. CopyFrom(from);
  1100. return *this;
  1101. }
  1102. #if LANG_CXX11
  1103. Parkspace_info(Parkspace_info&& from) noexcept
  1104. : Parkspace_info() {
  1105. *this = ::std::move(from);
  1106. }
  1107. inline Parkspace_info& operator=(Parkspace_info&& from) noexcept {
  1108. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  1109. if (this != &from) InternalSwap(&from);
  1110. } else {
  1111. CopyFrom(from);
  1112. }
  1113. return *this;
  1114. }
  1115. #endif
  1116. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  1117. return _internal_metadata_.unknown_fields();
  1118. }
  1119. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  1120. return _internal_metadata_.mutable_unknown_fields();
  1121. }
  1122. static const ::google::protobuf::Descriptor* descriptor();
  1123. static const Parkspace_info& default_instance();
  1124. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  1125. static inline const Parkspace_info* internal_default_instance() {
  1126. return reinterpret_cast<const Parkspace_info*>(
  1127. &_Parkspace_info_default_instance_);
  1128. }
  1129. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  1130. 5;
  1131. void Swap(Parkspace_info* other);
  1132. friend void swap(Parkspace_info& a, Parkspace_info& b) {
  1133. a.Swap(&b);
  1134. }
  1135. // implements Message ----------------------------------------------
  1136. inline Parkspace_info* New() const PROTOBUF_FINAL { return New(NULL); }
  1137. Parkspace_info* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  1138. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  1139. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  1140. void CopyFrom(const Parkspace_info& from);
  1141. void MergeFrom(const Parkspace_info& from);
  1142. void Clear() PROTOBUF_FINAL;
  1143. bool IsInitialized() const PROTOBUF_FINAL;
  1144. size_t ByteSizeLong() const PROTOBUF_FINAL;
  1145. bool MergePartialFromCodedStream(
  1146. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  1147. void SerializeWithCachedSizes(
  1148. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  1149. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  1150. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  1151. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  1152. private:
  1153. void SharedCtor();
  1154. void SharedDtor();
  1155. void SetCachedSize(int size) const PROTOBUF_FINAL;
  1156. void InternalSwap(Parkspace_info* other);
  1157. private:
  1158. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  1159. return NULL;
  1160. }
  1161. inline void* MaybeArenaPtr() const {
  1162. return NULL;
  1163. }
  1164. public:
  1165. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  1166. // nested types ----------------------------------------------------
  1167. // accessors -------------------------------------------------------
  1168. // optional string entry_time = 12;
  1169. bool has_entry_time() const;
  1170. void clear_entry_time();
  1171. static const int kEntryTimeFieldNumber = 12;
  1172. const ::std::string& entry_time() const;
  1173. void set_entry_time(const ::std::string& value);
  1174. #if LANG_CXX11
  1175. void set_entry_time(::std::string&& value);
  1176. #endif
  1177. void set_entry_time(const char* value);
  1178. void set_entry_time(const char* value, size_t size);
  1179. ::std::string* mutable_entry_time();
  1180. ::std::string* release_entry_time();
  1181. void set_allocated_entry_time(::std::string* entry_time);
  1182. // optional string leave_time = 13;
  1183. bool has_leave_time() const;
  1184. void clear_leave_time();
  1185. static const int kLeaveTimeFieldNumber = 13;
  1186. const ::std::string& leave_time() const;
  1187. void set_leave_time(const ::std::string& value);
  1188. #if LANG_CXX11
  1189. void set_leave_time(::std::string&& value);
  1190. #endif
  1191. void set_leave_time(const char* value);
  1192. void set_leave_time(const char* value, size_t size);
  1193. ::std::string* mutable_leave_time();
  1194. ::std::string* release_leave_time();
  1195. void set_allocated_leave_time(::std::string* leave_time);
  1196. // optional .message.Car_info car_info = 11;
  1197. bool has_car_info() const;
  1198. void clear_car_info();
  1199. static const int kCarInfoFieldNumber = 11;
  1200. const ::message::Car_info& car_info() const;
  1201. ::message::Car_info* release_car_info();
  1202. ::message::Car_info* mutable_car_info();
  1203. void set_allocated_car_info(::message::Car_info* car_info);
  1204. // optional int32 parkingspace_index_id = 1;
  1205. bool has_parkingspace_index_id() const;
  1206. void clear_parkingspace_index_id();
  1207. static const int kParkingspaceIndexIdFieldNumber = 1;
  1208. ::google::protobuf::int32 parkingspace_index_id() const;
  1209. void set_parkingspace_index_id(::google::protobuf::int32 value);
  1210. // optional .message.Parkspace_type parkingspace_type = 2;
  1211. bool has_parkingspace_type() const;
  1212. void clear_parkingspace_type();
  1213. static const int kParkingspaceTypeFieldNumber = 2;
  1214. ::message::Parkspace_type parkingspace_type() const;
  1215. void set_parkingspace_type(::message::Parkspace_type value);
  1216. // optional int32 parkingspace_unit_id = 3;
  1217. bool has_parkingspace_unit_id() const;
  1218. void clear_parkingspace_unit_id();
  1219. static const int kParkingspaceUnitIdFieldNumber = 3;
  1220. ::google::protobuf::int32 parkingspace_unit_id() const;
  1221. void set_parkingspace_unit_id(::google::protobuf::int32 value);
  1222. // optional int32 parkingspace_label_id = 4;
  1223. bool has_parkingspace_label_id() const;
  1224. void clear_parkingspace_label_id();
  1225. static const int kParkingspaceLabelIdFieldNumber = 4;
  1226. ::google::protobuf::int32 parkingspace_label_id() const;
  1227. void set_parkingspace_label_id(::google::protobuf::int32 value);
  1228. // optional int32 parkingspace_room_id = 5;
  1229. bool has_parkingspace_room_id() const;
  1230. void clear_parkingspace_room_id();
  1231. static const int kParkingspaceRoomIdFieldNumber = 5;
  1232. ::google::protobuf::int32 parkingspace_room_id() const;
  1233. void set_parkingspace_room_id(::google::protobuf::int32 value);
  1234. // optional .message.Direction parkingspace_direction = 6;
  1235. bool has_parkingspace_direction() const;
  1236. void clear_parkingspace_direction();
  1237. static const int kParkingspaceDirectionFieldNumber = 6;
  1238. ::message::Direction parkingspace_direction() const;
  1239. void set_parkingspace_direction(::message::Direction value);
  1240. // optional int32 parkingspace_floor_id = 7;
  1241. bool has_parkingspace_floor_id() const;
  1242. void clear_parkingspace_floor_id();
  1243. static const int kParkingspaceFloorIdFieldNumber = 7;
  1244. ::google::protobuf::int32 parkingspace_floor_id() const;
  1245. void set_parkingspace_floor_id(::google::protobuf::int32 value);
  1246. // optional float parkingspace_width = 8;
  1247. bool has_parkingspace_width() const;
  1248. void clear_parkingspace_width();
  1249. static const int kParkingspaceWidthFieldNumber = 8;
  1250. float parkingspace_width() const;
  1251. void set_parkingspace_width(float value);
  1252. // optional float parkingspace_height = 9;
  1253. bool has_parkingspace_height() const;
  1254. void clear_parkingspace_height();
  1255. static const int kParkingspaceHeightFieldNumber = 9;
  1256. float parkingspace_height() const;
  1257. void set_parkingspace_height(float value);
  1258. // optional .message.Parkspace_status parkingspace_status = 10;
  1259. bool has_parkingspace_status() const;
  1260. void clear_parkingspace_status();
  1261. static const int kParkingspaceStatusFieldNumber = 10;
  1262. ::message::Parkspace_status parkingspace_status() const;
  1263. void set_parkingspace_status(::message::Parkspace_status value);
  1264. // optional .message.Parkspace_path parkspace_path = 14;
  1265. bool has_parkspace_path() const;
  1266. void clear_parkspace_path();
  1267. static const int kParkspacePathFieldNumber = 14;
  1268. ::message::Parkspace_path parkspace_path() const;
  1269. void set_parkspace_path(::message::Parkspace_path value);
  1270. // optional float path_estimate_time = 15;
  1271. bool has_path_estimate_time() const;
  1272. void clear_path_estimate_time();
  1273. static const int kPathEstimateTimeFieldNumber = 15;
  1274. float path_estimate_time() const;
  1275. void set_path_estimate_time(float value);
  1276. // optional .message.Parkspace_status parkspace_status_target = 16;
  1277. bool has_parkspace_status_target() const;
  1278. void clear_parkspace_status_target();
  1279. static const int kParkspaceStatusTargetFieldNumber = 16;
  1280. ::message::Parkspace_status parkspace_status_target() const;
  1281. void set_parkspace_status_target(::message::Parkspace_status value);
  1282. // optional .message.Car_type car_type = 17;
  1283. bool has_car_type() const;
  1284. void clear_car_type();
  1285. static const int kCarTypeFieldNumber = 17;
  1286. ::message::Car_type car_type() const;
  1287. void set_car_type(::message::Car_type value);
  1288. // @@protoc_insertion_point(class_scope:message.Parkspace_info)
  1289. private:
  1290. void set_has_parkingspace_index_id();
  1291. void clear_has_parkingspace_index_id();
  1292. void set_has_parkingspace_type();
  1293. void clear_has_parkingspace_type();
  1294. void set_has_parkingspace_unit_id();
  1295. void clear_has_parkingspace_unit_id();
  1296. void set_has_parkingspace_label_id();
  1297. void clear_has_parkingspace_label_id();
  1298. void set_has_parkingspace_room_id();
  1299. void clear_has_parkingspace_room_id();
  1300. void set_has_parkingspace_direction();
  1301. void clear_has_parkingspace_direction();
  1302. void set_has_parkingspace_floor_id();
  1303. void clear_has_parkingspace_floor_id();
  1304. void set_has_parkingspace_width();
  1305. void clear_has_parkingspace_width();
  1306. void set_has_parkingspace_height();
  1307. void clear_has_parkingspace_height();
  1308. void set_has_parkingspace_status();
  1309. void clear_has_parkingspace_status();
  1310. void set_has_car_info();
  1311. void clear_has_car_info();
  1312. void set_has_entry_time();
  1313. void clear_has_entry_time();
  1314. void set_has_leave_time();
  1315. void clear_has_leave_time();
  1316. void set_has_parkspace_path();
  1317. void clear_has_parkspace_path();
  1318. void set_has_path_estimate_time();
  1319. void clear_has_path_estimate_time();
  1320. void set_has_parkspace_status_target();
  1321. void clear_has_parkspace_status_target();
  1322. void set_has_car_type();
  1323. void clear_has_car_type();
  1324. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  1325. ::google::protobuf::internal::HasBits<1> _has_bits_;
  1326. mutable int _cached_size_;
  1327. ::google::protobuf::internal::ArenaStringPtr entry_time_;
  1328. ::google::protobuf::internal::ArenaStringPtr leave_time_;
  1329. ::message::Car_info* car_info_;
  1330. ::google::protobuf::int32 parkingspace_index_id_;
  1331. int parkingspace_type_;
  1332. ::google::protobuf::int32 parkingspace_unit_id_;
  1333. ::google::protobuf::int32 parkingspace_label_id_;
  1334. ::google::protobuf::int32 parkingspace_room_id_;
  1335. int parkingspace_direction_;
  1336. ::google::protobuf::int32 parkingspace_floor_id_;
  1337. float parkingspace_width_;
  1338. float parkingspace_height_;
  1339. int parkingspace_status_;
  1340. int parkspace_path_;
  1341. float path_estimate_time_;
  1342. int parkspace_status_target_;
  1343. int car_type_;
  1344. friend struct ::protobuf_message_5fbase_2eproto::TableStruct;
  1345. friend void ::protobuf_message_5fbase_2eproto::InitDefaultsParkspace_infoImpl();
  1346. };
  1347. // -------------------------------------------------------------------
  1348. class Id_struct : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:message.Id_struct) */ {
  1349. public:
  1350. Id_struct();
  1351. virtual ~Id_struct();
  1352. Id_struct(const Id_struct& from);
  1353. inline Id_struct& operator=(const Id_struct& from) {
  1354. CopyFrom(from);
  1355. return *this;
  1356. }
  1357. #if LANG_CXX11
  1358. Id_struct(Id_struct&& from) noexcept
  1359. : Id_struct() {
  1360. *this = ::std::move(from);
  1361. }
  1362. inline Id_struct& operator=(Id_struct&& from) noexcept {
  1363. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  1364. if (this != &from) InternalSwap(&from);
  1365. } else {
  1366. CopyFrom(from);
  1367. }
  1368. return *this;
  1369. }
  1370. #endif
  1371. inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
  1372. return _internal_metadata_.unknown_fields();
  1373. }
  1374. inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
  1375. return _internal_metadata_.mutable_unknown_fields();
  1376. }
  1377. static const ::google::protobuf::Descriptor* descriptor();
  1378. static const Id_struct& default_instance();
  1379. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  1380. static inline const Id_struct* internal_default_instance() {
  1381. return reinterpret_cast<const Id_struct*>(
  1382. &_Id_struct_default_instance_);
  1383. }
  1384. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  1385. 6;
  1386. void Swap(Id_struct* other);
  1387. friend void swap(Id_struct& a, Id_struct& b) {
  1388. a.Swap(&b);
  1389. }
  1390. // implements Message ----------------------------------------------
  1391. inline Id_struct* New() const PROTOBUF_FINAL { return New(NULL); }
  1392. Id_struct* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  1393. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  1394. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  1395. void CopyFrom(const Id_struct& from);
  1396. void MergeFrom(const Id_struct& from);
  1397. void Clear() PROTOBUF_FINAL;
  1398. bool IsInitialized() const PROTOBUF_FINAL;
  1399. size_t ByteSizeLong() const PROTOBUF_FINAL;
  1400. bool MergePartialFromCodedStream(
  1401. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  1402. void SerializeWithCachedSizes(
  1403. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  1404. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  1405. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  1406. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  1407. private:
  1408. void SharedCtor();
  1409. void SharedDtor();
  1410. void SetCachedSize(int size) const PROTOBUF_FINAL;
  1411. void InternalSwap(Id_struct* other);
  1412. private:
  1413. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  1414. return NULL;
  1415. }
  1416. inline void* MaybeArenaPtr() const {
  1417. return NULL;
  1418. }
  1419. public:
  1420. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  1421. // nested types ----------------------------------------------------
  1422. // accessors -------------------------------------------------------
  1423. // optional int32 terminal_id = 1;
  1424. bool has_terminal_id() const;
  1425. void clear_terminal_id();
  1426. static const int kTerminalIdFieldNumber = 1;
  1427. ::google::protobuf::int32 terminal_id() const;
  1428. void set_terminal_id(::google::protobuf::int32 value);
  1429. // optional int32 unit_id = 2;
  1430. bool has_unit_id() const;
  1431. void clear_unit_id();
  1432. static const int kUnitIdFieldNumber = 2;
  1433. ::google::protobuf::int32 unit_id() const;
  1434. void set_unit_id(::google::protobuf::int32 value);
  1435. // @@protoc_insertion_point(class_scope:message.Id_struct)
  1436. private:
  1437. void set_has_terminal_id();
  1438. void clear_has_terminal_id();
  1439. void set_has_unit_id();
  1440. void clear_has_unit_id();
  1441. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  1442. ::google::protobuf::internal::HasBits<1> _has_bits_;
  1443. mutable int _cached_size_;
  1444. ::google::protobuf::int32 terminal_id_;
  1445. ::google::protobuf::int32 unit_id_;
  1446. friend struct ::protobuf_message_5fbase_2eproto::TableStruct;
  1447. friend void ::protobuf_message_5fbase_2eproto::InitDefaultsId_structImpl();
  1448. };
  1449. // ===================================================================
  1450. // ===================================================================
  1451. #ifdef __GNUC__
  1452. #pragma GCC diagnostic push
  1453. #pragma GCC diagnostic ignored "-Wstrict-aliasing"
  1454. #endif // __GNUC__
  1455. // Base_info
  1456. // required .message.Message_type msg_type = 1 [default = eBase_msg];
  1457. inline bool Base_info::has_msg_type() const {
  1458. return (_has_bits_[0] & 0x00000001u) != 0;
  1459. }
  1460. inline void Base_info::set_has_msg_type() {
  1461. _has_bits_[0] |= 0x00000001u;
  1462. }
  1463. inline void Base_info::clear_has_msg_type() {
  1464. _has_bits_[0] &= ~0x00000001u;
  1465. }
  1466. inline void Base_info::clear_msg_type() {
  1467. msg_type_ = 0;
  1468. clear_has_msg_type();
  1469. }
  1470. inline ::message::Message_type Base_info::msg_type() const {
  1471. // @@protoc_insertion_point(field_get:message.Base_info.msg_type)
  1472. return static_cast< ::message::Message_type >(msg_type_);
  1473. }
  1474. inline void Base_info::set_msg_type(::message::Message_type value) {
  1475. assert(::message::Message_type_IsValid(value));
  1476. set_has_msg_type();
  1477. msg_type_ = value;
  1478. // @@protoc_insertion_point(field_set:message.Base_info.msg_type)
  1479. }
  1480. // optional int32 timeout_ms = 2 [default = 0];
  1481. inline bool Base_info::has_timeout_ms() const {
  1482. return (_has_bits_[0] & 0x00000002u) != 0;
  1483. }
  1484. inline void Base_info::set_has_timeout_ms() {
  1485. _has_bits_[0] |= 0x00000002u;
  1486. }
  1487. inline void Base_info::clear_has_timeout_ms() {
  1488. _has_bits_[0] &= ~0x00000002u;
  1489. }
  1490. inline void Base_info::clear_timeout_ms() {
  1491. timeout_ms_ = 0;
  1492. clear_has_timeout_ms();
  1493. }
  1494. inline ::google::protobuf::int32 Base_info::timeout_ms() const {
  1495. // @@protoc_insertion_point(field_get:message.Base_info.timeout_ms)
  1496. return timeout_ms_;
  1497. }
  1498. inline void Base_info::set_timeout_ms(::google::protobuf::int32 value) {
  1499. set_has_timeout_ms();
  1500. timeout_ms_ = value;
  1501. // @@protoc_insertion_point(field_set:message.Base_info.timeout_ms)
  1502. }
  1503. // required .message.Communicator sender = 3 [default = eEmpty];
  1504. inline bool Base_info::has_sender() const {
  1505. return (_has_bits_[0] & 0x00000004u) != 0;
  1506. }
  1507. inline void Base_info::set_has_sender() {
  1508. _has_bits_[0] |= 0x00000004u;
  1509. }
  1510. inline void Base_info::clear_has_sender() {
  1511. _has_bits_[0] &= ~0x00000004u;
  1512. }
  1513. inline void Base_info::clear_sender() {
  1514. sender_ = 0;
  1515. clear_has_sender();
  1516. }
  1517. inline ::message::Communicator Base_info::sender() const {
  1518. // @@protoc_insertion_point(field_get:message.Base_info.sender)
  1519. return static_cast< ::message::Communicator >(sender_);
  1520. }
  1521. inline void Base_info::set_sender(::message::Communicator value) {
  1522. assert(::message::Communicator_IsValid(value));
  1523. set_has_sender();
  1524. sender_ = value;
  1525. // @@protoc_insertion_point(field_set:message.Base_info.sender)
  1526. }
  1527. // required .message.Communicator receiver = 4 [default = eEmpty];
  1528. inline bool Base_info::has_receiver() const {
  1529. return (_has_bits_[0] & 0x00000008u) != 0;
  1530. }
  1531. inline void Base_info::set_has_receiver() {
  1532. _has_bits_[0] |= 0x00000008u;
  1533. }
  1534. inline void Base_info::clear_has_receiver() {
  1535. _has_bits_[0] &= ~0x00000008u;
  1536. }
  1537. inline void Base_info::clear_receiver() {
  1538. receiver_ = 0;
  1539. clear_has_receiver();
  1540. }
  1541. inline ::message::Communicator Base_info::receiver() const {
  1542. // @@protoc_insertion_point(field_get:message.Base_info.receiver)
  1543. return static_cast< ::message::Communicator >(receiver_);
  1544. }
  1545. inline void Base_info::set_receiver(::message::Communicator value) {
  1546. assert(::message::Communicator_IsValid(value));
  1547. set_has_receiver();
  1548. receiver_ = value;
  1549. // @@protoc_insertion_point(field_set:message.Base_info.receiver)
  1550. }
  1551. // -------------------------------------------------------------------
  1552. // Base_msg
  1553. // required .message.Base_info base_info = 1;
  1554. inline bool Base_msg::has_base_info() const {
  1555. return (_has_bits_[0] & 0x00000001u) != 0;
  1556. }
  1557. inline void Base_msg::set_has_base_info() {
  1558. _has_bits_[0] |= 0x00000001u;
  1559. }
  1560. inline void Base_msg::clear_has_base_info() {
  1561. _has_bits_[0] &= ~0x00000001u;
  1562. }
  1563. inline void Base_msg::clear_base_info() {
  1564. if (base_info_ != NULL) base_info_->Clear();
  1565. clear_has_base_info();
  1566. }
  1567. inline const ::message::Base_info& Base_msg::base_info() const {
  1568. const ::message::Base_info* p = base_info_;
  1569. // @@protoc_insertion_point(field_get:message.Base_msg.base_info)
  1570. return p != NULL ? *p : *reinterpret_cast<const ::message::Base_info*>(
  1571. &::message::_Base_info_default_instance_);
  1572. }
  1573. inline ::message::Base_info* Base_msg::release_base_info() {
  1574. // @@protoc_insertion_point(field_release:message.Base_msg.base_info)
  1575. clear_has_base_info();
  1576. ::message::Base_info* temp = base_info_;
  1577. base_info_ = NULL;
  1578. return temp;
  1579. }
  1580. inline ::message::Base_info* Base_msg::mutable_base_info() {
  1581. set_has_base_info();
  1582. if (base_info_ == NULL) {
  1583. base_info_ = new ::message::Base_info;
  1584. }
  1585. // @@protoc_insertion_point(field_mutable:message.Base_msg.base_info)
  1586. return base_info_;
  1587. }
  1588. inline void Base_msg::set_allocated_base_info(::message::Base_info* base_info) {
  1589. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  1590. if (message_arena == NULL) {
  1591. delete base_info_;
  1592. }
  1593. if (base_info) {
  1594. ::google::protobuf::Arena* submessage_arena = NULL;
  1595. if (message_arena != submessage_arena) {
  1596. base_info = ::google::protobuf::internal::GetOwnedMessage(
  1597. message_arena, base_info, submessage_arena);
  1598. }
  1599. set_has_base_info();
  1600. } else {
  1601. clear_has_base_info();
  1602. }
  1603. base_info_ = base_info;
  1604. // @@protoc_insertion_point(field_set_allocated:message.Base_msg.base_info)
  1605. }
  1606. // -------------------------------------------------------------------
  1607. // Error_manager
  1608. // required int32 error_code = 1 [default = 0];
  1609. inline bool Error_manager::has_error_code() const {
  1610. return (_has_bits_[0] & 0x00000002u) != 0;
  1611. }
  1612. inline void Error_manager::set_has_error_code() {
  1613. _has_bits_[0] |= 0x00000002u;
  1614. }
  1615. inline void Error_manager::clear_has_error_code() {
  1616. _has_bits_[0] &= ~0x00000002u;
  1617. }
  1618. inline void Error_manager::clear_error_code() {
  1619. error_code_ = 0;
  1620. clear_has_error_code();
  1621. }
  1622. inline ::google::protobuf::int32 Error_manager::error_code() const {
  1623. // @@protoc_insertion_point(field_get:message.Error_manager.error_code)
  1624. return error_code_;
  1625. }
  1626. inline void Error_manager::set_error_code(::google::protobuf::int32 value) {
  1627. set_has_error_code();
  1628. error_code_ = value;
  1629. // @@protoc_insertion_point(field_set:message.Error_manager.error_code)
  1630. }
  1631. // optional .message.Error_level error_level = 2 [default = NORMAL];
  1632. inline bool Error_manager::has_error_level() const {
  1633. return (_has_bits_[0] & 0x00000004u) != 0;
  1634. }
  1635. inline void Error_manager::set_has_error_level() {
  1636. _has_bits_[0] |= 0x00000004u;
  1637. }
  1638. inline void Error_manager::clear_has_error_level() {
  1639. _has_bits_[0] &= ~0x00000004u;
  1640. }
  1641. inline void Error_manager::clear_error_level() {
  1642. error_level_ = 0;
  1643. clear_has_error_level();
  1644. }
  1645. inline ::message::Error_level Error_manager::error_level() const {
  1646. // @@protoc_insertion_point(field_get:message.Error_manager.error_level)
  1647. return static_cast< ::message::Error_level >(error_level_);
  1648. }
  1649. inline void Error_manager::set_error_level(::message::Error_level value) {
  1650. assert(::message::Error_level_IsValid(value));
  1651. set_has_error_level();
  1652. error_level_ = value;
  1653. // @@protoc_insertion_point(field_set:message.Error_manager.error_level)
  1654. }
  1655. // optional string error_description = 3 [default = ""];
  1656. inline bool Error_manager::has_error_description() const {
  1657. return (_has_bits_[0] & 0x00000001u) != 0;
  1658. }
  1659. inline void Error_manager::set_has_error_description() {
  1660. _has_bits_[0] |= 0x00000001u;
  1661. }
  1662. inline void Error_manager::clear_has_error_description() {
  1663. _has_bits_[0] &= ~0x00000001u;
  1664. }
  1665. inline void Error_manager::clear_error_description() {
  1666. error_description_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1667. clear_has_error_description();
  1668. }
  1669. inline const ::std::string& Error_manager::error_description() const {
  1670. // @@protoc_insertion_point(field_get:message.Error_manager.error_description)
  1671. return error_description_.GetNoArena();
  1672. }
  1673. inline void Error_manager::set_error_description(const ::std::string& value) {
  1674. set_has_error_description();
  1675. error_description_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  1676. // @@protoc_insertion_point(field_set:message.Error_manager.error_description)
  1677. }
  1678. #if LANG_CXX11
  1679. inline void Error_manager::set_error_description(::std::string&& value) {
  1680. set_has_error_description();
  1681. error_description_.SetNoArena(
  1682. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  1683. // @@protoc_insertion_point(field_set_rvalue:message.Error_manager.error_description)
  1684. }
  1685. #endif
  1686. inline void Error_manager::set_error_description(const char* value) {
  1687. GOOGLE_DCHECK(value != NULL);
  1688. set_has_error_description();
  1689. error_description_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  1690. // @@protoc_insertion_point(field_set_char:message.Error_manager.error_description)
  1691. }
  1692. inline void Error_manager::set_error_description(const char* value, size_t size) {
  1693. set_has_error_description();
  1694. error_description_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  1695. ::std::string(reinterpret_cast<const char*>(value), size));
  1696. // @@protoc_insertion_point(field_set_pointer:message.Error_manager.error_description)
  1697. }
  1698. inline ::std::string* Error_manager::mutable_error_description() {
  1699. set_has_error_description();
  1700. // @@protoc_insertion_point(field_mutable:message.Error_manager.error_description)
  1701. return error_description_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1702. }
  1703. inline ::std::string* Error_manager::release_error_description() {
  1704. // @@protoc_insertion_point(field_release:message.Error_manager.error_description)
  1705. clear_has_error_description();
  1706. return error_description_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1707. }
  1708. inline void Error_manager::set_allocated_error_description(::std::string* error_description) {
  1709. if (error_description != NULL) {
  1710. set_has_error_description();
  1711. } else {
  1712. clear_has_error_description();
  1713. }
  1714. error_description_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), error_description);
  1715. // @@protoc_insertion_point(field_set_allocated:message.Error_manager.error_description)
  1716. }
  1717. // -------------------------------------------------------------------
  1718. // Locate_information
  1719. // optional float locate_x = 1 [default = 0];
  1720. inline bool Locate_information::has_locate_x() const {
  1721. return (_has_bits_[0] & 0x00000001u) != 0;
  1722. }
  1723. inline void Locate_information::set_has_locate_x() {
  1724. _has_bits_[0] |= 0x00000001u;
  1725. }
  1726. inline void Locate_information::clear_has_locate_x() {
  1727. _has_bits_[0] &= ~0x00000001u;
  1728. }
  1729. inline void Locate_information::clear_locate_x() {
  1730. locate_x_ = 0;
  1731. clear_has_locate_x();
  1732. }
  1733. inline float Locate_information::locate_x() const {
  1734. // @@protoc_insertion_point(field_get:message.Locate_information.locate_x)
  1735. return locate_x_;
  1736. }
  1737. inline void Locate_information::set_locate_x(float value) {
  1738. set_has_locate_x();
  1739. locate_x_ = value;
  1740. // @@protoc_insertion_point(field_set:message.Locate_information.locate_x)
  1741. }
  1742. // optional float locate_y = 2 [default = 0];
  1743. inline bool Locate_information::has_locate_y() const {
  1744. return (_has_bits_[0] & 0x00000002u) != 0;
  1745. }
  1746. inline void Locate_information::set_has_locate_y() {
  1747. _has_bits_[0] |= 0x00000002u;
  1748. }
  1749. inline void Locate_information::clear_has_locate_y() {
  1750. _has_bits_[0] &= ~0x00000002u;
  1751. }
  1752. inline void Locate_information::clear_locate_y() {
  1753. locate_y_ = 0;
  1754. clear_has_locate_y();
  1755. }
  1756. inline float Locate_information::locate_y() const {
  1757. // @@protoc_insertion_point(field_get:message.Locate_information.locate_y)
  1758. return locate_y_;
  1759. }
  1760. inline void Locate_information::set_locate_y(float value) {
  1761. set_has_locate_y();
  1762. locate_y_ = value;
  1763. // @@protoc_insertion_point(field_set:message.Locate_information.locate_y)
  1764. }
  1765. // optional float locate_angle = 3 [default = 0];
  1766. inline bool Locate_information::has_locate_angle() const {
  1767. return (_has_bits_[0] & 0x00000004u) != 0;
  1768. }
  1769. inline void Locate_information::set_has_locate_angle() {
  1770. _has_bits_[0] |= 0x00000004u;
  1771. }
  1772. inline void Locate_information::clear_has_locate_angle() {
  1773. _has_bits_[0] &= ~0x00000004u;
  1774. }
  1775. inline void Locate_information::clear_locate_angle() {
  1776. locate_angle_ = 0;
  1777. clear_has_locate_angle();
  1778. }
  1779. inline float Locate_information::locate_angle() const {
  1780. // @@protoc_insertion_point(field_get:message.Locate_information.locate_angle)
  1781. return locate_angle_;
  1782. }
  1783. inline void Locate_information::set_locate_angle(float value) {
  1784. set_has_locate_angle();
  1785. locate_angle_ = value;
  1786. // @@protoc_insertion_point(field_set:message.Locate_information.locate_angle)
  1787. }
  1788. // optional float locate_length = 4 [default = 0];
  1789. inline bool Locate_information::has_locate_length() const {
  1790. return (_has_bits_[0] & 0x00000008u) != 0;
  1791. }
  1792. inline void Locate_information::set_has_locate_length() {
  1793. _has_bits_[0] |= 0x00000008u;
  1794. }
  1795. inline void Locate_information::clear_has_locate_length() {
  1796. _has_bits_[0] &= ~0x00000008u;
  1797. }
  1798. inline void Locate_information::clear_locate_length() {
  1799. locate_length_ = 0;
  1800. clear_has_locate_length();
  1801. }
  1802. inline float Locate_information::locate_length() const {
  1803. // @@protoc_insertion_point(field_get:message.Locate_information.locate_length)
  1804. return locate_length_;
  1805. }
  1806. inline void Locate_information::set_locate_length(float value) {
  1807. set_has_locate_length();
  1808. locate_length_ = value;
  1809. // @@protoc_insertion_point(field_set:message.Locate_information.locate_length)
  1810. }
  1811. // optional float locate_width = 5 [default = 0];
  1812. inline bool Locate_information::has_locate_width() const {
  1813. return (_has_bits_[0] & 0x00000010u) != 0;
  1814. }
  1815. inline void Locate_information::set_has_locate_width() {
  1816. _has_bits_[0] |= 0x00000010u;
  1817. }
  1818. inline void Locate_information::clear_has_locate_width() {
  1819. _has_bits_[0] &= ~0x00000010u;
  1820. }
  1821. inline void Locate_information::clear_locate_width() {
  1822. locate_width_ = 0;
  1823. clear_has_locate_width();
  1824. }
  1825. inline float Locate_information::locate_width() const {
  1826. // @@protoc_insertion_point(field_get:message.Locate_information.locate_width)
  1827. return locate_width_;
  1828. }
  1829. inline void Locate_information::set_locate_width(float value) {
  1830. set_has_locate_width();
  1831. locate_width_ = value;
  1832. // @@protoc_insertion_point(field_set:message.Locate_information.locate_width)
  1833. }
  1834. // optional float locate_height = 6 [default = 0];
  1835. inline bool Locate_information::has_locate_height() const {
  1836. return (_has_bits_[0] & 0x00000020u) != 0;
  1837. }
  1838. inline void Locate_information::set_has_locate_height() {
  1839. _has_bits_[0] |= 0x00000020u;
  1840. }
  1841. inline void Locate_information::clear_has_locate_height() {
  1842. _has_bits_[0] &= ~0x00000020u;
  1843. }
  1844. inline void Locate_information::clear_locate_height() {
  1845. locate_height_ = 0;
  1846. clear_has_locate_height();
  1847. }
  1848. inline float Locate_information::locate_height() const {
  1849. // @@protoc_insertion_point(field_get:message.Locate_information.locate_height)
  1850. return locate_height_;
  1851. }
  1852. inline void Locate_information::set_locate_height(float value) {
  1853. set_has_locate_height();
  1854. locate_height_ = value;
  1855. // @@protoc_insertion_point(field_set:message.Locate_information.locate_height)
  1856. }
  1857. // optional float locate_wheel_base = 7 [default = 0];
  1858. inline bool Locate_information::has_locate_wheel_base() const {
  1859. return (_has_bits_[0] & 0x00000040u) != 0;
  1860. }
  1861. inline void Locate_information::set_has_locate_wheel_base() {
  1862. _has_bits_[0] |= 0x00000040u;
  1863. }
  1864. inline void Locate_information::clear_has_locate_wheel_base() {
  1865. _has_bits_[0] &= ~0x00000040u;
  1866. }
  1867. inline void Locate_information::clear_locate_wheel_base() {
  1868. locate_wheel_base_ = 0;
  1869. clear_has_locate_wheel_base();
  1870. }
  1871. inline float Locate_information::locate_wheel_base() const {
  1872. // @@protoc_insertion_point(field_get:message.Locate_information.locate_wheel_base)
  1873. return locate_wheel_base_;
  1874. }
  1875. inline void Locate_information::set_locate_wheel_base(float value) {
  1876. set_has_locate_wheel_base();
  1877. locate_wheel_base_ = value;
  1878. // @@protoc_insertion_point(field_set:message.Locate_information.locate_wheel_base)
  1879. }
  1880. // optional float locate_wheel_width = 8 [default = 0];
  1881. inline bool Locate_information::has_locate_wheel_width() const {
  1882. return (_has_bits_[0] & 0x00000080u) != 0;
  1883. }
  1884. inline void Locate_information::set_has_locate_wheel_width() {
  1885. _has_bits_[0] |= 0x00000080u;
  1886. }
  1887. inline void Locate_information::clear_has_locate_wheel_width() {
  1888. _has_bits_[0] &= ~0x00000080u;
  1889. }
  1890. inline void Locate_information::clear_locate_wheel_width() {
  1891. locate_wheel_width_ = 0;
  1892. clear_has_locate_wheel_width();
  1893. }
  1894. inline float Locate_information::locate_wheel_width() const {
  1895. // @@protoc_insertion_point(field_get:message.Locate_information.locate_wheel_width)
  1896. return locate_wheel_width_;
  1897. }
  1898. inline void Locate_information::set_locate_wheel_width(float value) {
  1899. set_has_locate_wheel_width();
  1900. locate_wheel_width_ = value;
  1901. // @@protoc_insertion_point(field_set:message.Locate_information.locate_wheel_width)
  1902. }
  1903. // optional bool locate_correct = 9 [default = false];
  1904. inline bool Locate_information::has_locate_correct() const {
  1905. return (_has_bits_[0] & 0x00000100u) != 0;
  1906. }
  1907. inline void Locate_information::set_has_locate_correct() {
  1908. _has_bits_[0] |= 0x00000100u;
  1909. }
  1910. inline void Locate_information::clear_has_locate_correct() {
  1911. _has_bits_[0] &= ~0x00000100u;
  1912. }
  1913. inline void Locate_information::clear_locate_correct() {
  1914. locate_correct_ = false;
  1915. clear_has_locate_correct();
  1916. }
  1917. inline bool Locate_information::locate_correct() const {
  1918. // @@protoc_insertion_point(field_get:message.Locate_information.locate_correct)
  1919. return locate_correct_;
  1920. }
  1921. inline void Locate_information::set_locate_correct(bool value) {
  1922. set_has_locate_correct();
  1923. locate_correct_ = value;
  1924. // @@protoc_insertion_point(field_set:message.Locate_information.locate_correct)
  1925. }
  1926. // optional float locate_front_theta = 10 [default = 0];
  1927. inline bool Locate_information::has_locate_front_theta() const {
  1928. return (_has_bits_[0] & 0x00000200u) != 0;
  1929. }
  1930. inline void Locate_information::set_has_locate_front_theta() {
  1931. _has_bits_[0] |= 0x00000200u;
  1932. }
  1933. inline void Locate_information::clear_has_locate_front_theta() {
  1934. _has_bits_[0] &= ~0x00000200u;
  1935. }
  1936. inline void Locate_information::clear_locate_front_theta() {
  1937. locate_front_theta_ = 0;
  1938. clear_has_locate_front_theta();
  1939. }
  1940. inline float Locate_information::locate_front_theta() const {
  1941. // @@protoc_insertion_point(field_get:message.Locate_information.locate_front_theta)
  1942. return locate_front_theta_;
  1943. }
  1944. inline void Locate_information::set_locate_front_theta(float value) {
  1945. set_has_locate_front_theta();
  1946. locate_front_theta_ = value;
  1947. // @@protoc_insertion_point(field_set:message.Locate_information.locate_front_theta)
  1948. }
  1949. // optional float uniformed_car_x = 11;
  1950. inline bool Locate_information::has_uniformed_car_x() const {
  1951. return (_has_bits_[0] & 0x00000400u) != 0;
  1952. }
  1953. inline void Locate_information::set_has_uniformed_car_x() {
  1954. _has_bits_[0] |= 0x00000400u;
  1955. }
  1956. inline void Locate_information::clear_has_uniformed_car_x() {
  1957. _has_bits_[0] &= ~0x00000400u;
  1958. }
  1959. inline void Locate_information::clear_uniformed_car_x() {
  1960. uniformed_car_x_ = 0;
  1961. clear_has_uniformed_car_x();
  1962. }
  1963. inline float Locate_information::uniformed_car_x() const {
  1964. // @@protoc_insertion_point(field_get:message.Locate_information.uniformed_car_x)
  1965. return uniformed_car_x_;
  1966. }
  1967. inline void Locate_information::set_uniformed_car_x(float value) {
  1968. set_has_uniformed_car_x();
  1969. uniformed_car_x_ = value;
  1970. // @@protoc_insertion_point(field_set:message.Locate_information.uniformed_car_x)
  1971. }
  1972. // optional float uniformed_car_y = 12;
  1973. inline bool Locate_information::has_uniformed_car_y() const {
  1974. return (_has_bits_[0] & 0x00000800u) != 0;
  1975. }
  1976. inline void Locate_information::set_has_uniformed_car_y() {
  1977. _has_bits_[0] |= 0x00000800u;
  1978. }
  1979. inline void Locate_information::clear_has_uniformed_car_y() {
  1980. _has_bits_[0] &= ~0x00000800u;
  1981. }
  1982. inline void Locate_information::clear_uniformed_car_y() {
  1983. uniformed_car_y_ = 0;
  1984. clear_has_uniformed_car_y();
  1985. }
  1986. inline float Locate_information::uniformed_car_y() const {
  1987. // @@protoc_insertion_point(field_get:message.Locate_information.uniformed_car_y)
  1988. return uniformed_car_y_;
  1989. }
  1990. inline void Locate_information::set_uniformed_car_y(float value) {
  1991. set_has_uniformed_car_y();
  1992. uniformed_car_y_ = value;
  1993. // @@protoc_insertion_point(field_set:message.Locate_information.uniformed_car_y)
  1994. }
  1995. // -------------------------------------------------------------------
  1996. // Car_info
  1997. // optional float car_length = 1 [default = 0];
  1998. inline bool Car_info::has_car_length() const {
  1999. return (_has_bits_[0] & 0x00000004u) != 0;
  2000. }
  2001. inline void Car_info::set_has_car_length() {
  2002. _has_bits_[0] |= 0x00000004u;
  2003. }
  2004. inline void Car_info::clear_has_car_length() {
  2005. _has_bits_[0] &= ~0x00000004u;
  2006. }
  2007. inline void Car_info::clear_car_length() {
  2008. car_length_ = 0;
  2009. clear_has_car_length();
  2010. }
  2011. inline float Car_info::car_length() const {
  2012. // @@protoc_insertion_point(field_get:message.Car_info.car_length)
  2013. return car_length_;
  2014. }
  2015. inline void Car_info::set_car_length(float value) {
  2016. set_has_car_length();
  2017. car_length_ = value;
  2018. // @@protoc_insertion_point(field_set:message.Car_info.car_length)
  2019. }
  2020. // optional float car_width = 2 [default = 0];
  2021. inline bool Car_info::has_car_width() const {
  2022. return (_has_bits_[0] & 0x00000008u) != 0;
  2023. }
  2024. inline void Car_info::set_has_car_width() {
  2025. _has_bits_[0] |= 0x00000008u;
  2026. }
  2027. inline void Car_info::clear_has_car_width() {
  2028. _has_bits_[0] &= ~0x00000008u;
  2029. }
  2030. inline void Car_info::clear_car_width() {
  2031. car_width_ = 0;
  2032. clear_has_car_width();
  2033. }
  2034. inline float Car_info::car_width() const {
  2035. // @@protoc_insertion_point(field_get:message.Car_info.car_width)
  2036. return car_width_;
  2037. }
  2038. inline void Car_info::set_car_width(float value) {
  2039. set_has_car_width();
  2040. car_width_ = value;
  2041. // @@protoc_insertion_point(field_set:message.Car_info.car_width)
  2042. }
  2043. // optional float car_height = 3 [default = 0];
  2044. inline bool Car_info::has_car_height() const {
  2045. return (_has_bits_[0] & 0x00000010u) != 0;
  2046. }
  2047. inline void Car_info::set_has_car_height() {
  2048. _has_bits_[0] |= 0x00000010u;
  2049. }
  2050. inline void Car_info::clear_has_car_height() {
  2051. _has_bits_[0] &= ~0x00000010u;
  2052. }
  2053. inline void Car_info::clear_car_height() {
  2054. car_height_ = 0;
  2055. clear_has_car_height();
  2056. }
  2057. inline float Car_info::car_height() const {
  2058. // @@protoc_insertion_point(field_get:message.Car_info.car_height)
  2059. return car_height_;
  2060. }
  2061. inline void Car_info::set_car_height(float value) {
  2062. set_has_car_height();
  2063. car_height_ = value;
  2064. // @@protoc_insertion_point(field_set:message.Car_info.car_height)
  2065. }
  2066. // optional string license = 4 [default = ""];
  2067. inline bool Car_info::has_license() const {
  2068. return (_has_bits_[0] & 0x00000001u) != 0;
  2069. }
  2070. inline void Car_info::set_has_license() {
  2071. _has_bits_[0] |= 0x00000001u;
  2072. }
  2073. inline void Car_info::clear_has_license() {
  2074. _has_bits_[0] &= ~0x00000001u;
  2075. }
  2076. inline void Car_info::clear_license() {
  2077. license_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2078. clear_has_license();
  2079. }
  2080. inline const ::std::string& Car_info::license() const {
  2081. // @@protoc_insertion_point(field_get:message.Car_info.license)
  2082. return license_.GetNoArena();
  2083. }
  2084. inline void Car_info::set_license(const ::std::string& value) {
  2085. set_has_license();
  2086. license_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  2087. // @@protoc_insertion_point(field_set:message.Car_info.license)
  2088. }
  2089. #if LANG_CXX11
  2090. inline void Car_info::set_license(::std::string&& value) {
  2091. set_has_license();
  2092. license_.SetNoArena(
  2093. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  2094. // @@protoc_insertion_point(field_set_rvalue:message.Car_info.license)
  2095. }
  2096. #endif
  2097. inline void Car_info::set_license(const char* value) {
  2098. GOOGLE_DCHECK(value != NULL);
  2099. set_has_license();
  2100. license_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  2101. // @@protoc_insertion_point(field_set_char:message.Car_info.license)
  2102. }
  2103. inline void Car_info::set_license(const char* value, size_t size) {
  2104. set_has_license();
  2105. license_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  2106. ::std::string(reinterpret_cast<const char*>(value), size));
  2107. // @@protoc_insertion_point(field_set_pointer:message.Car_info.license)
  2108. }
  2109. inline ::std::string* Car_info::mutable_license() {
  2110. set_has_license();
  2111. // @@protoc_insertion_point(field_mutable:message.Car_info.license)
  2112. return license_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2113. }
  2114. inline ::std::string* Car_info::release_license() {
  2115. // @@protoc_insertion_point(field_release:message.Car_info.license)
  2116. clear_has_license();
  2117. return license_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2118. }
  2119. inline void Car_info::set_allocated_license(::std::string* license) {
  2120. if (license != NULL) {
  2121. set_has_license();
  2122. } else {
  2123. clear_has_license();
  2124. }
  2125. license_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), license);
  2126. // @@protoc_insertion_point(field_set_allocated:message.Car_info.license)
  2127. }
  2128. // optional string car_numberPlate = 5 [default = ""];
  2129. inline bool Car_info::has_car_numberplate() const {
  2130. return (_has_bits_[0] & 0x00000002u) != 0;
  2131. }
  2132. inline void Car_info::set_has_car_numberplate() {
  2133. _has_bits_[0] |= 0x00000002u;
  2134. }
  2135. inline void Car_info::clear_has_car_numberplate() {
  2136. _has_bits_[0] &= ~0x00000002u;
  2137. }
  2138. inline void Car_info::clear_car_numberplate() {
  2139. car_numberplate_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2140. clear_has_car_numberplate();
  2141. }
  2142. inline const ::std::string& Car_info::car_numberplate() const {
  2143. // @@protoc_insertion_point(field_get:message.Car_info.car_numberPlate)
  2144. return car_numberplate_.GetNoArena();
  2145. }
  2146. inline void Car_info::set_car_numberplate(const ::std::string& value) {
  2147. set_has_car_numberplate();
  2148. car_numberplate_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  2149. // @@protoc_insertion_point(field_set:message.Car_info.car_numberPlate)
  2150. }
  2151. #if LANG_CXX11
  2152. inline void Car_info::set_car_numberplate(::std::string&& value) {
  2153. set_has_car_numberplate();
  2154. car_numberplate_.SetNoArena(
  2155. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  2156. // @@protoc_insertion_point(field_set_rvalue:message.Car_info.car_numberPlate)
  2157. }
  2158. #endif
  2159. inline void Car_info::set_car_numberplate(const char* value) {
  2160. GOOGLE_DCHECK(value != NULL);
  2161. set_has_car_numberplate();
  2162. car_numberplate_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  2163. // @@protoc_insertion_point(field_set_char:message.Car_info.car_numberPlate)
  2164. }
  2165. inline void Car_info::set_car_numberplate(const char* value, size_t size) {
  2166. set_has_car_numberplate();
  2167. car_numberplate_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  2168. ::std::string(reinterpret_cast<const char*>(value), size));
  2169. // @@protoc_insertion_point(field_set_pointer:message.Car_info.car_numberPlate)
  2170. }
  2171. inline ::std::string* Car_info::mutable_car_numberplate() {
  2172. set_has_car_numberplate();
  2173. // @@protoc_insertion_point(field_mutable:message.Car_info.car_numberPlate)
  2174. return car_numberplate_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2175. }
  2176. inline ::std::string* Car_info::release_car_numberplate() {
  2177. // @@protoc_insertion_point(field_release:message.Car_info.car_numberPlate)
  2178. clear_has_car_numberplate();
  2179. return car_numberplate_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2180. }
  2181. inline void Car_info::set_allocated_car_numberplate(::std::string* car_numberplate) {
  2182. if (car_numberplate != NULL) {
  2183. set_has_car_numberplate();
  2184. } else {
  2185. clear_has_car_numberplate();
  2186. }
  2187. car_numberplate_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), car_numberplate);
  2188. // @@protoc_insertion_point(field_set_allocated:message.Car_info.car_numberPlate)
  2189. }
  2190. // optional float car_wheel_base = 6 [default = 0];
  2191. inline bool Car_info::has_car_wheel_base() const {
  2192. return (_has_bits_[0] & 0x00000020u) != 0;
  2193. }
  2194. inline void Car_info::set_has_car_wheel_base() {
  2195. _has_bits_[0] |= 0x00000020u;
  2196. }
  2197. inline void Car_info::clear_has_car_wheel_base() {
  2198. _has_bits_[0] &= ~0x00000020u;
  2199. }
  2200. inline void Car_info::clear_car_wheel_base() {
  2201. car_wheel_base_ = 0;
  2202. clear_has_car_wheel_base();
  2203. }
  2204. inline float Car_info::car_wheel_base() const {
  2205. // @@protoc_insertion_point(field_get:message.Car_info.car_wheel_base)
  2206. return car_wheel_base_;
  2207. }
  2208. inline void Car_info::set_car_wheel_base(float value) {
  2209. set_has_car_wheel_base();
  2210. car_wheel_base_ = value;
  2211. // @@protoc_insertion_point(field_set:message.Car_info.car_wheel_base)
  2212. }
  2213. // optional float car_wheel_width = 7 [default = 0];
  2214. inline bool Car_info::has_car_wheel_width() const {
  2215. return (_has_bits_[0] & 0x00000040u) != 0;
  2216. }
  2217. inline void Car_info::set_has_car_wheel_width() {
  2218. _has_bits_[0] |= 0x00000040u;
  2219. }
  2220. inline void Car_info::clear_has_car_wheel_width() {
  2221. _has_bits_[0] &= ~0x00000040u;
  2222. }
  2223. inline void Car_info::clear_car_wheel_width() {
  2224. car_wheel_width_ = 0;
  2225. clear_has_car_wheel_width();
  2226. }
  2227. inline float Car_info::car_wheel_width() const {
  2228. // @@protoc_insertion_point(field_get:message.Car_info.car_wheel_width)
  2229. return car_wheel_width_;
  2230. }
  2231. inline void Car_info::set_car_wheel_width(float value) {
  2232. set_has_car_wheel_width();
  2233. car_wheel_width_ = value;
  2234. // @@protoc_insertion_point(field_set:message.Car_info.car_wheel_width)
  2235. }
  2236. // -------------------------------------------------------------------
  2237. // Parkspace_info
  2238. // optional int32 parkingspace_index_id = 1;
  2239. inline bool Parkspace_info::has_parkingspace_index_id() const {
  2240. return (_has_bits_[0] & 0x00000008u) != 0;
  2241. }
  2242. inline void Parkspace_info::set_has_parkingspace_index_id() {
  2243. _has_bits_[0] |= 0x00000008u;
  2244. }
  2245. inline void Parkspace_info::clear_has_parkingspace_index_id() {
  2246. _has_bits_[0] &= ~0x00000008u;
  2247. }
  2248. inline void Parkspace_info::clear_parkingspace_index_id() {
  2249. parkingspace_index_id_ = 0;
  2250. clear_has_parkingspace_index_id();
  2251. }
  2252. inline ::google::protobuf::int32 Parkspace_info::parkingspace_index_id() const {
  2253. // @@protoc_insertion_point(field_get:message.Parkspace_info.parkingspace_index_id)
  2254. return parkingspace_index_id_;
  2255. }
  2256. inline void Parkspace_info::set_parkingspace_index_id(::google::protobuf::int32 value) {
  2257. set_has_parkingspace_index_id();
  2258. parkingspace_index_id_ = value;
  2259. // @@protoc_insertion_point(field_set:message.Parkspace_info.parkingspace_index_id)
  2260. }
  2261. // optional .message.Parkspace_type parkingspace_type = 2;
  2262. inline bool Parkspace_info::has_parkingspace_type() const {
  2263. return (_has_bits_[0] & 0x00000010u) != 0;
  2264. }
  2265. inline void Parkspace_info::set_has_parkingspace_type() {
  2266. _has_bits_[0] |= 0x00000010u;
  2267. }
  2268. inline void Parkspace_info::clear_has_parkingspace_type() {
  2269. _has_bits_[0] &= ~0x00000010u;
  2270. }
  2271. inline void Parkspace_info::clear_parkingspace_type() {
  2272. parkingspace_type_ = 0;
  2273. clear_has_parkingspace_type();
  2274. }
  2275. inline ::message::Parkspace_type Parkspace_info::parkingspace_type() const {
  2276. // @@protoc_insertion_point(field_get:message.Parkspace_info.parkingspace_type)
  2277. return static_cast< ::message::Parkspace_type >(parkingspace_type_);
  2278. }
  2279. inline void Parkspace_info::set_parkingspace_type(::message::Parkspace_type value) {
  2280. assert(::message::Parkspace_type_IsValid(value));
  2281. set_has_parkingspace_type();
  2282. parkingspace_type_ = value;
  2283. // @@protoc_insertion_point(field_set:message.Parkspace_info.parkingspace_type)
  2284. }
  2285. // optional int32 parkingspace_unit_id = 3;
  2286. inline bool Parkspace_info::has_parkingspace_unit_id() const {
  2287. return (_has_bits_[0] & 0x00000020u) != 0;
  2288. }
  2289. inline void Parkspace_info::set_has_parkingspace_unit_id() {
  2290. _has_bits_[0] |= 0x00000020u;
  2291. }
  2292. inline void Parkspace_info::clear_has_parkingspace_unit_id() {
  2293. _has_bits_[0] &= ~0x00000020u;
  2294. }
  2295. inline void Parkspace_info::clear_parkingspace_unit_id() {
  2296. parkingspace_unit_id_ = 0;
  2297. clear_has_parkingspace_unit_id();
  2298. }
  2299. inline ::google::protobuf::int32 Parkspace_info::parkingspace_unit_id() const {
  2300. // @@protoc_insertion_point(field_get:message.Parkspace_info.parkingspace_unit_id)
  2301. return parkingspace_unit_id_;
  2302. }
  2303. inline void Parkspace_info::set_parkingspace_unit_id(::google::protobuf::int32 value) {
  2304. set_has_parkingspace_unit_id();
  2305. parkingspace_unit_id_ = value;
  2306. // @@protoc_insertion_point(field_set:message.Parkspace_info.parkingspace_unit_id)
  2307. }
  2308. // optional int32 parkingspace_label_id = 4;
  2309. inline bool Parkspace_info::has_parkingspace_label_id() const {
  2310. return (_has_bits_[0] & 0x00000040u) != 0;
  2311. }
  2312. inline void Parkspace_info::set_has_parkingspace_label_id() {
  2313. _has_bits_[0] |= 0x00000040u;
  2314. }
  2315. inline void Parkspace_info::clear_has_parkingspace_label_id() {
  2316. _has_bits_[0] &= ~0x00000040u;
  2317. }
  2318. inline void Parkspace_info::clear_parkingspace_label_id() {
  2319. parkingspace_label_id_ = 0;
  2320. clear_has_parkingspace_label_id();
  2321. }
  2322. inline ::google::protobuf::int32 Parkspace_info::parkingspace_label_id() const {
  2323. // @@protoc_insertion_point(field_get:message.Parkspace_info.parkingspace_label_id)
  2324. return parkingspace_label_id_;
  2325. }
  2326. inline void Parkspace_info::set_parkingspace_label_id(::google::protobuf::int32 value) {
  2327. set_has_parkingspace_label_id();
  2328. parkingspace_label_id_ = value;
  2329. // @@protoc_insertion_point(field_set:message.Parkspace_info.parkingspace_label_id)
  2330. }
  2331. // optional int32 parkingspace_room_id = 5;
  2332. inline bool Parkspace_info::has_parkingspace_room_id() const {
  2333. return (_has_bits_[0] & 0x00000080u) != 0;
  2334. }
  2335. inline void Parkspace_info::set_has_parkingspace_room_id() {
  2336. _has_bits_[0] |= 0x00000080u;
  2337. }
  2338. inline void Parkspace_info::clear_has_parkingspace_room_id() {
  2339. _has_bits_[0] &= ~0x00000080u;
  2340. }
  2341. inline void Parkspace_info::clear_parkingspace_room_id() {
  2342. parkingspace_room_id_ = 0;
  2343. clear_has_parkingspace_room_id();
  2344. }
  2345. inline ::google::protobuf::int32 Parkspace_info::parkingspace_room_id() const {
  2346. // @@protoc_insertion_point(field_get:message.Parkspace_info.parkingspace_room_id)
  2347. return parkingspace_room_id_;
  2348. }
  2349. inline void Parkspace_info::set_parkingspace_room_id(::google::protobuf::int32 value) {
  2350. set_has_parkingspace_room_id();
  2351. parkingspace_room_id_ = value;
  2352. // @@protoc_insertion_point(field_set:message.Parkspace_info.parkingspace_room_id)
  2353. }
  2354. // optional .message.Direction parkingspace_direction = 6;
  2355. inline bool Parkspace_info::has_parkingspace_direction() const {
  2356. return (_has_bits_[0] & 0x00000100u) != 0;
  2357. }
  2358. inline void Parkspace_info::set_has_parkingspace_direction() {
  2359. _has_bits_[0] |= 0x00000100u;
  2360. }
  2361. inline void Parkspace_info::clear_has_parkingspace_direction() {
  2362. _has_bits_[0] &= ~0x00000100u;
  2363. }
  2364. inline void Parkspace_info::clear_parkingspace_direction() {
  2365. parkingspace_direction_ = 0;
  2366. clear_has_parkingspace_direction();
  2367. }
  2368. inline ::message::Direction Parkspace_info::parkingspace_direction() const {
  2369. // @@protoc_insertion_point(field_get:message.Parkspace_info.parkingspace_direction)
  2370. return static_cast< ::message::Direction >(parkingspace_direction_);
  2371. }
  2372. inline void Parkspace_info::set_parkingspace_direction(::message::Direction value) {
  2373. assert(::message::Direction_IsValid(value));
  2374. set_has_parkingspace_direction();
  2375. parkingspace_direction_ = value;
  2376. // @@protoc_insertion_point(field_set:message.Parkspace_info.parkingspace_direction)
  2377. }
  2378. // optional int32 parkingspace_floor_id = 7;
  2379. inline bool Parkspace_info::has_parkingspace_floor_id() const {
  2380. return (_has_bits_[0] & 0x00000200u) != 0;
  2381. }
  2382. inline void Parkspace_info::set_has_parkingspace_floor_id() {
  2383. _has_bits_[0] |= 0x00000200u;
  2384. }
  2385. inline void Parkspace_info::clear_has_parkingspace_floor_id() {
  2386. _has_bits_[0] &= ~0x00000200u;
  2387. }
  2388. inline void Parkspace_info::clear_parkingspace_floor_id() {
  2389. parkingspace_floor_id_ = 0;
  2390. clear_has_parkingspace_floor_id();
  2391. }
  2392. inline ::google::protobuf::int32 Parkspace_info::parkingspace_floor_id() const {
  2393. // @@protoc_insertion_point(field_get:message.Parkspace_info.parkingspace_floor_id)
  2394. return parkingspace_floor_id_;
  2395. }
  2396. inline void Parkspace_info::set_parkingspace_floor_id(::google::protobuf::int32 value) {
  2397. set_has_parkingspace_floor_id();
  2398. parkingspace_floor_id_ = value;
  2399. // @@protoc_insertion_point(field_set:message.Parkspace_info.parkingspace_floor_id)
  2400. }
  2401. // optional float parkingspace_width = 8;
  2402. inline bool Parkspace_info::has_parkingspace_width() const {
  2403. return (_has_bits_[0] & 0x00000400u) != 0;
  2404. }
  2405. inline void Parkspace_info::set_has_parkingspace_width() {
  2406. _has_bits_[0] |= 0x00000400u;
  2407. }
  2408. inline void Parkspace_info::clear_has_parkingspace_width() {
  2409. _has_bits_[0] &= ~0x00000400u;
  2410. }
  2411. inline void Parkspace_info::clear_parkingspace_width() {
  2412. parkingspace_width_ = 0;
  2413. clear_has_parkingspace_width();
  2414. }
  2415. inline float Parkspace_info::parkingspace_width() const {
  2416. // @@protoc_insertion_point(field_get:message.Parkspace_info.parkingspace_width)
  2417. return parkingspace_width_;
  2418. }
  2419. inline void Parkspace_info::set_parkingspace_width(float value) {
  2420. set_has_parkingspace_width();
  2421. parkingspace_width_ = value;
  2422. // @@protoc_insertion_point(field_set:message.Parkspace_info.parkingspace_width)
  2423. }
  2424. // optional float parkingspace_height = 9;
  2425. inline bool Parkspace_info::has_parkingspace_height() const {
  2426. return (_has_bits_[0] & 0x00000800u) != 0;
  2427. }
  2428. inline void Parkspace_info::set_has_parkingspace_height() {
  2429. _has_bits_[0] |= 0x00000800u;
  2430. }
  2431. inline void Parkspace_info::clear_has_parkingspace_height() {
  2432. _has_bits_[0] &= ~0x00000800u;
  2433. }
  2434. inline void Parkspace_info::clear_parkingspace_height() {
  2435. parkingspace_height_ = 0;
  2436. clear_has_parkingspace_height();
  2437. }
  2438. inline float Parkspace_info::parkingspace_height() const {
  2439. // @@protoc_insertion_point(field_get:message.Parkspace_info.parkingspace_height)
  2440. return parkingspace_height_;
  2441. }
  2442. inline void Parkspace_info::set_parkingspace_height(float value) {
  2443. set_has_parkingspace_height();
  2444. parkingspace_height_ = value;
  2445. // @@protoc_insertion_point(field_set:message.Parkspace_info.parkingspace_height)
  2446. }
  2447. // optional .message.Parkspace_status parkingspace_status = 10;
  2448. inline bool Parkspace_info::has_parkingspace_status() const {
  2449. return (_has_bits_[0] & 0x00001000u) != 0;
  2450. }
  2451. inline void Parkspace_info::set_has_parkingspace_status() {
  2452. _has_bits_[0] |= 0x00001000u;
  2453. }
  2454. inline void Parkspace_info::clear_has_parkingspace_status() {
  2455. _has_bits_[0] &= ~0x00001000u;
  2456. }
  2457. inline void Parkspace_info::clear_parkingspace_status() {
  2458. parkingspace_status_ = 0;
  2459. clear_has_parkingspace_status();
  2460. }
  2461. inline ::message::Parkspace_status Parkspace_info::parkingspace_status() const {
  2462. // @@protoc_insertion_point(field_get:message.Parkspace_info.parkingspace_status)
  2463. return static_cast< ::message::Parkspace_status >(parkingspace_status_);
  2464. }
  2465. inline void Parkspace_info::set_parkingspace_status(::message::Parkspace_status value) {
  2466. assert(::message::Parkspace_status_IsValid(value));
  2467. set_has_parkingspace_status();
  2468. parkingspace_status_ = value;
  2469. // @@protoc_insertion_point(field_set:message.Parkspace_info.parkingspace_status)
  2470. }
  2471. // optional .message.Car_info car_info = 11;
  2472. inline bool Parkspace_info::has_car_info() const {
  2473. return (_has_bits_[0] & 0x00000004u) != 0;
  2474. }
  2475. inline void Parkspace_info::set_has_car_info() {
  2476. _has_bits_[0] |= 0x00000004u;
  2477. }
  2478. inline void Parkspace_info::clear_has_car_info() {
  2479. _has_bits_[0] &= ~0x00000004u;
  2480. }
  2481. inline void Parkspace_info::clear_car_info() {
  2482. if (car_info_ != NULL) car_info_->Clear();
  2483. clear_has_car_info();
  2484. }
  2485. inline const ::message::Car_info& Parkspace_info::car_info() const {
  2486. const ::message::Car_info* p = car_info_;
  2487. // @@protoc_insertion_point(field_get:message.Parkspace_info.car_info)
  2488. return p != NULL ? *p : *reinterpret_cast<const ::message::Car_info*>(
  2489. &::message::_Car_info_default_instance_);
  2490. }
  2491. inline ::message::Car_info* Parkspace_info::release_car_info() {
  2492. // @@protoc_insertion_point(field_release:message.Parkspace_info.car_info)
  2493. clear_has_car_info();
  2494. ::message::Car_info* temp = car_info_;
  2495. car_info_ = NULL;
  2496. return temp;
  2497. }
  2498. inline ::message::Car_info* Parkspace_info::mutable_car_info() {
  2499. set_has_car_info();
  2500. if (car_info_ == NULL) {
  2501. car_info_ = new ::message::Car_info;
  2502. }
  2503. // @@protoc_insertion_point(field_mutable:message.Parkspace_info.car_info)
  2504. return car_info_;
  2505. }
  2506. inline void Parkspace_info::set_allocated_car_info(::message::Car_info* car_info) {
  2507. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  2508. if (message_arena == NULL) {
  2509. delete car_info_;
  2510. }
  2511. if (car_info) {
  2512. ::google::protobuf::Arena* submessage_arena = NULL;
  2513. if (message_arena != submessage_arena) {
  2514. car_info = ::google::protobuf::internal::GetOwnedMessage(
  2515. message_arena, car_info, submessage_arena);
  2516. }
  2517. set_has_car_info();
  2518. } else {
  2519. clear_has_car_info();
  2520. }
  2521. car_info_ = car_info;
  2522. // @@protoc_insertion_point(field_set_allocated:message.Parkspace_info.car_info)
  2523. }
  2524. // optional string entry_time = 12;
  2525. inline bool Parkspace_info::has_entry_time() const {
  2526. return (_has_bits_[0] & 0x00000001u) != 0;
  2527. }
  2528. inline void Parkspace_info::set_has_entry_time() {
  2529. _has_bits_[0] |= 0x00000001u;
  2530. }
  2531. inline void Parkspace_info::clear_has_entry_time() {
  2532. _has_bits_[0] &= ~0x00000001u;
  2533. }
  2534. inline void Parkspace_info::clear_entry_time() {
  2535. entry_time_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2536. clear_has_entry_time();
  2537. }
  2538. inline const ::std::string& Parkspace_info::entry_time() const {
  2539. // @@protoc_insertion_point(field_get:message.Parkspace_info.entry_time)
  2540. return entry_time_.GetNoArena();
  2541. }
  2542. inline void Parkspace_info::set_entry_time(const ::std::string& value) {
  2543. set_has_entry_time();
  2544. entry_time_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  2545. // @@protoc_insertion_point(field_set:message.Parkspace_info.entry_time)
  2546. }
  2547. #if LANG_CXX11
  2548. inline void Parkspace_info::set_entry_time(::std::string&& value) {
  2549. set_has_entry_time();
  2550. entry_time_.SetNoArena(
  2551. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  2552. // @@protoc_insertion_point(field_set_rvalue:message.Parkspace_info.entry_time)
  2553. }
  2554. #endif
  2555. inline void Parkspace_info::set_entry_time(const char* value) {
  2556. GOOGLE_DCHECK(value != NULL);
  2557. set_has_entry_time();
  2558. entry_time_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  2559. // @@protoc_insertion_point(field_set_char:message.Parkspace_info.entry_time)
  2560. }
  2561. inline void Parkspace_info::set_entry_time(const char* value, size_t size) {
  2562. set_has_entry_time();
  2563. entry_time_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  2564. ::std::string(reinterpret_cast<const char*>(value), size));
  2565. // @@protoc_insertion_point(field_set_pointer:message.Parkspace_info.entry_time)
  2566. }
  2567. inline ::std::string* Parkspace_info::mutable_entry_time() {
  2568. set_has_entry_time();
  2569. // @@protoc_insertion_point(field_mutable:message.Parkspace_info.entry_time)
  2570. return entry_time_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2571. }
  2572. inline ::std::string* Parkspace_info::release_entry_time() {
  2573. // @@protoc_insertion_point(field_release:message.Parkspace_info.entry_time)
  2574. clear_has_entry_time();
  2575. return entry_time_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2576. }
  2577. inline void Parkspace_info::set_allocated_entry_time(::std::string* entry_time) {
  2578. if (entry_time != NULL) {
  2579. set_has_entry_time();
  2580. } else {
  2581. clear_has_entry_time();
  2582. }
  2583. entry_time_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), entry_time);
  2584. // @@protoc_insertion_point(field_set_allocated:message.Parkspace_info.entry_time)
  2585. }
  2586. // optional string leave_time = 13;
  2587. inline bool Parkspace_info::has_leave_time() const {
  2588. return (_has_bits_[0] & 0x00000002u) != 0;
  2589. }
  2590. inline void Parkspace_info::set_has_leave_time() {
  2591. _has_bits_[0] |= 0x00000002u;
  2592. }
  2593. inline void Parkspace_info::clear_has_leave_time() {
  2594. _has_bits_[0] &= ~0x00000002u;
  2595. }
  2596. inline void Parkspace_info::clear_leave_time() {
  2597. leave_time_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2598. clear_has_leave_time();
  2599. }
  2600. inline const ::std::string& Parkspace_info::leave_time() const {
  2601. // @@protoc_insertion_point(field_get:message.Parkspace_info.leave_time)
  2602. return leave_time_.GetNoArena();
  2603. }
  2604. inline void Parkspace_info::set_leave_time(const ::std::string& value) {
  2605. set_has_leave_time();
  2606. leave_time_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  2607. // @@protoc_insertion_point(field_set:message.Parkspace_info.leave_time)
  2608. }
  2609. #if LANG_CXX11
  2610. inline void Parkspace_info::set_leave_time(::std::string&& value) {
  2611. set_has_leave_time();
  2612. leave_time_.SetNoArena(
  2613. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  2614. // @@protoc_insertion_point(field_set_rvalue:message.Parkspace_info.leave_time)
  2615. }
  2616. #endif
  2617. inline void Parkspace_info::set_leave_time(const char* value) {
  2618. GOOGLE_DCHECK(value != NULL);
  2619. set_has_leave_time();
  2620. leave_time_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  2621. // @@protoc_insertion_point(field_set_char:message.Parkspace_info.leave_time)
  2622. }
  2623. inline void Parkspace_info::set_leave_time(const char* value, size_t size) {
  2624. set_has_leave_time();
  2625. leave_time_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  2626. ::std::string(reinterpret_cast<const char*>(value), size));
  2627. // @@protoc_insertion_point(field_set_pointer:message.Parkspace_info.leave_time)
  2628. }
  2629. inline ::std::string* Parkspace_info::mutable_leave_time() {
  2630. set_has_leave_time();
  2631. // @@protoc_insertion_point(field_mutable:message.Parkspace_info.leave_time)
  2632. return leave_time_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2633. }
  2634. inline ::std::string* Parkspace_info::release_leave_time() {
  2635. // @@protoc_insertion_point(field_release:message.Parkspace_info.leave_time)
  2636. clear_has_leave_time();
  2637. return leave_time_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  2638. }
  2639. inline void Parkspace_info::set_allocated_leave_time(::std::string* leave_time) {
  2640. if (leave_time != NULL) {
  2641. set_has_leave_time();
  2642. } else {
  2643. clear_has_leave_time();
  2644. }
  2645. leave_time_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), leave_time);
  2646. // @@protoc_insertion_point(field_set_allocated:message.Parkspace_info.leave_time)
  2647. }
  2648. // optional .message.Parkspace_path parkspace_path = 14;
  2649. inline bool Parkspace_info::has_parkspace_path() const {
  2650. return (_has_bits_[0] & 0x00002000u) != 0;
  2651. }
  2652. inline void Parkspace_info::set_has_parkspace_path() {
  2653. _has_bits_[0] |= 0x00002000u;
  2654. }
  2655. inline void Parkspace_info::clear_has_parkspace_path() {
  2656. _has_bits_[0] &= ~0x00002000u;
  2657. }
  2658. inline void Parkspace_info::clear_parkspace_path() {
  2659. parkspace_path_ = 0;
  2660. clear_has_parkspace_path();
  2661. }
  2662. inline ::message::Parkspace_path Parkspace_info::parkspace_path() const {
  2663. // @@protoc_insertion_point(field_get:message.Parkspace_info.parkspace_path)
  2664. return static_cast< ::message::Parkspace_path >(parkspace_path_);
  2665. }
  2666. inline void Parkspace_info::set_parkspace_path(::message::Parkspace_path value) {
  2667. assert(::message::Parkspace_path_IsValid(value));
  2668. set_has_parkspace_path();
  2669. parkspace_path_ = value;
  2670. // @@protoc_insertion_point(field_set:message.Parkspace_info.parkspace_path)
  2671. }
  2672. // optional float path_estimate_time = 15;
  2673. inline bool Parkspace_info::has_path_estimate_time() const {
  2674. return (_has_bits_[0] & 0x00004000u) != 0;
  2675. }
  2676. inline void Parkspace_info::set_has_path_estimate_time() {
  2677. _has_bits_[0] |= 0x00004000u;
  2678. }
  2679. inline void Parkspace_info::clear_has_path_estimate_time() {
  2680. _has_bits_[0] &= ~0x00004000u;
  2681. }
  2682. inline void Parkspace_info::clear_path_estimate_time() {
  2683. path_estimate_time_ = 0;
  2684. clear_has_path_estimate_time();
  2685. }
  2686. inline float Parkspace_info::path_estimate_time() const {
  2687. // @@protoc_insertion_point(field_get:message.Parkspace_info.path_estimate_time)
  2688. return path_estimate_time_;
  2689. }
  2690. inline void Parkspace_info::set_path_estimate_time(float value) {
  2691. set_has_path_estimate_time();
  2692. path_estimate_time_ = value;
  2693. // @@protoc_insertion_point(field_set:message.Parkspace_info.path_estimate_time)
  2694. }
  2695. // optional .message.Parkspace_status parkspace_status_target = 16;
  2696. inline bool Parkspace_info::has_parkspace_status_target() const {
  2697. return (_has_bits_[0] & 0x00008000u) != 0;
  2698. }
  2699. inline void Parkspace_info::set_has_parkspace_status_target() {
  2700. _has_bits_[0] |= 0x00008000u;
  2701. }
  2702. inline void Parkspace_info::clear_has_parkspace_status_target() {
  2703. _has_bits_[0] &= ~0x00008000u;
  2704. }
  2705. inline void Parkspace_info::clear_parkspace_status_target() {
  2706. parkspace_status_target_ = 0;
  2707. clear_has_parkspace_status_target();
  2708. }
  2709. inline ::message::Parkspace_status Parkspace_info::parkspace_status_target() const {
  2710. // @@protoc_insertion_point(field_get:message.Parkspace_info.parkspace_status_target)
  2711. return static_cast< ::message::Parkspace_status >(parkspace_status_target_);
  2712. }
  2713. inline void Parkspace_info::set_parkspace_status_target(::message::Parkspace_status value) {
  2714. assert(::message::Parkspace_status_IsValid(value));
  2715. set_has_parkspace_status_target();
  2716. parkspace_status_target_ = value;
  2717. // @@protoc_insertion_point(field_set:message.Parkspace_info.parkspace_status_target)
  2718. }
  2719. // optional .message.Car_type car_type = 17;
  2720. inline bool Parkspace_info::has_car_type() const {
  2721. return (_has_bits_[0] & 0x00010000u) != 0;
  2722. }
  2723. inline void Parkspace_info::set_has_car_type() {
  2724. _has_bits_[0] |= 0x00010000u;
  2725. }
  2726. inline void Parkspace_info::clear_has_car_type() {
  2727. _has_bits_[0] &= ~0x00010000u;
  2728. }
  2729. inline void Parkspace_info::clear_car_type() {
  2730. car_type_ = 0;
  2731. clear_has_car_type();
  2732. }
  2733. inline ::message::Car_type Parkspace_info::car_type() const {
  2734. // @@protoc_insertion_point(field_get:message.Parkspace_info.car_type)
  2735. return static_cast< ::message::Car_type >(car_type_);
  2736. }
  2737. inline void Parkspace_info::set_car_type(::message::Car_type value) {
  2738. assert(::message::Car_type_IsValid(value));
  2739. set_has_car_type();
  2740. car_type_ = value;
  2741. // @@protoc_insertion_point(field_set:message.Parkspace_info.car_type)
  2742. }
  2743. // -------------------------------------------------------------------
  2744. // Id_struct
  2745. // optional int32 terminal_id = 1;
  2746. inline bool Id_struct::has_terminal_id() const {
  2747. return (_has_bits_[0] & 0x00000001u) != 0;
  2748. }
  2749. inline void Id_struct::set_has_terminal_id() {
  2750. _has_bits_[0] |= 0x00000001u;
  2751. }
  2752. inline void Id_struct::clear_has_terminal_id() {
  2753. _has_bits_[0] &= ~0x00000001u;
  2754. }
  2755. inline void Id_struct::clear_terminal_id() {
  2756. terminal_id_ = 0;
  2757. clear_has_terminal_id();
  2758. }
  2759. inline ::google::protobuf::int32 Id_struct::terminal_id() const {
  2760. // @@protoc_insertion_point(field_get:message.Id_struct.terminal_id)
  2761. return terminal_id_;
  2762. }
  2763. inline void Id_struct::set_terminal_id(::google::protobuf::int32 value) {
  2764. set_has_terminal_id();
  2765. terminal_id_ = value;
  2766. // @@protoc_insertion_point(field_set:message.Id_struct.terminal_id)
  2767. }
  2768. // optional int32 unit_id = 2;
  2769. inline bool Id_struct::has_unit_id() const {
  2770. return (_has_bits_[0] & 0x00000002u) != 0;
  2771. }
  2772. inline void Id_struct::set_has_unit_id() {
  2773. _has_bits_[0] |= 0x00000002u;
  2774. }
  2775. inline void Id_struct::clear_has_unit_id() {
  2776. _has_bits_[0] &= ~0x00000002u;
  2777. }
  2778. inline void Id_struct::clear_unit_id() {
  2779. unit_id_ = 0;
  2780. clear_has_unit_id();
  2781. }
  2782. inline ::google::protobuf::int32 Id_struct::unit_id() const {
  2783. // @@protoc_insertion_point(field_get:message.Id_struct.unit_id)
  2784. return unit_id_;
  2785. }
  2786. inline void Id_struct::set_unit_id(::google::protobuf::int32 value) {
  2787. set_has_unit_id();
  2788. unit_id_ = value;
  2789. // @@protoc_insertion_point(field_set:message.Id_struct.unit_id)
  2790. }
  2791. #ifdef __GNUC__
  2792. #pragma GCC diagnostic pop
  2793. #endif // __GNUC__
  2794. // -------------------------------------------------------------------
  2795. // -------------------------------------------------------------------
  2796. // -------------------------------------------------------------------
  2797. // -------------------------------------------------------------------
  2798. // -------------------------------------------------------------------
  2799. // -------------------------------------------------------------------
  2800. // @@protoc_insertion_point(namespace_scope)
  2801. } // namespace message
  2802. namespace google {
  2803. namespace protobuf {
  2804. template <> struct is_proto_enum< ::message::Message_type> : ::google::protobuf::internal::true_type {};
  2805. template <>
  2806. inline const EnumDescriptor* GetEnumDescriptor< ::message::Message_type>() {
  2807. return ::message::Message_type_descriptor();
  2808. }
  2809. template <> struct is_proto_enum< ::message::Communicator> : ::google::protobuf::internal::true_type {};
  2810. template <>
  2811. inline const EnumDescriptor* GetEnumDescriptor< ::message::Communicator>() {
  2812. return ::message::Communicator_descriptor();
  2813. }
  2814. template <> struct is_proto_enum< ::message::Process_type> : ::google::protobuf::internal::true_type {};
  2815. template <>
  2816. inline const EnumDescriptor* GetEnumDescriptor< ::message::Process_type>() {
  2817. return ::message::Process_type_descriptor();
  2818. }
  2819. template <> struct is_proto_enum< ::message::Error_level> : ::google::protobuf::internal::true_type {};
  2820. template <>
  2821. inline const EnumDescriptor* GetEnumDescriptor< ::message::Error_level>() {
  2822. return ::message::Error_level_descriptor();
  2823. }
  2824. template <> struct is_proto_enum< ::message::Parkspace_status> : ::google::protobuf::internal::true_type {};
  2825. template <>
  2826. inline const EnumDescriptor* GetEnumDescriptor< ::message::Parkspace_status>() {
  2827. return ::message::Parkspace_status_descriptor();
  2828. }
  2829. template <> struct is_proto_enum< ::message::Direction> : ::google::protobuf::internal::true_type {};
  2830. template <>
  2831. inline const EnumDescriptor* GetEnumDescriptor< ::message::Direction>() {
  2832. return ::message::Direction_descriptor();
  2833. }
  2834. template <> struct is_proto_enum< ::message::Parkspace_path> : ::google::protobuf::internal::true_type {};
  2835. template <>
  2836. inline const EnumDescriptor* GetEnumDescriptor< ::message::Parkspace_path>() {
  2837. return ::message::Parkspace_path_descriptor();
  2838. }
  2839. template <> struct is_proto_enum< ::message::Parkspace_type> : ::google::protobuf::internal::true_type {};
  2840. template <>
  2841. inline const EnumDescriptor* GetEnumDescriptor< ::message::Parkspace_type>() {
  2842. return ::message::Parkspace_type_descriptor();
  2843. }
  2844. template <> struct is_proto_enum< ::message::Car_type> : ::google::protobuf::internal::true_type {};
  2845. template <>
  2846. inline const EnumDescriptor* GetEnumDescriptor< ::message::Car_type>() {
  2847. return ::message::Car_type_descriptor();
  2848. }
  2849. template <> struct is_proto_enum< ::message::Step_type> : ::google::protobuf::internal::true_type {};
  2850. template <>
  2851. inline const EnumDescriptor* GetEnumDescriptor< ::message::Step_type>() {
  2852. return ::message::Step_type_descriptor();
  2853. }
  2854. template <> struct is_proto_enum< ::message::Step_statu> : ::google::protobuf::internal::true_type {};
  2855. template <>
  2856. inline const EnumDescriptor* GetEnumDescriptor< ::message::Step_statu>() {
  2857. return ::message::Step_statu_descriptor();
  2858. }
  2859. template <> struct is_proto_enum< ::message::Dispatch_device_type> : ::google::protobuf::internal::true_type {};
  2860. template <>
  2861. inline const EnumDescriptor* GetEnumDescriptor< ::message::Dispatch_device_type>() {
  2862. return ::message::Dispatch_device_type_descriptor();
  2863. }
  2864. } // namespace protobuf
  2865. } // namespace google
  2866. // @@protoc_insertion_point(global_scope)
  2867. #endif // PROTOBUF_message_5fbase_2eproto__INCLUDED