You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Message2Server.pb.h 59 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893
  1. // Generated by the protocol buffer compiler. DO NOT EDIT!
  2. // source: Message2Server.proto
  3. #ifndef GOOGLE_PROTOBUF_INCLUDED_Message2Server_2eproto
  4. #define GOOGLE_PROTOBUF_INCLUDED_Message2Server_2eproto
  5. #include <limits>
  6. #include <string>
  7. #include <google/protobuf/port_def.inc>
  8. #if PROTOBUF_VERSION < 3021000
  9. #error This file was generated by a newer version of protoc which is
  10. #error incompatible with your Protocol Buffer headers. Please update
  11. #error your headers.
  12. #endif
  13. #if 3021009 < PROTOBUF_MIN_PROTOC_VERSION
  14. #error This file was generated by an older version of protoc which is
  15. #error incompatible with your Protocol Buffer headers. Please
  16. #error regenerate this file with a newer version of protoc.
  17. #endif
  18. #include <google/protobuf/port_undef.inc>
  19. #include <google/protobuf/io/coded_stream.h>
  20. #include <google/protobuf/arena.h>
  21. #include <google/protobuf/arenastring.h>
  22. #include <google/protobuf/generated_message_util.h>
  23. #include <google/protobuf/metadata_lite.h>
  24. #include <google/protobuf/generated_message_reflection.h>
  25. #include <google/protobuf/message.h>
  26. #include <google/protobuf/repeated_field.h> // IWYU pragma: export
  27. #include <google/protobuf/extension_set.h> // IWYU pragma: export
  28. #include <google/protobuf/unknown_field_set.h>
  29. #include "MessageType.pb.h"
  30. // @@protoc_insertion_point(includes)
  31. #include <google/protobuf/port_def.inc>
  32. #define PROTOBUF_INTERNAL_EXPORT_Message2Server_2eproto
  33. PROTOBUF_NAMESPACE_OPEN
  34. namespace internal
  35. {
  36. class AnyMetadata;
  37. } // namespace internal
  38. PROTOBUF_NAMESPACE_CLOSE
  39. // Internal implementation detail -- do not use these members.
  40. struct TableStruct_Message2Server_2eproto
  41. {
  42. static const uint32_t offsets[];
  43. };
  44. extern const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_Message2Server_2eproto;
  45. namespace protobuf
  46. {
  47. class AttackMsg;
  48. struct AttackMsgDefaultTypeInternal;
  49. extern AttackMsgDefaultTypeInternal _AttackMsg_default_instance_;
  50. class IDMsg;
  51. struct IDMsgDefaultTypeInternal;
  52. extern IDMsgDefaultTypeInternal _IDMsg_default_instance_;
  53. class MoveMsg;
  54. struct MoveMsgDefaultTypeInternal;
  55. extern MoveMsgDefaultTypeInternal _MoveMsg_default_instance_;
  56. class PickMsg;
  57. struct PickMsgDefaultTypeInternal;
  58. extern PickMsgDefaultTypeInternal _PickMsg_default_instance_;
  59. class PlayerMsg;
  60. struct PlayerMsgDefaultTypeInternal;
  61. extern PlayerMsgDefaultTypeInternal _PlayerMsg_default_instance_;
  62. class SendMsg;
  63. struct SendMsgDefaultTypeInternal;
  64. extern SendMsgDefaultTypeInternal _SendMsg_default_instance_;
  65. } // namespace protobuf
  66. PROTOBUF_NAMESPACE_OPEN
  67. template<>
  68. ::protobuf::AttackMsg* Arena::CreateMaybeMessage<::protobuf::AttackMsg>(Arena*);
  69. template<>
  70. ::protobuf::IDMsg* Arena::CreateMaybeMessage<::protobuf::IDMsg>(Arena*);
  71. template<>
  72. ::protobuf::MoveMsg* Arena::CreateMaybeMessage<::protobuf::MoveMsg>(Arena*);
  73. template<>
  74. ::protobuf::PickMsg* Arena::CreateMaybeMessage<::protobuf::PickMsg>(Arena*);
  75. template<>
  76. ::protobuf::PlayerMsg* Arena::CreateMaybeMessage<::protobuf::PlayerMsg>(Arena*);
  77. template<>
  78. ::protobuf::SendMsg* Arena::CreateMaybeMessage<::protobuf::SendMsg>(Arena*);
  79. PROTOBUF_NAMESPACE_CLOSE
  80. namespace protobuf
  81. {
  82. // ===================================================================
  83. class PlayerMsg final :
  84. public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:protobuf.PlayerMsg) */
  85. {
  86. public:
  87. inline PlayerMsg() :
  88. PlayerMsg(nullptr)
  89. {
  90. }
  91. ~PlayerMsg() override;
  92. explicit PROTOBUF_CONSTEXPR PlayerMsg(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized);
  93. PlayerMsg(const PlayerMsg& from);
  94. PlayerMsg(PlayerMsg&& from) noexcept
  95. :
  96. PlayerMsg()
  97. {
  98. *this = ::std::move(from);
  99. }
  100. inline PlayerMsg& operator=(const PlayerMsg& from)
  101. {
  102. CopyFrom(from);
  103. return *this;
  104. }
  105. inline PlayerMsg& operator=(PlayerMsg&& from) noexcept
  106. {
  107. if (this == &from)
  108. return *this;
  109. if (GetOwningArena() == from.GetOwningArena()
  110. #ifdef PROTOBUF_FORCE_COPY_IN_MOVE
  111. && GetOwningArena() != nullptr
  112. #endif // !PROTOBUF_FORCE_COPY_IN_MOVE
  113. )
  114. {
  115. InternalSwap(&from);
  116. }
  117. else
  118. {
  119. CopyFrom(from);
  120. }
  121. return *this;
  122. }
  123. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor()
  124. {
  125. return GetDescriptor();
  126. }
  127. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor()
  128. {
  129. return default_instance().GetMetadata().descriptor;
  130. }
  131. static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection()
  132. {
  133. return default_instance().GetMetadata().reflection;
  134. }
  135. static const PlayerMsg& default_instance()
  136. {
  137. return *internal_default_instance();
  138. }
  139. enum JobTypeCase
  140. {
  141. kHumanType = 3,
  142. kButcherType = 4,
  143. JOB_TYPE_NOT_SET = 0,
  144. };
  145. static inline const PlayerMsg* internal_default_instance()
  146. {
  147. return reinterpret_cast<const PlayerMsg*>(
  148. &_PlayerMsg_default_instance_
  149. );
  150. }
  151. static constexpr int kIndexInFileMessages =
  152. 0;
  153. friend void swap(PlayerMsg& a, PlayerMsg& b)
  154. {
  155. a.Swap(&b);
  156. }
  157. inline void Swap(PlayerMsg* other)
  158. {
  159. if (other == this)
  160. return;
  161. #ifdef PROTOBUF_FORCE_COPY_IN_SWAP
  162. if (GetOwningArena() != nullptr &&
  163. GetOwningArena() == other->GetOwningArena())
  164. {
  165. #else // PROTOBUF_FORCE_COPY_IN_SWAP
  166. if (GetOwningArena() == other->GetOwningArena())
  167. {
  168. #endif // !PROTOBUF_FORCE_COPY_IN_SWAP
  169. InternalSwap(other);
  170. }
  171. else
  172. {
  173. ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
  174. }
  175. }
  176. void UnsafeArenaSwap(PlayerMsg* other)
  177. {
  178. if (other == this)
  179. return;
  180. GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena());
  181. InternalSwap(other);
  182. }
  183. // implements Message ----------------------------------------------
  184. PlayerMsg* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final
  185. {
  186. return CreateMaybeMessage<PlayerMsg>(arena);
  187. }
  188. using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom;
  189. void CopyFrom(const PlayerMsg& from);
  190. using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom;
  191. void MergeFrom(const PlayerMsg& from)
  192. {
  193. PlayerMsg::MergeImpl(*this, from);
  194. }
  195. private:
  196. static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg);
  197. public:
  198. PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
  199. bool IsInitialized() const final;
  200. size_t ByteSizeLong() const final;
  201. const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
  202. uint8_t* _InternalSerialize(
  203. uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream
  204. ) const final;
  205. int GetCachedSize() const final
  206. {
  207. return _impl_._cached_size_.Get();
  208. }
  209. private:
  210. void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned);
  211. void SharedDtor();
  212. void SetCachedSize(int size) const final;
  213. void InternalSwap(PlayerMsg* other);
  214. private:
  215. friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
  216. static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName()
  217. {
  218. return "protobuf.PlayerMsg";
  219. }
  220. protected:
  221. explicit PlayerMsg(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false);
  222. public:
  223. static const ClassData _class_data_;
  224. const ::PROTOBUF_NAMESPACE_ID::Message::ClassData* GetClassData() const final;
  225. ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
  226. // nested types ----------------------------------------------------
  227. // accessors -------------------------------------------------------
  228. enum : int
  229. {
  230. kPlayerIdFieldNumber = 1,
  231. kPlayerTypeFieldNumber = 2,
  232. kHumanTypeFieldNumber = 3,
  233. kButcherTypeFieldNumber = 4,
  234. };
  235. // int64 player_id = 1;
  236. void clear_player_id();
  237. int64_t player_id() const;
  238. void set_player_id(int64_t value);
  239. private:
  240. int64_t _internal_player_id() const;
  241. void _internal_set_player_id(int64_t value);
  242. public:
  243. // .protobuf.PlayerType player_type = 2;
  244. void clear_player_type();
  245. ::protobuf::PlayerType player_type() const;
  246. void set_player_type(::protobuf::PlayerType value);
  247. private:
  248. ::protobuf::PlayerType _internal_player_type() const;
  249. void _internal_set_player_type(::protobuf::PlayerType value);
  250. public:
  251. // .protobuf.HumanType human_type = 3;
  252. bool has_human_type() const;
  253. private:
  254. bool _internal_has_human_type() const;
  255. public:
  256. void clear_human_type();
  257. ::protobuf::HumanType human_type() const;
  258. void set_human_type(::protobuf::HumanType value);
  259. private:
  260. ::protobuf::HumanType _internal_human_type() const;
  261. void _internal_set_human_type(::protobuf::HumanType value);
  262. public:
  263. // .protobuf.ButcherType butcher_type = 4;
  264. bool has_butcher_type() const;
  265. private:
  266. bool _internal_has_butcher_type() const;
  267. public:
  268. void clear_butcher_type();
  269. ::protobuf::ButcherType butcher_type() const;
  270. void set_butcher_type(::protobuf::ButcherType value);
  271. private:
  272. ::protobuf::ButcherType _internal_butcher_type() const;
  273. void _internal_set_butcher_type(::protobuf::ButcherType value);
  274. public:
  275. void clear_job_type();
  276. JobTypeCase job_type_case() const;
  277. // @@protoc_insertion_point(class_scope:protobuf.PlayerMsg)
  278. private:
  279. class _Internal;
  280. void set_has_human_type();
  281. void set_has_butcher_type();
  282. inline bool has_job_type() const;
  283. inline void clear_has_job_type();
  284. template<typename T>
  285. friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
  286. typedef void InternalArenaConstructable_;
  287. typedef void DestructorSkippable_;
  288. struct Impl_
  289. {
  290. int64_t player_id_;
  291. int player_type_;
  292. union JobTypeUnion
  293. {
  294. constexpr JobTypeUnion() :
  295. _constinit_{}
  296. {
  297. }
  298. ::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized _constinit_;
  299. int human_type_;
  300. int butcher_type_;
  301. } job_type_;
  302. mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
  303. uint32_t _oneof_case_[1];
  304. };
  305. union
  306. {
  307. Impl_ _impl_;
  308. };
  309. friend struct ::TableStruct_Message2Server_2eproto;
  310. };
  311. // -------------------------------------------------------------------
  312. class MoveMsg final :
  313. public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:protobuf.MoveMsg) */
  314. {
  315. public:
  316. inline MoveMsg() :
  317. MoveMsg(nullptr)
  318. {
  319. }
  320. ~MoveMsg() override;
  321. explicit PROTOBUF_CONSTEXPR MoveMsg(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized);
  322. MoveMsg(const MoveMsg& from);
  323. MoveMsg(MoveMsg&& from) noexcept
  324. :
  325. MoveMsg()
  326. {
  327. *this = ::std::move(from);
  328. }
  329. inline MoveMsg& operator=(const MoveMsg& from)
  330. {
  331. CopyFrom(from);
  332. return *this;
  333. }
  334. inline MoveMsg& operator=(MoveMsg&& from) noexcept
  335. {
  336. if (this == &from)
  337. return *this;
  338. if (GetOwningArena() == from.GetOwningArena()
  339. #ifdef PROTOBUF_FORCE_COPY_IN_MOVE
  340. && GetOwningArena() != nullptr
  341. #endif // !PROTOBUF_FORCE_COPY_IN_MOVE
  342. )
  343. {
  344. InternalSwap(&from);
  345. }
  346. else
  347. {
  348. CopyFrom(from);
  349. }
  350. return *this;
  351. }
  352. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor()
  353. {
  354. return GetDescriptor();
  355. }
  356. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor()
  357. {
  358. return default_instance().GetMetadata().descriptor;
  359. }
  360. static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection()
  361. {
  362. return default_instance().GetMetadata().reflection;
  363. }
  364. static const MoveMsg& default_instance()
  365. {
  366. return *internal_default_instance();
  367. }
  368. static inline const MoveMsg* internal_default_instance()
  369. {
  370. return reinterpret_cast<const MoveMsg*>(
  371. &_MoveMsg_default_instance_
  372. );
  373. }
  374. static constexpr int kIndexInFileMessages =
  375. 1;
  376. friend void swap(MoveMsg& a, MoveMsg& b)
  377. {
  378. a.Swap(&b);
  379. }
  380. inline void Swap(MoveMsg* other)
  381. {
  382. if (other == this)
  383. return;
  384. #ifdef PROTOBUF_FORCE_COPY_IN_SWAP
  385. if (GetOwningArena() != nullptr &&
  386. GetOwningArena() == other->GetOwningArena())
  387. {
  388. #else // PROTOBUF_FORCE_COPY_IN_SWAP
  389. if (GetOwningArena() == other->GetOwningArena())
  390. {
  391. #endif // !PROTOBUF_FORCE_COPY_IN_SWAP
  392. InternalSwap(other);
  393. }
  394. else
  395. {
  396. ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
  397. }
  398. }
  399. void UnsafeArenaSwap(MoveMsg* other)
  400. {
  401. if (other == this)
  402. return;
  403. GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena());
  404. InternalSwap(other);
  405. }
  406. // implements Message ----------------------------------------------
  407. MoveMsg* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final
  408. {
  409. return CreateMaybeMessage<MoveMsg>(arena);
  410. }
  411. using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom;
  412. void CopyFrom(const MoveMsg& from);
  413. using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom;
  414. void MergeFrom(const MoveMsg& from)
  415. {
  416. MoveMsg::MergeImpl(*this, from);
  417. }
  418. private:
  419. static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg);
  420. public:
  421. PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
  422. bool IsInitialized() const final;
  423. size_t ByteSizeLong() const final;
  424. const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
  425. uint8_t* _InternalSerialize(
  426. uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream
  427. ) const final;
  428. int GetCachedSize() const final
  429. {
  430. return _impl_._cached_size_.Get();
  431. }
  432. private:
  433. void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned);
  434. void SharedDtor();
  435. void SetCachedSize(int size) const final;
  436. void InternalSwap(MoveMsg* other);
  437. private:
  438. friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
  439. static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName()
  440. {
  441. return "protobuf.MoveMsg";
  442. }
  443. protected:
  444. explicit MoveMsg(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false);
  445. public:
  446. static const ClassData _class_data_;
  447. const ::PROTOBUF_NAMESPACE_ID::Message::ClassData* GetClassData() const final;
  448. ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
  449. // nested types ----------------------------------------------------
  450. // accessors -------------------------------------------------------
  451. enum : int
  452. {
  453. kPlayerIdFieldNumber = 1,
  454. kAngleFieldNumber = 2,
  455. kTimeInMillisecondsFieldNumber = 3,
  456. };
  457. // int64 player_id = 1;
  458. void clear_player_id();
  459. int64_t player_id() const;
  460. void set_player_id(int64_t value);
  461. private:
  462. int64_t _internal_player_id() const;
  463. void _internal_set_player_id(int64_t value);
  464. public:
  465. // double angle = 2;
  466. void clear_angle();
  467. double angle() const;
  468. void set_angle(double value);
  469. private:
  470. double _internal_angle() const;
  471. void _internal_set_angle(double value);
  472. public:
  473. // int64 time_in_milliseconds = 3;
  474. void clear_time_in_milliseconds();
  475. int64_t time_in_milliseconds() const;
  476. void set_time_in_milliseconds(int64_t value);
  477. private:
  478. int64_t _internal_time_in_milliseconds() const;
  479. void _internal_set_time_in_milliseconds(int64_t value);
  480. public:
  481. // @@protoc_insertion_point(class_scope:protobuf.MoveMsg)
  482. private:
  483. class _Internal;
  484. template<typename T>
  485. friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
  486. typedef void InternalArenaConstructable_;
  487. typedef void DestructorSkippable_;
  488. struct Impl_
  489. {
  490. int64_t player_id_;
  491. double angle_;
  492. int64_t time_in_milliseconds_;
  493. mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
  494. };
  495. union
  496. {
  497. Impl_ _impl_;
  498. };
  499. friend struct ::TableStruct_Message2Server_2eproto;
  500. };
  501. // -------------------------------------------------------------------
  502. class PickMsg final :
  503. public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:protobuf.PickMsg) */
  504. {
  505. public:
  506. inline PickMsg() :
  507. PickMsg(nullptr)
  508. {
  509. }
  510. ~PickMsg() override;
  511. explicit PROTOBUF_CONSTEXPR PickMsg(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized);
  512. PickMsg(const PickMsg& from);
  513. PickMsg(PickMsg&& from) noexcept
  514. :
  515. PickMsg()
  516. {
  517. *this = ::std::move(from);
  518. }
  519. inline PickMsg& operator=(const PickMsg& from)
  520. {
  521. CopyFrom(from);
  522. return *this;
  523. }
  524. inline PickMsg& operator=(PickMsg&& from) noexcept
  525. {
  526. if (this == &from)
  527. return *this;
  528. if (GetOwningArena() == from.GetOwningArena()
  529. #ifdef PROTOBUF_FORCE_COPY_IN_MOVE
  530. && GetOwningArena() != nullptr
  531. #endif // !PROTOBUF_FORCE_COPY_IN_MOVE
  532. )
  533. {
  534. InternalSwap(&from);
  535. }
  536. else
  537. {
  538. CopyFrom(from);
  539. }
  540. return *this;
  541. }
  542. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor()
  543. {
  544. return GetDescriptor();
  545. }
  546. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor()
  547. {
  548. return default_instance().GetMetadata().descriptor;
  549. }
  550. static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection()
  551. {
  552. return default_instance().GetMetadata().reflection;
  553. }
  554. static const PickMsg& default_instance()
  555. {
  556. return *internal_default_instance();
  557. }
  558. static inline const PickMsg* internal_default_instance()
  559. {
  560. return reinterpret_cast<const PickMsg*>(
  561. &_PickMsg_default_instance_
  562. );
  563. }
  564. static constexpr int kIndexInFileMessages =
  565. 2;
  566. friend void swap(PickMsg& a, PickMsg& b)
  567. {
  568. a.Swap(&b);
  569. }
  570. inline void Swap(PickMsg* other)
  571. {
  572. if (other == this)
  573. return;
  574. #ifdef PROTOBUF_FORCE_COPY_IN_SWAP
  575. if (GetOwningArena() != nullptr &&
  576. GetOwningArena() == other->GetOwningArena())
  577. {
  578. #else // PROTOBUF_FORCE_COPY_IN_SWAP
  579. if (GetOwningArena() == other->GetOwningArena())
  580. {
  581. #endif // !PROTOBUF_FORCE_COPY_IN_SWAP
  582. InternalSwap(other);
  583. }
  584. else
  585. {
  586. ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
  587. }
  588. }
  589. void UnsafeArenaSwap(PickMsg* other)
  590. {
  591. if (other == this)
  592. return;
  593. GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena());
  594. InternalSwap(other);
  595. }
  596. // implements Message ----------------------------------------------
  597. PickMsg* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final
  598. {
  599. return CreateMaybeMessage<PickMsg>(arena);
  600. }
  601. using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom;
  602. void CopyFrom(const PickMsg& from);
  603. using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom;
  604. void MergeFrom(const PickMsg& from)
  605. {
  606. PickMsg::MergeImpl(*this, from);
  607. }
  608. private:
  609. static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg);
  610. public:
  611. PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
  612. bool IsInitialized() const final;
  613. size_t ByteSizeLong() const final;
  614. const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
  615. uint8_t* _InternalSerialize(
  616. uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream
  617. ) const final;
  618. int GetCachedSize() const final
  619. {
  620. return _impl_._cached_size_.Get();
  621. }
  622. private:
  623. void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned);
  624. void SharedDtor();
  625. void SetCachedSize(int size) const final;
  626. void InternalSwap(PickMsg* other);
  627. private:
  628. friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
  629. static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName()
  630. {
  631. return "protobuf.PickMsg";
  632. }
  633. protected:
  634. explicit PickMsg(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false);
  635. public:
  636. static const ClassData _class_data_;
  637. const ::PROTOBUF_NAMESPACE_ID::Message::ClassData* GetClassData() const final;
  638. ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
  639. // nested types ----------------------------------------------------
  640. // accessors -------------------------------------------------------
  641. enum : int
  642. {
  643. kPlayerIdFieldNumber = 1,
  644. kPropTypeFieldNumber = 2,
  645. };
  646. // int64 player_id = 1;
  647. void clear_player_id();
  648. int64_t player_id() const;
  649. void set_player_id(int64_t value);
  650. private:
  651. int64_t _internal_player_id() const;
  652. void _internal_set_player_id(int64_t value);
  653. public:
  654. // .protobuf.PropType prop_type = 2;
  655. void clear_prop_type();
  656. ::protobuf::PropType prop_type() const;
  657. void set_prop_type(::protobuf::PropType value);
  658. private:
  659. ::protobuf::PropType _internal_prop_type() const;
  660. void _internal_set_prop_type(::protobuf::PropType value);
  661. public:
  662. // @@protoc_insertion_point(class_scope:protobuf.PickMsg)
  663. private:
  664. class _Internal;
  665. template<typename T>
  666. friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
  667. typedef void InternalArenaConstructable_;
  668. typedef void DestructorSkippable_;
  669. struct Impl_
  670. {
  671. int64_t player_id_;
  672. int prop_type_;
  673. mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
  674. };
  675. union
  676. {
  677. Impl_ _impl_;
  678. };
  679. friend struct ::TableStruct_Message2Server_2eproto;
  680. };
  681. // -------------------------------------------------------------------
  682. class SendMsg final :
  683. public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:protobuf.SendMsg) */
  684. {
  685. public:
  686. inline SendMsg() :
  687. SendMsg(nullptr)
  688. {
  689. }
  690. ~SendMsg() override;
  691. explicit PROTOBUF_CONSTEXPR SendMsg(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized);
  692. SendMsg(const SendMsg& from);
  693. SendMsg(SendMsg&& from) noexcept
  694. :
  695. SendMsg()
  696. {
  697. *this = ::std::move(from);
  698. }
  699. inline SendMsg& operator=(const SendMsg& from)
  700. {
  701. CopyFrom(from);
  702. return *this;
  703. }
  704. inline SendMsg& operator=(SendMsg&& from) noexcept
  705. {
  706. if (this == &from)
  707. return *this;
  708. if (GetOwningArena() == from.GetOwningArena()
  709. #ifdef PROTOBUF_FORCE_COPY_IN_MOVE
  710. && GetOwningArena() != nullptr
  711. #endif // !PROTOBUF_FORCE_COPY_IN_MOVE
  712. )
  713. {
  714. InternalSwap(&from);
  715. }
  716. else
  717. {
  718. CopyFrom(from);
  719. }
  720. return *this;
  721. }
  722. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor()
  723. {
  724. return GetDescriptor();
  725. }
  726. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor()
  727. {
  728. return default_instance().GetMetadata().descriptor;
  729. }
  730. static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection()
  731. {
  732. return default_instance().GetMetadata().reflection;
  733. }
  734. static const SendMsg& default_instance()
  735. {
  736. return *internal_default_instance();
  737. }
  738. static inline const SendMsg* internal_default_instance()
  739. {
  740. return reinterpret_cast<const SendMsg*>(
  741. &_SendMsg_default_instance_
  742. );
  743. }
  744. static constexpr int kIndexInFileMessages =
  745. 3;
  746. friend void swap(SendMsg& a, SendMsg& b)
  747. {
  748. a.Swap(&b);
  749. }
  750. inline void Swap(SendMsg* other)
  751. {
  752. if (other == this)
  753. return;
  754. #ifdef PROTOBUF_FORCE_COPY_IN_SWAP
  755. if (GetOwningArena() != nullptr &&
  756. GetOwningArena() == other->GetOwningArena())
  757. {
  758. #else // PROTOBUF_FORCE_COPY_IN_SWAP
  759. if (GetOwningArena() == other->GetOwningArena())
  760. {
  761. #endif // !PROTOBUF_FORCE_COPY_IN_SWAP
  762. InternalSwap(other);
  763. }
  764. else
  765. {
  766. ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
  767. }
  768. }
  769. void UnsafeArenaSwap(SendMsg* other)
  770. {
  771. if (other == this)
  772. return;
  773. GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena());
  774. InternalSwap(other);
  775. }
  776. // implements Message ----------------------------------------------
  777. SendMsg* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final
  778. {
  779. return CreateMaybeMessage<SendMsg>(arena);
  780. }
  781. using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom;
  782. void CopyFrom(const SendMsg& from);
  783. using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom;
  784. void MergeFrom(const SendMsg& from)
  785. {
  786. SendMsg::MergeImpl(*this, from);
  787. }
  788. private:
  789. static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg);
  790. public:
  791. PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
  792. bool IsInitialized() const final;
  793. size_t ByteSizeLong() const final;
  794. const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
  795. uint8_t* _InternalSerialize(
  796. uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream
  797. ) const final;
  798. int GetCachedSize() const final
  799. {
  800. return _impl_._cached_size_.Get();
  801. }
  802. private:
  803. void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned);
  804. void SharedDtor();
  805. void SetCachedSize(int size) const final;
  806. void InternalSwap(SendMsg* other);
  807. private:
  808. friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
  809. static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName()
  810. {
  811. return "protobuf.SendMsg";
  812. }
  813. protected:
  814. explicit SendMsg(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false);
  815. public:
  816. static const ClassData _class_data_;
  817. const ::PROTOBUF_NAMESPACE_ID::Message::ClassData* GetClassData() const final;
  818. ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
  819. // nested types ----------------------------------------------------
  820. // accessors -------------------------------------------------------
  821. enum : int
  822. {
  823. kMessageFieldNumber = 3,
  824. kPlayerIdFieldNumber = 1,
  825. kToPlayerIdFieldNumber = 2,
  826. };
  827. // string message = 3;
  828. void clear_message();
  829. const std::string& message() const;
  830. template<typename ArgT0 = const std::string&, typename... ArgT>
  831. void set_message(ArgT0&& arg0, ArgT... args);
  832. std::string* mutable_message();
  833. PROTOBUF_NODISCARD std::string* release_message();
  834. void set_allocated_message(std::string* message);
  835. private:
  836. const std::string& _internal_message() const;
  837. inline PROTOBUF_ALWAYS_INLINE void _internal_set_message(const std::string& value);
  838. std::string* _internal_mutable_message();
  839. public:
  840. // int64 player_id = 1;
  841. void clear_player_id();
  842. int64_t player_id() const;
  843. void set_player_id(int64_t value);
  844. private:
  845. int64_t _internal_player_id() const;
  846. void _internal_set_player_id(int64_t value);
  847. public:
  848. // int64 to_player_id = 2;
  849. void clear_to_player_id();
  850. int64_t to_player_id() const;
  851. void set_to_player_id(int64_t value);
  852. private:
  853. int64_t _internal_to_player_id() const;
  854. void _internal_set_to_player_id(int64_t value);
  855. public:
  856. // @@protoc_insertion_point(class_scope:protobuf.SendMsg)
  857. private:
  858. class _Internal;
  859. template<typename T>
  860. friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
  861. typedef void InternalArenaConstructable_;
  862. typedef void DestructorSkippable_;
  863. struct Impl_
  864. {
  865. ::PROTOBUF_NAMESPACE_ID::internal::ArenaStringPtr message_;
  866. int64_t player_id_;
  867. int64_t to_player_id_;
  868. mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
  869. };
  870. union
  871. {
  872. Impl_ _impl_;
  873. };
  874. friend struct ::TableStruct_Message2Server_2eproto;
  875. };
  876. // -------------------------------------------------------------------
  877. class AttackMsg final :
  878. public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:protobuf.AttackMsg) */
  879. {
  880. public:
  881. inline AttackMsg() :
  882. AttackMsg(nullptr)
  883. {
  884. }
  885. ~AttackMsg() override;
  886. explicit PROTOBUF_CONSTEXPR AttackMsg(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized);
  887. AttackMsg(const AttackMsg& from);
  888. AttackMsg(AttackMsg&& from) noexcept
  889. :
  890. AttackMsg()
  891. {
  892. *this = ::std::move(from);
  893. }
  894. inline AttackMsg& operator=(const AttackMsg& from)
  895. {
  896. CopyFrom(from);
  897. return *this;
  898. }
  899. inline AttackMsg& operator=(AttackMsg&& from) noexcept
  900. {
  901. if (this == &from)
  902. return *this;
  903. if (GetOwningArena() == from.GetOwningArena()
  904. #ifdef PROTOBUF_FORCE_COPY_IN_MOVE
  905. && GetOwningArena() != nullptr
  906. #endif // !PROTOBUF_FORCE_COPY_IN_MOVE
  907. )
  908. {
  909. InternalSwap(&from);
  910. }
  911. else
  912. {
  913. CopyFrom(from);
  914. }
  915. return *this;
  916. }
  917. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor()
  918. {
  919. return GetDescriptor();
  920. }
  921. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor()
  922. {
  923. return default_instance().GetMetadata().descriptor;
  924. }
  925. static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection()
  926. {
  927. return default_instance().GetMetadata().reflection;
  928. }
  929. static const AttackMsg& default_instance()
  930. {
  931. return *internal_default_instance();
  932. }
  933. static inline const AttackMsg* internal_default_instance()
  934. {
  935. return reinterpret_cast<const AttackMsg*>(
  936. &_AttackMsg_default_instance_
  937. );
  938. }
  939. static constexpr int kIndexInFileMessages =
  940. 4;
  941. friend void swap(AttackMsg& a, AttackMsg& b)
  942. {
  943. a.Swap(&b);
  944. }
  945. inline void Swap(AttackMsg* other)
  946. {
  947. if (other == this)
  948. return;
  949. #ifdef PROTOBUF_FORCE_COPY_IN_SWAP
  950. if (GetOwningArena() != nullptr &&
  951. GetOwningArena() == other->GetOwningArena())
  952. {
  953. #else // PROTOBUF_FORCE_COPY_IN_SWAP
  954. if (GetOwningArena() == other->GetOwningArena())
  955. {
  956. #endif // !PROTOBUF_FORCE_COPY_IN_SWAP
  957. InternalSwap(other);
  958. }
  959. else
  960. {
  961. ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
  962. }
  963. }
  964. void UnsafeArenaSwap(AttackMsg* other)
  965. {
  966. if (other == this)
  967. return;
  968. GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena());
  969. InternalSwap(other);
  970. }
  971. // implements Message ----------------------------------------------
  972. AttackMsg* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final
  973. {
  974. return CreateMaybeMessage<AttackMsg>(arena);
  975. }
  976. using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom;
  977. void CopyFrom(const AttackMsg& from);
  978. using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom;
  979. void MergeFrom(const AttackMsg& from)
  980. {
  981. AttackMsg::MergeImpl(*this, from);
  982. }
  983. private:
  984. static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg);
  985. public:
  986. PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
  987. bool IsInitialized() const final;
  988. size_t ByteSizeLong() const final;
  989. const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
  990. uint8_t* _InternalSerialize(
  991. uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream
  992. ) const final;
  993. int GetCachedSize() const final
  994. {
  995. return _impl_._cached_size_.Get();
  996. }
  997. private:
  998. void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned);
  999. void SharedDtor();
  1000. void SetCachedSize(int size) const final;
  1001. void InternalSwap(AttackMsg* other);
  1002. private:
  1003. friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
  1004. static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName()
  1005. {
  1006. return "protobuf.AttackMsg";
  1007. }
  1008. protected:
  1009. explicit AttackMsg(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false);
  1010. public:
  1011. static const ClassData _class_data_;
  1012. const ::PROTOBUF_NAMESPACE_ID::Message::ClassData* GetClassData() const final;
  1013. ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
  1014. // nested types ----------------------------------------------------
  1015. // accessors -------------------------------------------------------
  1016. enum : int
  1017. {
  1018. kPlayerIdFieldNumber = 1,
  1019. kAngleFieldNumber = 2,
  1020. };
  1021. // int64 player_id = 1;
  1022. void clear_player_id();
  1023. int64_t player_id() const;
  1024. void set_player_id(int64_t value);
  1025. private:
  1026. int64_t _internal_player_id() const;
  1027. void _internal_set_player_id(int64_t value);
  1028. public:
  1029. // double angle = 2;
  1030. void clear_angle();
  1031. double angle() const;
  1032. void set_angle(double value);
  1033. private:
  1034. double _internal_angle() const;
  1035. void _internal_set_angle(double value);
  1036. public:
  1037. // @@protoc_insertion_point(class_scope:protobuf.AttackMsg)
  1038. private:
  1039. class _Internal;
  1040. template<typename T>
  1041. friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
  1042. typedef void InternalArenaConstructable_;
  1043. typedef void DestructorSkippable_;
  1044. struct Impl_
  1045. {
  1046. int64_t player_id_;
  1047. double angle_;
  1048. mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
  1049. };
  1050. union
  1051. {
  1052. Impl_ _impl_;
  1053. };
  1054. friend struct ::TableStruct_Message2Server_2eproto;
  1055. };
  1056. // -------------------------------------------------------------------
  1057. class IDMsg final :
  1058. public ::PROTOBUF_NAMESPACE_ID::Message /* @@protoc_insertion_point(class_definition:protobuf.IDMsg) */
  1059. {
  1060. public:
  1061. inline IDMsg() :
  1062. IDMsg(nullptr)
  1063. {
  1064. }
  1065. ~IDMsg() override;
  1066. explicit PROTOBUF_CONSTEXPR IDMsg(::PROTOBUF_NAMESPACE_ID::internal::ConstantInitialized);
  1067. IDMsg(const IDMsg& from);
  1068. IDMsg(IDMsg&& from) noexcept
  1069. :
  1070. IDMsg()
  1071. {
  1072. *this = ::std::move(from);
  1073. }
  1074. inline IDMsg& operator=(const IDMsg& from)
  1075. {
  1076. CopyFrom(from);
  1077. return *this;
  1078. }
  1079. inline IDMsg& operator=(IDMsg&& from) noexcept
  1080. {
  1081. if (this == &from)
  1082. return *this;
  1083. if (GetOwningArena() == from.GetOwningArena()
  1084. #ifdef PROTOBUF_FORCE_COPY_IN_MOVE
  1085. && GetOwningArena() != nullptr
  1086. #endif // !PROTOBUF_FORCE_COPY_IN_MOVE
  1087. )
  1088. {
  1089. InternalSwap(&from);
  1090. }
  1091. else
  1092. {
  1093. CopyFrom(from);
  1094. }
  1095. return *this;
  1096. }
  1097. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* descriptor()
  1098. {
  1099. return GetDescriptor();
  1100. }
  1101. static const ::PROTOBUF_NAMESPACE_ID::Descriptor* GetDescriptor()
  1102. {
  1103. return default_instance().GetMetadata().descriptor;
  1104. }
  1105. static const ::PROTOBUF_NAMESPACE_ID::Reflection* GetReflection()
  1106. {
  1107. return default_instance().GetMetadata().reflection;
  1108. }
  1109. static const IDMsg& default_instance()
  1110. {
  1111. return *internal_default_instance();
  1112. }
  1113. static inline const IDMsg* internal_default_instance()
  1114. {
  1115. return reinterpret_cast<const IDMsg*>(
  1116. &_IDMsg_default_instance_
  1117. );
  1118. }
  1119. static constexpr int kIndexInFileMessages =
  1120. 5;
  1121. friend void swap(IDMsg& a, IDMsg& b)
  1122. {
  1123. a.Swap(&b);
  1124. }
  1125. inline void Swap(IDMsg* other)
  1126. {
  1127. if (other == this)
  1128. return;
  1129. #ifdef PROTOBUF_FORCE_COPY_IN_SWAP
  1130. if (GetOwningArena() != nullptr &&
  1131. GetOwningArena() == other->GetOwningArena())
  1132. {
  1133. #else // PROTOBUF_FORCE_COPY_IN_SWAP
  1134. if (GetOwningArena() == other->GetOwningArena())
  1135. {
  1136. #endif // !PROTOBUF_FORCE_COPY_IN_SWAP
  1137. InternalSwap(other);
  1138. }
  1139. else
  1140. {
  1141. ::PROTOBUF_NAMESPACE_ID::internal::GenericSwap(this, other);
  1142. }
  1143. }
  1144. void UnsafeArenaSwap(IDMsg* other)
  1145. {
  1146. if (other == this)
  1147. return;
  1148. GOOGLE_DCHECK(GetOwningArena() == other->GetOwningArena());
  1149. InternalSwap(other);
  1150. }
  1151. // implements Message ----------------------------------------------
  1152. IDMsg* New(::PROTOBUF_NAMESPACE_ID::Arena* arena = nullptr) const final
  1153. {
  1154. return CreateMaybeMessage<IDMsg>(arena);
  1155. }
  1156. using ::PROTOBUF_NAMESPACE_ID::Message::CopyFrom;
  1157. void CopyFrom(const IDMsg& from);
  1158. using ::PROTOBUF_NAMESPACE_ID::Message::MergeFrom;
  1159. void MergeFrom(const IDMsg& from)
  1160. {
  1161. IDMsg::MergeImpl(*this, from);
  1162. }
  1163. private:
  1164. static void MergeImpl(::PROTOBUF_NAMESPACE_ID::Message& to_msg, const ::PROTOBUF_NAMESPACE_ID::Message& from_msg);
  1165. public:
  1166. PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
  1167. bool IsInitialized() const final;
  1168. size_t ByteSizeLong() const final;
  1169. const char* _InternalParse(const char* ptr, ::PROTOBUF_NAMESPACE_ID::internal::ParseContext* ctx) final;
  1170. uint8_t* _InternalSerialize(
  1171. uint8_t* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream
  1172. ) const final;
  1173. int GetCachedSize() const final
  1174. {
  1175. return _impl_._cached_size_.Get();
  1176. }
  1177. private:
  1178. void SharedCtor(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned);
  1179. void SharedDtor();
  1180. void SetCachedSize(int size) const final;
  1181. void InternalSwap(IDMsg* other);
  1182. private:
  1183. friend class ::PROTOBUF_NAMESPACE_ID::internal::AnyMetadata;
  1184. static ::PROTOBUF_NAMESPACE_ID::StringPiece FullMessageName()
  1185. {
  1186. return "protobuf.IDMsg";
  1187. }
  1188. protected:
  1189. explicit IDMsg(::PROTOBUF_NAMESPACE_ID::Arena* arena, bool is_message_owned = false);
  1190. public:
  1191. static const ClassData _class_data_;
  1192. const ::PROTOBUF_NAMESPACE_ID::Message::ClassData* GetClassData() const final;
  1193. ::PROTOBUF_NAMESPACE_ID::Metadata GetMetadata() const final;
  1194. // nested types ----------------------------------------------------
  1195. // accessors -------------------------------------------------------
  1196. enum : int
  1197. {
  1198. kPlayerIdFieldNumber = 1,
  1199. };
  1200. // int64 player_id = 1;
  1201. void clear_player_id();
  1202. int64_t player_id() const;
  1203. void set_player_id(int64_t value);
  1204. private:
  1205. int64_t _internal_player_id() const;
  1206. void _internal_set_player_id(int64_t value);
  1207. public:
  1208. // @@protoc_insertion_point(class_scope:protobuf.IDMsg)
  1209. private:
  1210. class _Internal;
  1211. template<typename T>
  1212. friend class ::PROTOBUF_NAMESPACE_ID::Arena::InternalHelper;
  1213. typedef void InternalArenaConstructable_;
  1214. typedef void DestructorSkippable_;
  1215. struct Impl_
  1216. {
  1217. int64_t player_id_;
  1218. mutable ::PROTOBUF_NAMESPACE_ID::internal::CachedSize _cached_size_;
  1219. };
  1220. union
  1221. {
  1222. Impl_ _impl_;
  1223. };
  1224. friend struct ::TableStruct_Message2Server_2eproto;
  1225. };
  1226. // ===================================================================
  1227. // ===================================================================
  1228. #ifdef __GNUC__
  1229. #pragma GCC diagnostic push
  1230. #pragma GCC diagnostic ignored "-Wstrict-aliasing"
  1231. #endif // __GNUC__
  1232. // PlayerMsg
  1233. // int64 player_id = 1;
  1234. inline void PlayerMsg::clear_player_id()
  1235. {
  1236. _impl_.player_id_ = int64_t{0};
  1237. }
  1238. inline int64_t PlayerMsg::_internal_player_id() const
  1239. {
  1240. return _impl_.player_id_;
  1241. }
  1242. inline int64_t PlayerMsg::player_id() const
  1243. {
  1244. // @@protoc_insertion_point(field_get:protobuf.PlayerMsg.player_id)
  1245. return _internal_player_id();
  1246. }
  1247. inline void PlayerMsg::_internal_set_player_id(int64_t value)
  1248. {
  1249. _impl_.player_id_ = value;
  1250. }
  1251. inline void PlayerMsg::set_player_id(int64_t value)
  1252. {
  1253. _internal_set_player_id(value);
  1254. // @@protoc_insertion_point(field_set:protobuf.PlayerMsg.player_id)
  1255. }
  1256. // .protobuf.PlayerType player_type = 2;
  1257. inline void PlayerMsg::clear_player_type()
  1258. {
  1259. _impl_.player_type_ = 0;
  1260. }
  1261. inline ::protobuf::PlayerType PlayerMsg::_internal_player_type() const
  1262. {
  1263. return static_cast<::protobuf::PlayerType>(_impl_.player_type_);
  1264. }
  1265. inline ::protobuf::PlayerType PlayerMsg::player_type() const
  1266. {
  1267. // @@protoc_insertion_point(field_get:protobuf.PlayerMsg.player_type)
  1268. return _internal_player_type();
  1269. }
  1270. inline void PlayerMsg::_internal_set_player_type(::protobuf::PlayerType value)
  1271. {
  1272. _impl_.player_type_ = value;
  1273. }
  1274. inline void PlayerMsg::set_player_type(::protobuf::PlayerType value)
  1275. {
  1276. _internal_set_player_type(value);
  1277. // @@protoc_insertion_point(field_set:protobuf.PlayerMsg.player_type)
  1278. }
  1279. // .protobuf.HumanType human_type = 3;
  1280. inline bool PlayerMsg::_internal_has_human_type() const
  1281. {
  1282. return job_type_case() == kHumanType;
  1283. }
  1284. inline bool PlayerMsg::has_human_type() const
  1285. {
  1286. return _internal_has_human_type();
  1287. }
  1288. inline void PlayerMsg::set_has_human_type()
  1289. {
  1290. _impl_._oneof_case_[0] = kHumanType;
  1291. }
  1292. inline void PlayerMsg::clear_human_type()
  1293. {
  1294. if (_internal_has_human_type())
  1295. {
  1296. _impl_.job_type_.human_type_ = 0;
  1297. clear_has_job_type();
  1298. }
  1299. }
  1300. inline ::protobuf::HumanType PlayerMsg::_internal_human_type() const
  1301. {
  1302. if (_internal_has_human_type())
  1303. {
  1304. return static_cast<::protobuf::HumanType>(_impl_.job_type_.human_type_);
  1305. }
  1306. return static_cast<::protobuf::HumanType>(0);
  1307. }
  1308. inline ::protobuf::HumanType PlayerMsg::human_type() const
  1309. {
  1310. // @@protoc_insertion_point(field_get:protobuf.PlayerMsg.human_type)
  1311. return _internal_human_type();
  1312. }
  1313. inline void PlayerMsg::_internal_set_human_type(::protobuf::HumanType value)
  1314. {
  1315. if (!_internal_has_human_type())
  1316. {
  1317. clear_job_type();
  1318. set_has_human_type();
  1319. }
  1320. _impl_.job_type_.human_type_ = value;
  1321. }
  1322. inline void PlayerMsg::set_human_type(::protobuf::HumanType value)
  1323. {
  1324. _internal_set_human_type(value);
  1325. // @@protoc_insertion_point(field_set:protobuf.PlayerMsg.human_type)
  1326. }
  1327. // .protobuf.ButcherType butcher_type = 4;
  1328. inline bool PlayerMsg::_internal_has_butcher_type() const
  1329. {
  1330. return job_type_case() == kButcherType;
  1331. }
  1332. inline bool PlayerMsg::has_butcher_type() const
  1333. {
  1334. return _internal_has_butcher_type();
  1335. }
  1336. inline void PlayerMsg::set_has_butcher_type()
  1337. {
  1338. _impl_._oneof_case_[0] = kButcherType;
  1339. }
  1340. inline void PlayerMsg::clear_butcher_type()
  1341. {
  1342. if (_internal_has_butcher_type())
  1343. {
  1344. _impl_.job_type_.butcher_type_ = 0;
  1345. clear_has_job_type();
  1346. }
  1347. }
  1348. inline ::protobuf::ButcherType PlayerMsg::_internal_butcher_type() const
  1349. {
  1350. if (_internal_has_butcher_type())
  1351. {
  1352. return static_cast<::protobuf::ButcherType>(_impl_.job_type_.butcher_type_);
  1353. }
  1354. return static_cast<::protobuf::ButcherType>(0);
  1355. }
  1356. inline ::protobuf::ButcherType PlayerMsg::butcher_type() const
  1357. {
  1358. // @@protoc_insertion_point(field_get:protobuf.PlayerMsg.butcher_type)
  1359. return _internal_butcher_type();
  1360. }
  1361. inline void PlayerMsg::_internal_set_butcher_type(::protobuf::ButcherType value)
  1362. {
  1363. if (!_internal_has_butcher_type())
  1364. {
  1365. clear_job_type();
  1366. set_has_butcher_type();
  1367. }
  1368. _impl_.job_type_.butcher_type_ = value;
  1369. }
  1370. inline void PlayerMsg::set_butcher_type(::protobuf::ButcherType value)
  1371. {
  1372. _internal_set_butcher_type(value);
  1373. // @@protoc_insertion_point(field_set:protobuf.PlayerMsg.butcher_type)
  1374. }
  1375. inline bool PlayerMsg::has_job_type() const
  1376. {
  1377. return job_type_case() != JOB_TYPE_NOT_SET;
  1378. }
  1379. inline void PlayerMsg::clear_has_job_type()
  1380. {
  1381. _impl_._oneof_case_[0] = JOB_TYPE_NOT_SET;
  1382. }
  1383. inline PlayerMsg::JobTypeCase PlayerMsg::job_type_case() const
  1384. {
  1385. return PlayerMsg::JobTypeCase(_impl_._oneof_case_[0]);
  1386. }
  1387. // -------------------------------------------------------------------
  1388. // MoveMsg
  1389. // int64 player_id = 1;
  1390. inline void MoveMsg::clear_player_id()
  1391. {
  1392. _impl_.player_id_ = int64_t{0};
  1393. }
  1394. inline int64_t MoveMsg::_internal_player_id() const
  1395. {
  1396. return _impl_.player_id_;
  1397. }
  1398. inline int64_t MoveMsg::player_id() const
  1399. {
  1400. // @@protoc_insertion_point(field_get:protobuf.MoveMsg.player_id)
  1401. return _internal_player_id();
  1402. }
  1403. inline void MoveMsg::_internal_set_player_id(int64_t value)
  1404. {
  1405. _impl_.player_id_ = value;
  1406. }
  1407. inline void MoveMsg::set_player_id(int64_t value)
  1408. {
  1409. _internal_set_player_id(value);
  1410. // @@protoc_insertion_point(field_set:protobuf.MoveMsg.player_id)
  1411. }
  1412. // double angle = 2;
  1413. inline void MoveMsg::clear_angle()
  1414. {
  1415. _impl_.angle_ = 0;
  1416. }
  1417. inline double MoveMsg::_internal_angle() const
  1418. {
  1419. return _impl_.angle_;
  1420. }
  1421. inline double MoveMsg::angle() const
  1422. {
  1423. // @@protoc_insertion_point(field_get:protobuf.MoveMsg.angle)
  1424. return _internal_angle();
  1425. }
  1426. inline void MoveMsg::_internal_set_angle(double value)
  1427. {
  1428. _impl_.angle_ = value;
  1429. }
  1430. inline void MoveMsg::set_angle(double value)
  1431. {
  1432. _internal_set_angle(value);
  1433. // @@protoc_insertion_point(field_set:protobuf.MoveMsg.angle)
  1434. }
  1435. // int64 time_in_milliseconds = 3;
  1436. inline void MoveMsg::clear_time_in_milliseconds()
  1437. {
  1438. _impl_.time_in_milliseconds_ = int64_t{0};
  1439. }
  1440. inline int64_t MoveMsg::_internal_time_in_milliseconds() const
  1441. {
  1442. return _impl_.time_in_milliseconds_;
  1443. }
  1444. inline int64_t MoveMsg::time_in_milliseconds() const
  1445. {
  1446. // @@protoc_insertion_point(field_get:protobuf.MoveMsg.time_in_milliseconds)
  1447. return _internal_time_in_milliseconds();
  1448. }
  1449. inline void MoveMsg::_internal_set_time_in_milliseconds(int64_t value)
  1450. {
  1451. _impl_.time_in_milliseconds_ = value;
  1452. }
  1453. inline void MoveMsg::set_time_in_milliseconds(int64_t value)
  1454. {
  1455. _internal_set_time_in_milliseconds(value);
  1456. // @@protoc_insertion_point(field_set:protobuf.MoveMsg.time_in_milliseconds)
  1457. }
  1458. // -------------------------------------------------------------------
  1459. // PickMsg
  1460. // int64 player_id = 1;
  1461. inline void PickMsg::clear_player_id()
  1462. {
  1463. _impl_.player_id_ = int64_t{0};
  1464. }
  1465. inline int64_t PickMsg::_internal_player_id() const
  1466. {
  1467. return _impl_.player_id_;
  1468. }
  1469. inline int64_t PickMsg::player_id() const
  1470. {
  1471. // @@protoc_insertion_point(field_get:protobuf.PickMsg.player_id)
  1472. return _internal_player_id();
  1473. }
  1474. inline void PickMsg::_internal_set_player_id(int64_t value)
  1475. {
  1476. _impl_.player_id_ = value;
  1477. }
  1478. inline void PickMsg::set_player_id(int64_t value)
  1479. {
  1480. _internal_set_player_id(value);
  1481. // @@protoc_insertion_point(field_set:protobuf.PickMsg.player_id)
  1482. }
  1483. // .protobuf.PropType prop_type = 2;
  1484. inline void PickMsg::clear_prop_type()
  1485. {
  1486. _impl_.prop_type_ = 0;
  1487. }
  1488. inline ::protobuf::PropType PickMsg::_internal_prop_type() const
  1489. {
  1490. return static_cast<::protobuf::PropType>(_impl_.prop_type_);
  1491. }
  1492. inline ::protobuf::PropType PickMsg::prop_type() const
  1493. {
  1494. // @@protoc_insertion_point(field_get:protobuf.PickMsg.prop_type)
  1495. return _internal_prop_type();
  1496. }
  1497. inline void PickMsg::_internal_set_prop_type(::protobuf::PropType value)
  1498. {
  1499. _impl_.prop_type_ = value;
  1500. }
  1501. inline void PickMsg::set_prop_type(::protobuf::PropType value)
  1502. {
  1503. _internal_set_prop_type(value);
  1504. // @@protoc_insertion_point(field_set:protobuf.PickMsg.prop_type)
  1505. }
  1506. // -------------------------------------------------------------------
  1507. // SendMsg
  1508. // int64 player_id = 1;
  1509. inline void SendMsg::clear_player_id()
  1510. {
  1511. _impl_.player_id_ = int64_t{0};
  1512. }
  1513. inline int64_t SendMsg::_internal_player_id() const
  1514. {
  1515. return _impl_.player_id_;
  1516. }
  1517. inline int64_t SendMsg::player_id() const
  1518. {
  1519. // @@protoc_insertion_point(field_get:protobuf.SendMsg.player_id)
  1520. return _internal_player_id();
  1521. }
  1522. inline void SendMsg::_internal_set_player_id(int64_t value)
  1523. {
  1524. _impl_.player_id_ = value;
  1525. }
  1526. inline void SendMsg::set_player_id(int64_t value)
  1527. {
  1528. _internal_set_player_id(value);
  1529. // @@protoc_insertion_point(field_set:protobuf.SendMsg.player_id)
  1530. }
  1531. // int64 to_player_id = 2;
  1532. inline void SendMsg::clear_to_player_id()
  1533. {
  1534. _impl_.to_player_id_ = int64_t{0};
  1535. }
  1536. inline int64_t SendMsg::_internal_to_player_id() const
  1537. {
  1538. return _impl_.to_player_id_;
  1539. }
  1540. inline int64_t SendMsg::to_player_id() const
  1541. {
  1542. // @@protoc_insertion_point(field_get:protobuf.SendMsg.to_player_id)
  1543. return _internal_to_player_id();
  1544. }
  1545. inline void SendMsg::_internal_set_to_player_id(int64_t value)
  1546. {
  1547. _impl_.to_player_id_ = value;
  1548. }
  1549. inline void SendMsg::set_to_player_id(int64_t value)
  1550. {
  1551. _internal_set_to_player_id(value);
  1552. // @@protoc_insertion_point(field_set:protobuf.SendMsg.to_player_id)
  1553. }
  1554. // string message = 3;
  1555. inline void SendMsg::clear_message()
  1556. {
  1557. _impl_.message_.ClearToEmpty();
  1558. }
  1559. inline const std::string& SendMsg::message() const
  1560. {
  1561. // @@protoc_insertion_point(field_get:protobuf.SendMsg.message)
  1562. return _internal_message();
  1563. }
  1564. template<typename ArgT0, typename... ArgT>
  1565. inline PROTOBUF_ALWAYS_INLINE void SendMsg::set_message(ArgT0&& arg0, ArgT... args)
  1566. {
  1567. _impl_.message_.Set(static_cast<ArgT0&&>(arg0), args..., GetArenaForAllocation());
  1568. // @@protoc_insertion_point(field_set:protobuf.SendMsg.message)
  1569. }
  1570. inline std::string* SendMsg::mutable_message()
  1571. {
  1572. std::string* _s = _internal_mutable_message();
  1573. // @@protoc_insertion_point(field_mutable:protobuf.SendMsg.message)
  1574. return _s;
  1575. }
  1576. inline const std::string& SendMsg::_internal_message() const
  1577. {
  1578. return _impl_.message_.Get();
  1579. }
  1580. inline void SendMsg::_internal_set_message(const std::string& value)
  1581. {
  1582. _impl_.message_.Set(value, GetArenaForAllocation());
  1583. }
  1584. inline std::string* SendMsg::_internal_mutable_message()
  1585. {
  1586. return _impl_.message_.Mutable(GetArenaForAllocation());
  1587. }
  1588. inline std::string* SendMsg::release_message()
  1589. {
  1590. // @@protoc_insertion_point(field_release:protobuf.SendMsg.message)
  1591. return _impl_.message_.Release();
  1592. }
  1593. inline void SendMsg::set_allocated_message(std::string* message)
  1594. {
  1595. if (message != nullptr)
  1596. {
  1597. }
  1598. else
  1599. {
  1600. }
  1601. _impl_.message_.SetAllocated(message, GetArenaForAllocation());
  1602. #ifdef PROTOBUF_FORCE_COPY_DEFAULT_STRING
  1603. if (_impl_.message_.IsDefault())
  1604. {
  1605. _impl_.message_.Set("", GetArenaForAllocation());
  1606. }
  1607. #endif // PROTOBUF_FORCE_COPY_DEFAULT_STRING
  1608. // @@protoc_insertion_point(field_set_allocated:protobuf.SendMsg.message)
  1609. }
  1610. // -------------------------------------------------------------------
  1611. // AttackMsg
  1612. // int64 player_id = 1;
  1613. inline void AttackMsg::clear_player_id()
  1614. {
  1615. _impl_.player_id_ = int64_t{0};
  1616. }
  1617. inline int64_t AttackMsg::_internal_player_id() const
  1618. {
  1619. return _impl_.player_id_;
  1620. }
  1621. inline int64_t AttackMsg::player_id() const
  1622. {
  1623. // @@protoc_insertion_point(field_get:protobuf.AttackMsg.player_id)
  1624. return _internal_player_id();
  1625. }
  1626. inline void AttackMsg::_internal_set_player_id(int64_t value)
  1627. {
  1628. _impl_.player_id_ = value;
  1629. }
  1630. inline void AttackMsg::set_player_id(int64_t value)
  1631. {
  1632. _internal_set_player_id(value);
  1633. // @@protoc_insertion_point(field_set:protobuf.AttackMsg.player_id)
  1634. }
  1635. // double angle = 2;
  1636. inline void AttackMsg::clear_angle()
  1637. {
  1638. _impl_.angle_ = 0;
  1639. }
  1640. inline double AttackMsg::_internal_angle() const
  1641. {
  1642. return _impl_.angle_;
  1643. }
  1644. inline double AttackMsg::angle() const
  1645. {
  1646. // @@protoc_insertion_point(field_get:protobuf.AttackMsg.angle)
  1647. return _internal_angle();
  1648. }
  1649. inline void AttackMsg::_internal_set_angle(double value)
  1650. {
  1651. _impl_.angle_ = value;
  1652. }
  1653. inline void AttackMsg::set_angle(double value)
  1654. {
  1655. _internal_set_angle(value);
  1656. // @@protoc_insertion_point(field_set:protobuf.AttackMsg.angle)
  1657. }
  1658. // -------------------------------------------------------------------
  1659. // IDMsg
  1660. // int64 player_id = 1;
  1661. inline void IDMsg::clear_player_id()
  1662. {
  1663. _impl_.player_id_ = int64_t{0};
  1664. }
  1665. inline int64_t IDMsg::_internal_player_id() const
  1666. {
  1667. return _impl_.player_id_;
  1668. }
  1669. inline int64_t IDMsg::player_id() const
  1670. {
  1671. // @@protoc_insertion_point(field_get:protobuf.IDMsg.player_id)
  1672. return _internal_player_id();
  1673. }
  1674. inline void IDMsg::_internal_set_player_id(int64_t value)
  1675. {
  1676. _impl_.player_id_ = value;
  1677. }
  1678. inline void IDMsg::set_player_id(int64_t value)
  1679. {
  1680. _internal_set_player_id(value);
  1681. // @@protoc_insertion_point(field_set:protobuf.IDMsg.player_id)
  1682. }
  1683. #ifdef __GNUC__
  1684. #pragma GCC diagnostic pop
  1685. #endif // __GNUC__
  1686. // -------------------------------------------------------------------
  1687. // -------------------------------------------------------------------
  1688. // -------------------------------------------------------------------
  1689. // -------------------------------------------------------------------
  1690. // -------------------------------------------------------------------
  1691. // @@protoc_insertion_point(namespace_scope)
  1692. } // namespace protobuf
  1693. // @@protoc_insertion_point(global_scope)
  1694. #include <google/protobuf/port_undef.inc>
  1695. #endif // GOOGLE_PROTOBUF_INCLUDED_GOOGLE_PROTOBUF_INCLUDED_Message2Server_2eproto