table.pb.h 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349
  1. // Generated by the protocol buffer compiler. DO NOT EDIT!
  2. // source: table.proto
  3. #ifndef PROTOBUF_table_2eproto__INCLUDED
  4. #define PROTOBUF_table_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 3005001 < GOOGLE_PROTOBUF_MIN_PROTOC_VERSION
  13. #error This file was generated by an older version of protoc which is
  14. #error incompatible with your Protocol Buffer headers. Please
  15. #error regenerate this file with a newer version of protoc.
  16. #endif
  17. #include <google/protobuf/io/coded_stream.h>
  18. #include <google/protobuf/arena.h>
  19. #include <google/protobuf/arenastring.h>
  20. #include <google/protobuf/generated_message_table_driven.h>
  21. #include <google/protobuf/generated_message_util.h>
  22. #include <google/protobuf/metadata.h>
  23. #include <google/protobuf/message.h>
  24. #include <google/protobuf/repeated_field.h> // IWYU pragma: export
  25. #include <google/protobuf/extension_set.h> // IWYU pragma: export
  26. #include <google/protobuf/unknown_field_set.h>
  27. // @@protoc_insertion_point(includes)
  28. namespace protobuf_table_2eproto {
  29. // Internal implementation detail -- do not use these members.
  30. struct TableStruct {
  31. static const ::google::protobuf::internal::ParseTableField entries[];
  32. static const ::google::protobuf::internal::AuxillaryParseTableField aux[];
  33. static const ::google::protobuf::internal::ParseTable schema[6];
  34. static const ::google::protobuf::internal::FieldMetadata field_metadata[];
  35. static const ::google::protobuf::internal::SerializationTable serialization_table[];
  36. static const ::google::protobuf::uint32 offsets[];
  37. };
  38. void AddDescriptors();
  39. void InitDefaultscomplieServerImpl();
  40. void InitDefaultscomplieServer();
  41. void InitDefaultslistServerImpl();
  42. void InitDefaultslistServer();
  43. void InitDefaultslistEndFlagImpl();
  44. void InitDefaultslistEndFlag();
  45. void InitDefaultsmodelImpl();
  46. void InitDefaultsmodel();
  47. void InitDefaultslistModelImpl();
  48. void InitDefaultslistModel();
  49. void InitDefaultsmodelContentImpl();
  50. void InitDefaultsmodelContent();
  51. inline void InitDefaults() {
  52. InitDefaultscomplieServer();
  53. InitDefaultslistServer();
  54. InitDefaultslistEndFlag();
  55. InitDefaultsmodel();
  56. InitDefaultslistModel();
  57. InitDefaultsmodelContent();
  58. }
  59. } // namespace protobuf_table_2eproto
  60. namespace satdDatabase {
  61. class complieServer;
  62. class complieServerDefaultTypeInternal;
  63. extern complieServerDefaultTypeInternal _complieServer_default_instance_;
  64. class listEndFlag;
  65. class listEndFlagDefaultTypeInternal;
  66. extern listEndFlagDefaultTypeInternal _listEndFlag_default_instance_;
  67. class listModel;
  68. class listModelDefaultTypeInternal;
  69. extern listModelDefaultTypeInternal _listModel_default_instance_;
  70. class listServer;
  71. class listServerDefaultTypeInternal;
  72. extern listServerDefaultTypeInternal _listServer_default_instance_;
  73. class model;
  74. class modelDefaultTypeInternal;
  75. extern modelDefaultTypeInternal _model_default_instance_;
  76. class modelContent;
  77. class modelContentDefaultTypeInternal;
  78. extern modelContentDefaultTypeInternal _modelContent_default_instance_;
  79. } // namespace satdDatabase
  80. namespace satdDatabase {
  81. // ===================================================================
  82. class complieServer : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:satdDatabase.complieServer) */ {
  83. public:
  84. complieServer();
  85. virtual ~complieServer();
  86. complieServer(const complieServer& from);
  87. inline complieServer& operator=(const complieServer& from) {
  88. CopyFrom(from);
  89. return *this;
  90. }
  91. #if LANG_CXX11
  92. complieServer(complieServer&& from) noexcept
  93. : complieServer() {
  94. *this = ::std::move(from);
  95. }
  96. inline complieServer& operator=(complieServer&& from) noexcept {
  97. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  98. if (this != &from) InternalSwap(&from);
  99. } else {
  100. CopyFrom(from);
  101. }
  102. return *this;
  103. }
  104. #endif
  105. static const ::google::protobuf::Descriptor* descriptor();
  106. static const complieServer& default_instance();
  107. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  108. static inline const complieServer* internal_default_instance() {
  109. return reinterpret_cast<const complieServer*>(
  110. &_complieServer_default_instance_);
  111. }
  112. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  113. 0;
  114. void Swap(complieServer* other);
  115. friend void swap(complieServer& a, complieServer& b) {
  116. a.Swap(&b);
  117. }
  118. // implements Message ----------------------------------------------
  119. inline complieServer* New() const PROTOBUF_FINAL { return New(NULL); }
  120. complieServer* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  121. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  122. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  123. void CopyFrom(const complieServer& from);
  124. void MergeFrom(const complieServer& from);
  125. void Clear() PROTOBUF_FINAL;
  126. bool IsInitialized() const PROTOBUF_FINAL;
  127. size_t ByteSizeLong() const PROTOBUF_FINAL;
  128. bool MergePartialFromCodedStream(
  129. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  130. void SerializeWithCachedSizes(
  131. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  132. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  133. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  134. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  135. private:
  136. void SharedCtor();
  137. void SharedDtor();
  138. void SetCachedSize(int size) const PROTOBUF_FINAL;
  139. void InternalSwap(complieServer* other);
  140. private:
  141. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  142. return NULL;
  143. }
  144. inline void* MaybeArenaPtr() const {
  145. return NULL;
  146. }
  147. public:
  148. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  149. // nested types ----------------------------------------------------
  150. // accessors -------------------------------------------------------
  151. // string server = 1;
  152. void clear_server();
  153. static const int kServerFieldNumber = 1;
  154. const ::std::string& server() const;
  155. void set_server(const ::std::string& value);
  156. #if LANG_CXX11
  157. void set_server(::std::string&& value);
  158. #endif
  159. void set_server(const char* value);
  160. void set_server(const char* value, size_t size);
  161. ::std::string* mutable_server();
  162. ::std::string* release_server();
  163. void set_allocated_server(::std::string* server);
  164. // string user = 2;
  165. void clear_user();
  166. static const int kUserFieldNumber = 2;
  167. const ::std::string& user() const;
  168. void set_user(const ::std::string& value);
  169. #if LANG_CXX11
  170. void set_user(::std::string&& value);
  171. #endif
  172. void set_user(const char* value);
  173. void set_user(const char* value, size_t size);
  174. ::std::string* mutable_user();
  175. ::std::string* release_user();
  176. void set_allocated_user(::std::string* user);
  177. // string password = 3;
  178. void clear_password();
  179. static const int kPasswordFieldNumber = 3;
  180. const ::std::string& password() const;
  181. void set_password(const ::std::string& value);
  182. #if LANG_CXX11
  183. void set_password(::std::string&& value);
  184. #endif
  185. void set_password(const char* value);
  186. void set_password(const char* value, size_t size);
  187. ::std::string* mutable_password();
  188. ::std::string* release_password();
  189. void set_allocated_password(::std::string* password);
  190. // @@protoc_insertion_point(class_scope:satdDatabase.complieServer)
  191. private:
  192. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  193. ::google::protobuf::internal::ArenaStringPtr server_;
  194. ::google::protobuf::internal::ArenaStringPtr user_;
  195. ::google::protobuf::internal::ArenaStringPtr password_;
  196. mutable int _cached_size_;
  197. friend struct ::protobuf_table_2eproto::TableStruct;
  198. friend void ::protobuf_table_2eproto::InitDefaultscomplieServerImpl();
  199. };
  200. // -------------------------------------------------------------------
  201. class listServer : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:satdDatabase.listServer) */ {
  202. public:
  203. listServer();
  204. virtual ~listServer();
  205. listServer(const listServer& from);
  206. inline listServer& operator=(const listServer& from) {
  207. CopyFrom(from);
  208. return *this;
  209. }
  210. #if LANG_CXX11
  211. listServer(listServer&& from) noexcept
  212. : listServer() {
  213. *this = ::std::move(from);
  214. }
  215. inline listServer& operator=(listServer&& from) noexcept {
  216. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  217. if (this != &from) InternalSwap(&from);
  218. } else {
  219. CopyFrom(from);
  220. }
  221. return *this;
  222. }
  223. #endif
  224. static const ::google::protobuf::Descriptor* descriptor();
  225. static const listServer& default_instance();
  226. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  227. static inline const listServer* internal_default_instance() {
  228. return reinterpret_cast<const listServer*>(
  229. &_listServer_default_instance_);
  230. }
  231. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  232. 1;
  233. void Swap(listServer* other);
  234. friend void swap(listServer& a, listServer& b) {
  235. a.Swap(&b);
  236. }
  237. // implements Message ----------------------------------------------
  238. inline listServer* New() const PROTOBUF_FINAL { return New(NULL); }
  239. listServer* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  240. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  241. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  242. void CopyFrom(const listServer& from);
  243. void MergeFrom(const listServer& from);
  244. void Clear() PROTOBUF_FINAL;
  245. bool IsInitialized() const PROTOBUF_FINAL;
  246. size_t ByteSizeLong() const PROTOBUF_FINAL;
  247. bool MergePartialFromCodedStream(
  248. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  249. void SerializeWithCachedSizes(
  250. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  251. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  252. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  253. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  254. private:
  255. void SharedCtor();
  256. void SharedDtor();
  257. void SetCachedSize(int size) const PROTOBUF_FINAL;
  258. void InternalSwap(listServer* other);
  259. private:
  260. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  261. return NULL;
  262. }
  263. inline void* MaybeArenaPtr() const {
  264. return NULL;
  265. }
  266. public:
  267. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  268. // nested types ----------------------------------------------------
  269. // accessors -------------------------------------------------------
  270. // repeated .satdDatabase.complieServer servers = 4;
  271. int servers_size() const;
  272. void clear_servers();
  273. static const int kServersFieldNumber = 4;
  274. const ::satdDatabase::complieServer& servers(int index) const;
  275. ::satdDatabase::complieServer* mutable_servers(int index);
  276. ::satdDatabase::complieServer* add_servers();
  277. ::google::protobuf::RepeatedPtrField< ::satdDatabase::complieServer >*
  278. mutable_servers();
  279. const ::google::protobuf::RepeatedPtrField< ::satdDatabase::complieServer >&
  280. servers() const;
  281. // @@protoc_insertion_point(class_scope:satdDatabase.listServer)
  282. private:
  283. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  284. ::google::protobuf::RepeatedPtrField< ::satdDatabase::complieServer > servers_;
  285. mutable int _cached_size_;
  286. friend struct ::protobuf_table_2eproto::TableStruct;
  287. friend void ::protobuf_table_2eproto::InitDefaultslistServerImpl();
  288. };
  289. // -------------------------------------------------------------------
  290. class listEndFlag : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:satdDatabase.listEndFlag) */ {
  291. public:
  292. listEndFlag();
  293. virtual ~listEndFlag();
  294. listEndFlag(const listEndFlag& from);
  295. inline listEndFlag& operator=(const listEndFlag& from) {
  296. CopyFrom(from);
  297. return *this;
  298. }
  299. #if LANG_CXX11
  300. listEndFlag(listEndFlag&& from) noexcept
  301. : listEndFlag() {
  302. *this = ::std::move(from);
  303. }
  304. inline listEndFlag& operator=(listEndFlag&& from) noexcept {
  305. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  306. if (this != &from) InternalSwap(&from);
  307. } else {
  308. CopyFrom(from);
  309. }
  310. return *this;
  311. }
  312. #endif
  313. static const ::google::protobuf::Descriptor* descriptor();
  314. static const listEndFlag& default_instance();
  315. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  316. static inline const listEndFlag* internal_default_instance() {
  317. return reinterpret_cast<const listEndFlag*>(
  318. &_listEndFlag_default_instance_);
  319. }
  320. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  321. 2;
  322. void Swap(listEndFlag* other);
  323. friend void swap(listEndFlag& a, listEndFlag& b) {
  324. a.Swap(&b);
  325. }
  326. // implements Message ----------------------------------------------
  327. inline listEndFlag* New() const PROTOBUF_FINAL { return New(NULL); }
  328. listEndFlag* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  329. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  330. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  331. void CopyFrom(const listEndFlag& from);
  332. void MergeFrom(const listEndFlag& from);
  333. void Clear() PROTOBUF_FINAL;
  334. bool IsInitialized() const PROTOBUF_FINAL;
  335. size_t ByteSizeLong() const PROTOBUF_FINAL;
  336. bool MergePartialFromCodedStream(
  337. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  338. void SerializeWithCachedSizes(
  339. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  340. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  341. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  342. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  343. private:
  344. void SharedCtor();
  345. void SharedDtor();
  346. void SetCachedSize(int size) const PROTOBUF_FINAL;
  347. void InternalSwap(listEndFlag* other);
  348. private:
  349. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  350. return NULL;
  351. }
  352. inline void* MaybeArenaPtr() const {
  353. return NULL;
  354. }
  355. public:
  356. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  357. // nested types ----------------------------------------------------
  358. // accessors -------------------------------------------------------
  359. // repeated string terminator = 5;
  360. int terminator_size() const;
  361. void clear_terminator();
  362. static const int kTerminatorFieldNumber = 5;
  363. const ::std::string& terminator(int index) const;
  364. ::std::string* mutable_terminator(int index);
  365. void set_terminator(int index, const ::std::string& value);
  366. #if LANG_CXX11
  367. void set_terminator(int index, ::std::string&& value);
  368. #endif
  369. void set_terminator(int index, const char* value);
  370. void set_terminator(int index, const char* value, size_t size);
  371. ::std::string* add_terminator();
  372. void add_terminator(const ::std::string& value);
  373. #if LANG_CXX11
  374. void add_terminator(::std::string&& value);
  375. #endif
  376. void add_terminator(const char* value);
  377. void add_terminator(const char* value, size_t size);
  378. const ::google::protobuf::RepeatedPtrField< ::std::string>& terminator() const;
  379. ::google::protobuf::RepeatedPtrField< ::std::string>* mutable_terminator();
  380. // @@protoc_insertion_point(class_scope:satdDatabase.listEndFlag)
  381. private:
  382. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  383. ::google::protobuf::RepeatedPtrField< ::std::string> terminator_;
  384. mutable int _cached_size_;
  385. friend struct ::protobuf_table_2eproto::TableStruct;
  386. friend void ::protobuf_table_2eproto::InitDefaultslistEndFlagImpl();
  387. };
  388. // -------------------------------------------------------------------
  389. class model : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:satdDatabase.model) */ {
  390. public:
  391. model();
  392. virtual ~model();
  393. model(const model& from);
  394. inline model& operator=(const model& from) {
  395. CopyFrom(from);
  396. return *this;
  397. }
  398. #if LANG_CXX11
  399. model(model&& from) noexcept
  400. : model() {
  401. *this = ::std::move(from);
  402. }
  403. inline model& operator=(model&& from) noexcept {
  404. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  405. if (this != &from) InternalSwap(&from);
  406. } else {
  407. CopyFrom(from);
  408. }
  409. return *this;
  410. }
  411. #endif
  412. static const ::google::protobuf::Descriptor* descriptor();
  413. static const model& default_instance();
  414. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  415. static inline const model* internal_default_instance() {
  416. return reinterpret_cast<const model*>(
  417. &_model_default_instance_);
  418. }
  419. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  420. 3;
  421. void Swap(model* other);
  422. friend void swap(model& a, model& b) {
  423. a.Swap(&b);
  424. }
  425. // implements Message ----------------------------------------------
  426. inline model* New() const PROTOBUF_FINAL { return New(NULL); }
  427. model* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  428. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  429. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  430. void CopyFrom(const model& from);
  431. void MergeFrom(const model& from);
  432. void Clear() PROTOBUF_FINAL;
  433. bool IsInitialized() const PROTOBUF_FINAL;
  434. size_t ByteSizeLong() const PROTOBUF_FINAL;
  435. bool MergePartialFromCodedStream(
  436. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  437. void SerializeWithCachedSizes(
  438. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  439. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  440. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  441. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  442. private:
  443. void SharedCtor();
  444. void SharedDtor();
  445. void SetCachedSize(int size) const PROTOBUF_FINAL;
  446. void InternalSwap(model* other);
  447. private:
  448. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  449. return NULL;
  450. }
  451. inline void* MaybeArenaPtr() const {
  452. return NULL;
  453. }
  454. public:
  455. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  456. // nested types ----------------------------------------------------
  457. // accessors -------------------------------------------------------
  458. // string name = 6;
  459. void clear_name();
  460. static const int kNameFieldNumber = 6;
  461. const ::std::string& name() const;
  462. void set_name(const ::std::string& value);
  463. #if LANG_CXX11
  464. void set_name(::std::string&& value);
  465. #endif
  466. void set_name(const char* value);
  467. void set_name(const char* value, size_t size);
  468. ::std::string* mutable_name();
  469. ::std::string* release_name();
  470. void set_allocated_name(::std::string* name);
  471. // string softSuffix = 7;
  472. void clear_softsuffix();
  473. static const int kSoftSuffixFieldNumber = 7;
  474. const ::std::string& softsuffix() const;
  475. void set_softsuffix(const ::std::string& value);
  476. #if LANG_CXX11
  477. void set_softsuffix(::std::string&& value);
  478. #endif
  479. void set_softsuffix(const char* value);
  480. void set_softsuffix(const char* value, size_t size);
  481. ::std::string* mutable_softsuffix();
  482. ::std::string* release_softsuffix();
  483. void set_allocated_softsuffix(::std::string* softsuffix);
  484. // .satdDatabase.listEndFlag flags = 8;
  485. bool has_flags() const;
  486. void clear_flags();
  487. static const int kFlagsFieldNumber = 8;
  488. const ::satdDatabase::listEndFlag& flags() const;
  489. ::satdDatabase::listEndFlag* release_flags();
  490. ::satdDatabase::listEndFlag* mutable_flags();
  491. void set_allocated_flags(::satdDatabase::listEndFlag* flags);
  492. // .satdDatabase.modelContent content = 9;
  493. bool has_content() const;
  494. void clear_content();
  495. static const int kContentFieldNumber = 9;
  496. const ::satdDatabase::modelContent& content() const;
  497. ::satdDatabase::modelContent* release_content();
  498. ::satdDatabase::modelContent* mutable_content();
  499. void set_allocated_content(::satdDatabase::modelContent* content);
  500. // @@protoc_insertion_point(class_scope:satdDatabase.model)
  501. private:
  502. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  503. ::google::protobuf::internal::ArenaStringPtr name_;
  504. ::google::protobuf::internal::ArenaStringPtr softsuffix_;
  505. ::satdDatabase::listEndFlag* flags_;
  506. ::satdDatabase::modelContent* content_;
  507. mutable int _cached_size_;
  508. friend struct ::protobuf_table_2eproto::TableStruct;
  509. friend void ::protobuf_table_2eproto::InitDefaultsmodelImpl();
  510. };
  511. // -------------------------------------------------------------------
  512. class listModel : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:satdDatabase.listModel) */ {
  513. public:
  514. listModel();
  515. virtual ~listModel();
  516. listModel(const listModel& from);
  517. inline listModel& operator=(const listModel& from) {
  518. CopyFrom(from);
  519. return *this;
  520. }
  521. #if LANG_CXX11
  522. listModel(listModel&& from) noexcept
  523. : listModel() {
  524. *this = ::std::move(from);
  525. }
  526. inline listModel& operator=(listModel&& from) noexcept {
  527. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  528. if (this != &from) InternalSwap(&from);
  529. } else {
  530. CopyFrom(from);
  531. }
  532. return *this;
  533. }
  534. #endif
  535. static const ::google::protobuf::Descriptor* descriptor();
  536. static const listModel& default_instance();
  537. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  538. static inline const listModel* internal_default_instance() {
  539. return reinterpret_cast<const listModel*>(
  540. &_listModel_default_instance_);
  541. }
  542. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  543. 4;
  544. void Swap(listModel* other);
  545. friend void swap(listModel& a, listModel& b) {
  546. a.Swap(&b);
  547. }
  548. // implements Message ----------------------------------------------
  549. inline listModel* New() const PROTOBUF_FINAL { return New(NULL); }
  550. listModel* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  551. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  552. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  553. void CopyFrom(const listModel& from);
  554. void MergeFrom(const listModel& from);
  555. void Clear() PROTOBUF_FINAL;
  556. bool IsInitialized() const PROTOBUF_FINAL;
  557. size_t ByteSizeLong() const PROTOBUF_FINAL;
  558. bool MergePartialFromCodedStream(
  559. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  560. void SerializeWithCachedSizes(
  561. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  562. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  563. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  564. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  565. private:
  566. void SharedCtor();
  567. void SharedDtor();
  568. void SetCachedSize(int size) const PROTOBUF_FINAL;
  569. void InternalSwap(listModel* other);
  570. private:
  571. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  572. return NULL;
  573. }
  574. inline void* MaybeArenaPtr() const {
  575. return NULL;
  576. }
  577. public:
  578. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  579. // nested types ----------------------------------------------------
  580. // accessors -------------------------------------------------------
  581. // repeated .satdDatabase.model models = 10;
  582. int models_size() const;
  583. void clear_models();
  584. static const int kModelsFieldNumber = 10;
  585. const ::satdDatabase::model& models(int index) const;
  586. ::satdDatabase::model* mutable_models(int index);
  587. ::satdDatabase::model* add_models();
  588. ::google::protobuf::RepeatedPtrField< ::satdDatabase::model >*
  589. mutable_models();
  590. const ::google::protobuf::RepeatedPtrField< ::satdDatabase::model >&
  591. models() const;
  592. // @@protoc_insertion_point(class_scope:satdDatabase.listModel)
  593. private:
  594. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  595. ::google::protobuf::RepeatedPtrField< ::satdDatabase::model > models_;
  596. mutable int _cached_size_;
  597. friend struct ::protobuf_table_2eproto::TableStruct;
  598. friend void ::protobuf_table_2eproto::InitDefaultslistModelImpl();
  599. };
  600. // -------------------------------------------------------------------
  601. class modelContent : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:satdDatabase.modelContent) */ {
  602. public:
  603. modelContent();
  604. virtual ~modelContent();
  605. modelContent(const modelContent& from);
  606. inline modelContent& operator=(const modelContent& from) {
  607. CopyFrom(from);
  608. return *this;
  609. }
  610. #if LANG_CXX11
  611. modelContent(modelContent&& from) noexcept
  612. : modelContent() {
  613. *this = ::std::move(from);
  614. }
  615. inline modelContent& operator=(modelContent&& from) noexcept {
  616. if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
  617. if (this != &from) InternalSwap(&from);
  618. } else {
  619. CopyFrom(from);
  620. }
  621. return *this;
  622. }
  623. #endif
  624. static const ::google::protobuf::Descriptor* descriptor();
  625. static const modelContent& default_instance();
  626. static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
  627. static inline const modelContent* internal_default_instance() {
  628. return reinterpret_cast<const modelContent*>(
  629. &_modelContent_default_instance_);
  630. }
  631. static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
  632. 5;
  633. void Swap(modelContent* other);
  634. friend void swap(modelContent& a, modelContent& b) {
  635. a.Swap(&b);
  636. }
  637. // implements Message ----------------------------------------------
  638. inline modelContent* New() const PROTOBUF_FINAL { return New(NULL); }
  639. modelContent* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
  640. void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  641. void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
  642. void CopyFrom(const modelContent& from);
  643. void MergeFrom(const modelContent& from);
  644. void Clear() PROTOBUF_FINAL;
  645. bool IsInitialized() const PROTOBUF_FINAL;
  646. size_t ByteSizeLong() const PROTOBUF_FINAL;
  647. bool MergePartialFromCodedStream(
  648. ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
  649. void SerializeWithCachedSizes(
  650. ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
  651. ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
  652. bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
  653. int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
  654. private:
  655. void SharedCtor();
  656. void SharedDtor();
  657. void SetCachedSize(int size) const PROTOBUF_FINAL;
  658. void InternalSwap(modelContent* other);
  659. private:
  660. inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
  661. return NULL;
  662. }
  663. inline void* MaybeArenaPtr() const {
  664. return NULL;
  665. }
  666. public:
  667. ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
  668. // nested types ----------------------------------------------------
  669. // accessors -------------------------------------------------------
  670. // string complieTime = 11;
  671. void clear_complietime();
  672. static const int kComplieTimeFieldNumber = 11;
  673. const ::std::string& complietime() const;
  674. void set_complietime(const ::std::string& value);
  675. #if LANG_CXX11
  676. void set_complietime(::std::string&& value);
  677. #endif
  678. void set_complietime(const char* value);
  679. void set_complietime(const char* value, size_t size);
  680. ::std::string* mutable_complietime();
  681. ::std::string* release_complietime();
  682. void set_allocated_complietime(::std::string* complietime);
  683. // string projectModel = 12;
  684. void clear_projectmodel();
  685. static const int kProjectModelFieldNumber = 12;
  686. const ::std::string& projectmodel() const;
  687. void set_projectmodel(const ::std::string& value);
  688. #if LANG_CXX11
  689. void set_projectmodel(::std::string&& value);
  690. #endif
  691. void set_projectmodel(const char* value);
  692. void set_projectmodel(const char* value, size_t size);
  693. ::std::string* mutable_projectmodel();
  694. ::std::string* release_projectmodel();
  695. void set_allocated_projectmodel(::std::string* projectmodel);
  696. // string productName = 13;
  697. void clear_productname();
  698. static const int kProductNameFieldNumber = 13;
  699. const ::std::string& productname() const;
  700. void set_productname(const ::std::string& value);
  701. #if LANG_CXX11
  702. void set_productname(::std::string&& value);
  703. #endif
  704. void set_productname(const char* value);
  705. void set_productname(const char* value, size_t size);
  706. ::std::string* mutable_productname();
  707. ::std::string* release_productname();
  708. void set_allocated_productname(::std::string* productname);
  709. // string svndir = 14;
  710. void clear_svndir();
  711. static const int kSvndirFieldNumber = 14;
  712. const ::std::string& svndir() const;
  713. void set_svndir(const ::std::string& value);
  714. #if LANG_CXX11
  715. void set_svndir(::std::string&& value);
  716. #endif
  717. void set_svndir(const char* value);
  718. void set_svndir(const char* value, size_t size);
  719. ::std::string* mutable_svndir();
  720. ::std::string* release_svndir();
  721. void set_allocated_svndir(::std::string* svndir);
  722. // string command = 15;
  723. void clear_command();
  724. static const int kCommandFieldNumber = 15;
  725. const ::std::string& command() const;
  726. void set_command(const ::std::string& value);
  727. #if LANG_CXX11
  728. void set_command(::std::string&& value);
  729. #endif
  730. void set_command(const char* value);
  731. void set_command(const char* value, size_t size);
  732. ::std::string* mutable_command();
  733. ::std::string* release_command();
  734. void set_allocated_command(::std::string* command);
  735. // string projectName = 16;
  736. void clear_projectname();
  737. static const int kProjectNameFieldNumber = 16;
  738. const ::std::string& projectname() const;
  739. void set_projectname(const ::std::string& value);
  740. #if LANG_CXX11
  741. void set_projectname(::std::string&& value);
  742. #endif
  743. void set_projectname(const char* value);
  744. void set_projectname(const char* value, size_t size);
  745. ::std::string* mutable_projectname();
  746. ::std::string* release_projectname();
  747. void set_allocated_projectname(::std::string* projectname);
  748. // string projectSN = 17;
  749. void clear_projectsn();
  750. static const int kProjectSNFieldNumber = 17;
  751. const ::std::string& projectsn() const;
  752. void set_projectsn(const ::std::string& value);
  753. #if LANG_CXX11
  754. void set_projectsn(::std::string&& value);
  755. #endif
  756. void set_projectsn(const char* value);
  757. void set_projectsn(const char* value, size_t size);
  758. ::std::string* mutable_projectsn();
  759. ::std::string* release_projectsn();
  760. void set_allocated_projectsn(::std::string* projectsn);
  761. // string softVer = 18;
  762. void clear_softver();
  763. static const int kSoftVerFieldNumber = 18;
  764. const ::std::string& softver() const;
  765. void set_softver(const ::std::string& value);
  766. #if LANG_CXX11
  767. void set_softver(::std::string&& value);
  768. #endif
  769. void set_softver(const char* value);
  770. void set_softver(const char* value, size_t size);
  771. ::std::string* mutable_softver();
  772. ::std::string* release_softver();
  773. void set_allocated_softver(::std::string* softver);
  774. // string svnVer = 19;
  775. void clear_svnver();
  776. static const int kSvnVerFieldNumber = 19;
  777. const ::std::string& svnver() const;
  778. void set_svnver(const ::std::string& value);
  779. #if LANG_CXX11
  780. void set_svnver(::std::string&& value);
  781. #endif
  782. void set_svnver(const char* value);
  783. void set_svnver(const char* value, size_t size);
  784. ::std::string* mutable_svnver();
  785. ::std::string* release_svnver();
  786. void set_allocated_svnver(::std::string* svnver);
  787. // string projectID = 20;
  788. void clear_projectid();
  789. static const int kProjectIDFieldNumber = 20;
  790. const ::std::string& projectid() const;
  791. void set_projectid(const ::std::string& value);
  792. #if LANG_CXX11
  793. void set_projectid(::std::string&& value);
  794. #endif
  795. void set_projectid(const char* value);
  796. void set_projectid(const char* value, size_t size);
  797. ::std::string* mutable_projectid();
  798. ::std::string* release_projectid();
  799. void set_allocated_projectid(::std::string* projectid);
  800. // string zone = 21;
  801. void clear_zone();
  802. static const int kZoneFieldNumber = 21;
  803. const ::std::string& zone() const;
  804. void set_zone(const ::std::string& value);
  805. #if LANG_CXX11
  806. void set_zone(::std::string&& value);
  807. #endif
  808. void set_zone(const char* value);
  809. void set_zone(const char* value, size_t size);
  810. ::std::string* mutable_zone();
  811. ::std::string* release_zone();
  812. void set_allocated_zone(::std::string* zone);
  813. // string UIStyle = 22;
  814. void clear_uistyle();
  815. static const int kUIStyleFieldNumber = 22;
  816. const ::std::string& uistyle() const;
  817. void set_uistyle(const ::std::string& value);
  818. #if LANG_CXX11
  819. void set_uistyle(::std::string&& value);
  820. #endif
  821. void set_uistyle(const char* value);
  822. void set_uistyle(const char* value, size_t size);
  823. ::std::string* mutable_uistyle();
  824. ::std::string* release_uistyle();
  825. void set_allocated_uistyle(::std::string* uistyle);
  826. // string complieFileDir = 23;
  827. void clear_compliefiledir();
  828. static const int kComplieFileDirFieldNumber = 23;
  829. const ::std::string& compliefiledir() const;
  830. void set_compliefiledir(const ::std::string& value);
  831. #if LANG_CXX11
  832. void set_compliefiledir(::std::string&& value);
  833. #endif
  834. void set_compliefiledir(const char* value);
  835. void set_compliefiledir(const char* value, size_t size);
  836. ::std::string* mutable_compliefiledir();
  837. ::std::string* release_compliefiledir();
  838. void set_allocated_compliefiledir(::std::string* compliefiledir);
  839. // string userName = 24;
  840. void clear_username();
  841. static const int kUserNameFieldNumber = 24;
  842. const ::std::string& username() const;
  843. void set_username(const ::std::string& value);
  844. #if LANG_CXX11
  845. void set_username(::std::string&& value);
  846. #endif
  847. void set_username(const char* value);
  848. void set_username(const char* value, size_t size);
  849. ::std::string* mutable_username();
  850. ::std::string* release_username();
  851. void set_allocated_username(::std::string* username);
  852. // string time = 25;
  853. void clear_time();
  854. static const int kTimeFieldNumber = 25;
  855. const ::std::string& time() const;
  856. void set_time(const ::std::string& value);
  857. #if LANG_CXX11
  858. void set_time(::std::string&& value);
  859. #endif
  860. void set_time(const char* value);
  861. void set_time(const char* value, size_t size);
  862. ::std::string* mutable_time();
  863. ::std::string* release_time();
  864. void set_allocated_time(::std::string* time);
  865. // @@protoc_insertion_point(class_scope:satdDatabase.modelContent)
  866. private:
  867. ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
  868. ::google::protobuf::internal::ArenaStringPtr complietime_;
  869. ::google::protobuf::internal::ArenaStringPtr projectmodel_;
  870. ::google::protobuf::internal::ArenaStringPtr productname_;
  871. ::google::protobuf::internal::ArenaStringPtr svndir_;
  872. ::google::protobuf::internal::ArenaStringPtr command_;
  873. ::google::protobuf::internal::ArenaStringPtr projectname_;
  874. ::google::protobuf::internal::ArenaStringPtr projectsn_;
  875. ::google::protobuf::internal::ArenaStringPtr softver_;
  876. ::google::protobuf::internal::ArenaStringPtr svnver_;
  877. ::google::protobuf::internal::ArenaStringPtr projectid_;
  878. ::google::protobuf::internal::ArenaStringPtr zone_;
  879. ::google::protobuf::internal::ArenaStringPtr uistyle_;
  880. ::google::protobuf::internal::ArenaStringPtr compliefiledir_;
  881. ::google::protobuf::internal::ArenaStringPtr username_;
  882. ::google::protobuf::internal::ArenaStringPtr time_;
  883. mutable int _cached_size_;
  884. friend struct ::protobuf_table_2eproto::TableStruct;
  885. friend void ::protobuf_table_2eproto::InitDefaultsmodelContentImpl();
  886. };
  887. // ===================================================================
  888. // ===================================================================
  889. #ifdef __GNUC__
  890. #pragma GCC diagnostic push
  891. #pragma GCC diagnostic ignored "-Wstrict-aliasing"
  892. #endif // __GNUC__
  893. // complieServer
  894. // string server = 1;
  895. inline void complieServer::clear_server() {
  896. server_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  897. }
  898. inline const ::std::string& complieServer::server() const {
  899. // @@protoc_insertion_point(field_get:satdDatabase.complieServer.server)
  900. return server_.GetNoArena();
  901. }
  902. inline void complieServer::set_server(const ::std::string& value) {
  903. server_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  904. // @@protoc_insertion_point(field_set:satdDatabase.complieServer.server)
  905. }
  906. #if LANG_CXX11
  907. inline void complieServer::set_server(::std::string&& value) {
  908. server_.SetNoArena(
  909. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  910. // @@protoc_insertion_point(field_set_rvalue:satdDatabase.complieServer.server)
  911. }
  912. #endif
  913. inline void complieServer::set_server(const char* value) {
  914. GOOGLE_DCHECK(value != NULL);
  915. server_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  916. // @@protoc_insertion_point(field_set_char:satdDatabase.complieServer.server)
  917. }
  918. inline void complieServer::set_server(const char* value, size_t size) {
  919. server_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  920. ::std::string(reinterpret_cast<const char*>(value), size));
  921. // @@protoc_insertion_point(field_set_pointer:satdDatabase.complieServer.server)
  922. }
  923. inline ::std::string* complieServer::mutable_server() {
  924. // @@protoc_insertion_point(field_mutable:satdDatabase.complieServer.server)
  925. return server_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  926. }
  927. inline ::std::string* complieServer::release_server() {
  928. // @@protoc_insertion_point(field_release:satdDatabase.complieServer.server)
  929. return server_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  930. }
  931. inline void complieServer::set_allocated_server(::std::string* server) {
  932. if (server != NULL) {
  933. } else {
  934. }
  935. server_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), server);
  936. // @@protoc_insertion_point(field_set_allocated:satdDatabase.complieServer.server)
  937. }
  938. // string user = 2;
  939. inline void complieServer::clear_user() {
  940. user_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  941. }
  942. inline const ::std::string& complieServer::user() const {
  943. // @@protoc_insertion_point(field_get:satdDatabase.complieServer.user)
  944. return user_.GetNoArena();
  945. }
  946. inline void complieServer::set_user(const ::std::string& value) {
  947. user_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  948. // @@protoc_insertion_point(field_set:satdDatabase.complieServer.user)
  949. }
  950. #if LANG_CXX11
  951. inline void complieServer::set_user(::std::string&& value) {
  952. user_.SetNoArena(
  953. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  954. // @@protoc_insertion_point(field_set_rvalue:satdDatabase.complieServer.user)
  955. }
  956. #endif
  957. inline void complieServer::set_user(const char* value) {
  958. GOOGLE_DCHECK(value != NULL);
  959. user_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  960. // @@protoc_insertion_point(field_set_char:satdDatabase.complieServer.user)
  961. }
  962. inline void complieServer::set_user(const char* value, size_t size) {
  963. user_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  964. ::std::string(reinterpret_cast<const char*>(value), size));
  965. // @@protoc_insertion_point(field_set_pointer:satdDatabase.complieServer.user)
  966. }
  967. inline ::std::string* complieServer::mutable_user() {
  968. // @@protoc_insertion_point(field_mutable:satdDatabase.complieServer.user)
  969. return user_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  970. }
  971. inline ::std::string* complieServer::release_user() {
  972. // @@protoc_insertion_point(field_release:satdDatabase.complieServer.user)
  973. return user_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  974. }
  975. inline void complieServer::set_allocated_user(::std::string* user) {
  976. if (user != NULL) {
  977. } else {
  978. }
  979. user_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), user);
  980. // @@protoc_insertion_point(field_set_allocated:satdDatabase.complieServer.user)
  981. }
  982. // string password = 3;
  983. inline void complieServer::clear_password() {
  984. password_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  985. }
  986. inline const ::std::string& complieServer::password() const {
  987. // @@protoc_insertion_point(field_get:satdDatabase.complieServer.password)
  988. return password_.GetNoArena();
  989. }
  990. inline void complieServer::set_password(const ::std::string& value) {
  991. password_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  992. // @@protoc_insertion_point(field_set:satdDatabase.complieServer.password)
  993. }
  994. #if LANG_CXX11
  995. inline void complieServer::set_password(::std::string&& value) {
  996. password_.SetNoArena(
  997. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  998. // @@protoc_insertion_point(field_set_rvalue:satdDatabase.complieServer.password)
  999. }
  1000. #endif
  1001. inline void complieServer::set_password(const char* value) {
  1002. GOOGLE_DCHECK(value != NULL);
  1003. password_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  1004. // @@protoc_insertion_point(field_set_char:satdDatabase.complieServer.password)
  1005. }
  1006. inline void complieServer::set_password(const char* value, size_t size) {
  1007. password_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  1008. ::std::string(reinterpret_cast<const char*>(value), size));
  1009. // @@protoc_insertion_point(field_set_pointer:satdDatabase.complieServer.password)
  1010. }
  1011. inline ::std::string* complieServer::mutable_password() {
  1012. // @@protoc_insertion_point(field_mutable:satdDatabase.complieServer.password)
  1013. return password_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1014. }
  1015. inline ::std::string* complieServer::release_password() {
  1016. // @@protoc_insertion_point(field_release:satdDatabase.complieServer.password)
  1017. return password_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1018. }
  1019. inline void complieServer::set_allocated_password(::std::string* password) {
  1020. if (password != NULL) {
  1021. } else {
  1022. }
  1023. password_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), password);
  1024. // @@protoc_insertion_point(field_set_allocated:satdDatabase.complieServer.password)
  1025. }
  1026. // -------------------------------------------------------------------
  1027. // listServer
  1028. // repeated .satdDatabase.complieServer servers = 4;
  1029. inline int listServer::servers_size() const {
  1030. return servers_.size();
  1031. }
  1032. inline void listServer::clear_servers() {
  1033. servers_.Clear();
  1034. }
  1035. inline const ::satdDatabase::complieServer& listServer::servers(int index) const {
  1036. // @@protoc_insertion_point(field_get:satdDatabase.listServer.servers)
  1037. return servers_.Get(index);
  1038. }
  1039. inline ::satdDatabase::complieServer* listServer::mutable_servers(int index) {
  1040. // @@protoc_insertion_point(field_mutable:satdDatabase.listServer.servers)
  1041. return servers_.Mutable(index);
  1042. }
  1043. inline ::satdDatabase::complieServer* listServer::add_servers() {
  1044. // @@protoc_insertion_point(field_add:satdDatabase.listServer.servers)
  1045. return servers_.Add();
  1046. }
  1047. inline ::google::protobuf::RepeatedPtrField< ::satdDatabase::complieServer >*
  1048. listServer::mutable_servers() {
  1049. // @@protoc_insertion_point(field_mutable_list:satdDatabase.listServer.servers)
  1050. return &servers_;
  1051. }
  1052. inline const ::google::protobuf::RepeatedPtrField< ::satdDatabase::complieServer >&
  1053. listServer::servers() const {
  1054. // @@protoc_insertion_point(field_list:satdDatabase.listServer.servers)
  1055. return servers_;
  1056. }
  1057. // -------------------------------------------------------------------
  1058. // listEndFlag
  1059. // repeated string terminator = 5;
  1060. inline int listEndFlag::terminator_size() const {
  1061. return terminator_.size();
  1062. }
  1063. inline void listEndFlag::clear_terminator() {
  1064. terminator_.Clear();
  1065. }
  1066. inline const ::std::string& listEndFlag::terminator(int index) const {
  1067. // @@protoc_insertion_point(field_get:satdDatabase.listEndFlag.terminator)
  1068. return terminator_.Get(index);
  1069. }
  1070. inline ::std::string* listEndFlag::mutable_terminator(int index) {
  1071. // @@protoc_insertion_point(field_mutable:satdDatabase.listEndFlag.terminator)
  1072. return terminator_.Mutable(index);
  1073. }
  1074. inline void listEndFlag::set_terminator(int index, const ::std::string& value) {
  1075. // @@protoc_insertion_point(field_set:satdDatabase.listEndFlag.terminator)
  1076. terminator_.Mutable(index)->assign(value);
  1077. }
  1078. #if LANG_CXX11
  1079. inline void listEndFlag::set_terminator(int index, ::std::string&& value) {
  1080. // @@protoc_insertion_point(field_set:satdDatabase.listEndFlag.terminator)
  1081. terminator_.Mutable(index)->assign(std::move(value));
  1082. }
  1083. #endif
  1084. inline void listEndFlag::set_terminator(int index, const char* value) {
  1085. GOOGLE_DCHECK(value != NULL);
  1086. terminator_.Mutable(index)->assign(value);
  1087. // @@protoc_insertion_point(field_set_char:satdDatabase.listEndFlag.terminator)
  1088. }
  1089. inline void listEndFlag::set_terminator(int index, const char* value, size_t size) {
  1090. terminator_.Mutable(index)->assign(
  1091. reinterpret_cast<const char*>(value), size);
  1092. // @@protoc_insertion_point(field_set_pointer:satdDatabase.listEndFlag.terminator)
  1093. }
  1094. inline ::std::string* listEndFlag::add_terminator() {
  1095. // @@protoc_insertion_point(field_add_mutable:satdDatabase.listEndFlag.terminator)
  1096. return terminator_.Add();
  1097. }
  1098. inline void listEndFlag::add_terminator(const ::std::string& value) {
  1099. terminator_.Add()->assign(value);
  1100. // @@protoc_insertion_point(field_add:satdDatabase.listEndFlag.terminator)
  1101. }
  1102. #if LANG_CXX11
  1103. inline void listEndFlag::add_terminator(::std::string&& value) {
  1104. terminator_.Add(std::move(value));
  1105. // @@protoc_insertion_point(field_add:satdDatabase.listEndFlag.terminator)
  1106. }
  1107. #endif
  1108. inline void listEndFlag::add_terminator(const char* value) {
  1109. GOOGLE_DCHECK(value != NULL);
  1110. terminator_.Add()->assign(value);
  1111. // @@protoc_insertion_point(field_add_char:satdDatabase.listEndFlag.terminator)
  1112. }
  1113. inline void listEndFlag::add_terminator(const char* value, size_t size) {
  1114. terminator_.Add()->assign(reinterpret_cast<const char*>(value), size);
  1115. // @@protoc_insertion_point(field_add_pointer:satdDatabase.listEndFlag.terminator)
  1116. }
  1117. inline const ::google::protobuf::RepeatedPtrField< ::std::string>&
  1118. listEndFlag::terminator() const {
  1119. // @@protoc_insertion_point(field_list:satdDatabase.listEndFlag.terminator)
  1120. return terminator_;
  1121. }
  1122. inline ::google::protobuf::RepeatedPtrField< ::std::string>*
  1123. listEndFlag::mutable_terminator() {
  1124. // @@protoc_insertion_point(field_mutable_list:satdDatabase.listEndFlag.terminator)
  1125. return &terminator_;
  1126. }
  1127. // -------------------------------------------------------------------
  1128. // model
  1129. // string name = 6;
  1130. inline void model::clear_name() {
  1131. name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1132. }
  1133. inline const ::std::string& model::name() const {
  1134. // @@protoc_insertion_point(field_get:satdDatabase.model.name)
  1135. return name_.GetNoArena();
  1136. }
  1137. inline void model::set_name(const ::std::string& value) {
  1138. name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  1139. // @@protoc_insertion_point(field_set:satdDatabase.model.name)
  1140. }
  1141. #if LANG_CXX11
  1142. inline void model::set_name(::std::string&& value) {
  1143. name_.SetNoArena(
  1144. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  1145. // @@protoc_insertion_point(field_set_rvalue:satdDatabase.model.name)
  1146. }
  1147. #endif
  1148. inline void model::set_name(const char* value) {
  1149. GOOGLE_DCHECK(value != NULL);
  1150. name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  1151. // @@protoc_insertion_point(field_set_char:satdDatabase.model.name)
  1152. }
  1153. inline void model::set_name(const char* value, size_t size) {
  1154. name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  1155. ::std::string(reinterpret_cast<const char*>(value), size));
  1156. // @@protoc_insertion_point(field_set_pointer:satdDatabase.model.name)
  1157. }
  1158. inline ::std::string* model::mutable_name() {
  1159. // @@protoc_insertion_point(field_mutable:satdDatabase.model.name)
  1160. return name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1161. }
  1162. inline ::std::string* model::release_name() {
  1163. // @@protoc_insertion_point(field_release:satdDatabase.model.name)
  1164. return name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1165. }
  1166. inline void model::set_allocated_name(::std::string* name) {
  1167. if (name != NULL) {
  1168. } else {
  1169. }
  1170. name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), name);
  1171. // @@protoc_insertion_point(field_set_allocated:satdDatabase.model.name)
  1172. }
  1173. // string softSuffix = 7;
  1174. inline void model::clear_softsuffix() {
  1175. softsuffix_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1176. }
  1177. inline const ::std::string& model::softsuffix() const {
  1178. // @@protoc_insertion_point(field_get:satdDatabase.model.softSuffix)
  1179. return softsuffix_.GetNoArena();
  1180. }
  1181. inline void model::set_softsuffix(const ::std::string& value) {
  1182. softsuffix_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  1183. // @@protoc_insertion_point(field_set:satdDatabase.model.softSuffix)
  1184. }
  1185. #if LANG_CXX11
  1186. inline void model::set_softsuffix(::std::string&& value) {
  1187. softsuffix_.SetNoArena(
  1188. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  1189. // @@protoc_insertion_point(field_set_rvalue:satdDatabase.model.softSuffix)
  1190. }
  1191. #endif
  1192. inline void model::set_softsuffix(const char* value) {
  1193. GOOGLE_DCHECK(value != NULL);
  1194. softsuffix_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  1195. // @@protoc_insertion_point(field_set_char:satdDatabase.model.softSuffix)
  1196. }
  1197. inline void model::set_softsuffix(const char* value, size_t size) {
  1198. softsuffix_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  1199. ::std::string(reinterpret_cast<const char*>(value), size));
  1200. // @@protoc_insertion_point(field_set_pointer:satdDatabase.model.softSuffix)
  1201. }
  1202. inline ::std::string* model::mutable_softsuffix() {
  1203. // @@protoc_insertion_point(field_mutable:satdDatabase.model.softSuffix)
  1204. return softsuffix_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1205. }
  1206. inline ::std::string* model::release_softsuffix() {
  1207. // @@protoc_insertion_point(field_release:satdDatabase.model.softSuffix)
  1208. return softsuffix_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1209. }
  1210. inline void model::set_allocated_softsuffix(::std::string* softsuffix) {
  1211. if (softsuffix != NULL) {
  1212. } else {
  1213. }
  1214. softsuffix_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), softsuffix);
  1215. // @@protoc_insertion_point(field_set_allocated:satdDatabase.model.softSuffix)
  1216. }
  1217. // .satdDatabase.listEndFlag flags = 8;
  1218. inline bool model::has_flags() const {
  1219. return this != internal_default_instance() && flags_ != NULL;
  1220. }
  1221. inline void model::clear_flags() {
  1222. if (GetArenaNoVirtual() == NULL && flags_ != NULL) {
  1223. delete flags_;
  1224. }
  1225. flags_ = NULL;
  1226. }
  1227. inline const ::satdDatabase::listEndFlag& model::flags() const {
  1228. const ::satdDatabase::listEndFlag* p = flags_;
  1229. // @@protoc_insertion_point(field_get:satdDatabase.model.flags)
  1230. return p != NULL ? *p : *reinterpret_cast<const ::satdDatabase::listEndFlag*>(
  1231. &::satdDatabase::_listEndFlag_default_instance_);
  1232. }
  1233. inline ::satdDatabase::listEndFlag* model::release_flags() {
  1234. // @@protoc_insertion_point(field_release:satdDatabase.model.flags)
  1235. ::satdDatabase::listEndFlag* temp = flags_;
  1236. flags_ = NULL;
  1237. return temp;
  1238. }
  1239. inline ::satdDatabase::listEndFlag* model::mutable_flags() {
  1240. if (flags_ == NULL) {
  1241. flags_ = new ::satdDatabase::listEndFlag;
  1242. }
  1243. // @@protoc_insertion_point(field_mutable:satdDatabase.model.flags)
  1244. return flags_;
  1245. }
  1246. inline void model::set_allocated_flags(::satdDatabase::listEndFlag* flags) {
  1247. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  1248. if (message_arena == NULL) {
  1249. delete flags_;
  1250. }
  1251. if (flags) {
  1252. ::google::protobuf::Arena* submessage_arena = NULL;
  1253. if (message_arena != submessage_arena) {
  1254. flags = ::google::protobuf::internal::GetOwnedMessage(
  1255. message_arena, flags, submessage_arena);
  1256. }
  1257. } else {
  1258. }
  1259. flags_ = flags;
  1260. // @@protoc_insertion_point(field_set_allocated:satdDatabase.model.flags)
  1261. }
  1262. // .satdDatabase.modelContent content = 9;
  1263. inline bool model::has_content() const {
  1264. return this != internal_default_instance() && content_ != NULL;
  1265. }
  1266. inline void model::clear_content() {
  1267. if (GetArenaNoVirtual() == NULL && content_ != NULL) {
  1268. delete content_;
  1269. }
  1270. content_ = NULL;
  1271. }
  1272. inline const ::satdDatabase::modelContent& model::content() const {
  1273. const ::satdDatabase::modelContent* p = content_;
  1274. // @@protoc_insertion_point(field_get:satdDatabase.model.content)
  1275. return p != NULL ? *p : *reinterpret_cast<const ::satdDatabase::modelContent*>(
  1276. &::satdDatabase::_modelContent_default_instance_);
  1277. }
  1278. inline ::satdDatabase::modelContent* model::release_content() {
  1279. // @@protoc_insertion_point(field_release:satdDatabase.model.content)
  1280. ::satdDatabase::modelContent* temp = content_;
  1281. content_ = NULL;
  1282. return temp;
  1283. }
  1284. inline ::satdDatabase::modelContent* model::mutable_content() {
  1285. if (content_ == NULL) {
  1286. content_ = new ::satdDatabase::modelContent;
  1287. }
  1288. // @@protoc_insertion_point(field_mutable:satdDatabase.model.content)
  1289. return content_;
  1290. }
  1291. inline void model::set_allocated_content(::satdDatabase::modelContent* content) {
  1292. ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
  1293. if (message_arena == NULL) {
  1294. delete content_;
  1295. }
  1296. if (content) {
  1297. ::google::protobuf::Arena* submessage_arena = NULL;
  1298. if (message_arena != submessage_arena) {
  1299. content = ::google::protobuf::internal::GetOwnedMessage(
  1300. message_arena, content, submessage_arena);
  1301. }
  1302. } else {
  1303. }
  1304. content_ = content;
  1305. // @@protoc_insertion_point(field_set_allocated:satdDatabase.model.content)
  1306. }
  1307. // -------------------------------------------------------------------
  1308. // listModel
  1309. // repeated .satdDatabase.model models = 10;
  1310. inline int listModel::models_size() const {
  1311. return models_.size();
  1312. }
  1313. inline void listModel::clear_models() {
  1314. models_.Clear();
  1315. }
  1316. inline const ::satdDatabase::model& listModel::models(int index) const {
  1317. // @@protoc_insertion_point(field_get:satdDatabase.listModel.models)
  1318. return models_.Get(index);
  1319. }
  1320. inline ::satdDatabase::model* listModel::mutable_models(int index) {
  1321. // @@protoc_insertion_point(field_mutable:satdDatabase.listModel.models)
  1322. return models_.Mutable(index);
  1323. }
  1324. inline ::satdDatabase::model* listModel::add_models() {
  1325. // @@protoc_insertion_point(field_add:satdDatabase.listModel.models)
  1326. return models_.Add();
  1327. }
  1328. inline ::google::protobuf::RepeatedPtrField< ::satdDatabase::model >*
  1329. listModel::mutable_models() {
  1330. // @@protoc_insertion_point(field_mutable_list:satdDatabase.listModel.models)
  1331. return &models_;
  1332. }
  1333. inline const ::google::protobuf::RepeatedPtrField< ::satdDatabase::model >&
  1334. listModel::models() const {
  1335. // @@protoc_insertion_point(field_list:satdDatabase.listModel.models)
  1336. return models_;
  1337. }
  1338. // -------------------------------------------------------------------
  1339. // modelContent
  1340. // string complieTime = 11;
  1341. inline void modelContent::clear_complietime() {
  1342. complietime_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1343. }
  1344. inline const ::std::string& modelContent::complietime() const {
  1345. // @@protoc_insertion_point(field_get:satdDatabase.modelContent.complieTime)
  1346. return complietime_.GetNoArena();
  1347. }
  1348. inline void modelContent::set_complietime(const ::std::string& value) {
  1349. complietime_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  1350. // @@protoc_insertion_point(field_set:satdDatabase.modelContent.complieTime)
  1351. }
  1352. #if LANG_CXX11
  1353. inline void modelContent::set_complietime(::std::string&& value) {
  1354. complietime_.SetNoArena(
  1355. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  1356. // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.complieTime)
  1357. }
  1358. #endif
  1359. inline void modelContent::set_complietime(const char* value) {
  1360. GOOGLE_DCHECK(value != NULL);
  1361. complietime_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  1362. // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.complieTime)
  1363. }
  1364. inline void modelContent::set_complietime(const char* value, size_t size) {
  1365. complietime_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  1366. ::std::string(reinterpret_cast<const char*>(value), size));
  1367. // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.complieTime)
  1368. }
  1369. inline ::std::string* modelContent::mutable_complietime() {
  1370. // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.complieTime)
  1371. return complietime_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1372. }
  1373. inline ::std::string* modelContent::release_complietime() {
  1374. // @@protoc_insertion_point(field_release:satdDatabase.modelContent.complieTime)
  1375. return complietime_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1376. }
  1377. inline void modelContent::set_allocated_complietime(::std::string* complietime) {
  1378. if (complietime != NULL) {
  1379. } else {
  1380. }
  1381. complietime_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), complietime);
  1382. // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.complieTime)
  1383. }
  1384. // string projectModel = 12;
  1385. inline void modelContent::clear_projectmodel() {
  1386. projectmodel_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1387. }
  1388. inline const ::std::string& modelContent::projectmodel() const {
  1389. // @@protoc_insertion_point(field_get:satdDatabase.modelContent.projectModel)
  1390. return projectmodel_.GetNoArena();
  1391. }
  1392. inline void modelContent::set_projectmodel(const ::std::string& value) {
  1393. projectmodel_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  1394. // @@protoc_insertion_point(field_set:satdDatabase.modelContent.projectModel)
  1395. }
  1396. #if LANG_CXX11
  1397. inline void modelContent::set_projectmodel(::std::string&& value) {
  1398. projectmodel_.SetNoArena(
  1399. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  1400. // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.projectModel)
  1401. }
  1402. #endif
  1403. inline void modelContent::set_projectmodel(const char* value) {
  1404. GOOGLE_DCHECK(value != NULL);
  1405. projectmodel_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  1406. // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.projectModel)
  1407. }
  1408. inline void modelContent::set_projectmodel(const char* value, size_t size) {
  1409. projectmodel_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  1410. ::std::string(reinterpret_cast<const char*>(value), size));
  1411. // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.projectModel)
  1412. }
  1413. inline ::std::string* modelContent::mutable_projectmodel() {
  1414. // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.projectModel)
  1415. return projectmodel_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1416. }
  1417. inline ::std::string* modelContent::release_projectmodel() {
  1418. // @@protoc_insertion_point(field_release:satdDatabase.modelContent.projectModel)
  1419. return projectmodel_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1420. }
  1421. inline void modelContent::set_allocated_projectmodel(::std::string* projectmodel) {
  1422. if (projectmodel != NULL) {
  1423. } else {
  1424. }
  1425. projectmodel_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), projectmodel);
  1426. // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.projectModel)
  1427. }
  1428. // string productName = 13;
  1429. inline void modelContent::clear_productname() {
  1430. productname_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1431. }
  1432. inline const ::std::string& modelContent::productname() const {
  1433. // @@protoc_insertion_point(field_get:satdDatabase.modelContent.productName)
  1434. return productname_.GetNoArena();
  1435. }
  1436. inline void modelContent::set_productname(const ::std::string& value) {
  1437. productname_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  1438. // @@protoc_insertion_point(field_set:satdDatabase.modelContent.productName)
  1439. }
  1440. #if LANG_CXX11
  1441. inline void modelContent::set_productname(::std::string&& value) {
  1442. productname_.SetNoArena(
  1443. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  1444. // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.productName)
  1445. }
  1446. #endif
  1447. inline void modelContent::set_productname(const char* value) {
  1448. GOOGLE_DCHECK(value != NULL);
  1449. productname_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  1450. // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.productName)
  1451. }
  1452. inline void modelContent::set_productname(const char* value, size_t size) {
  1453. productname_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  1454. ::std::string(reinterpret_cast<const char*>(value), size));
  1455. // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.productName)
  1456. }
  1457. inline ::std::string* modelContent::mutable_productname() {
  1458. // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.productName)
  1459. return productname_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1460. }
  1461. inline ::std::string* modelContent::release_productname() {
  1462. // @@protoc_insertion_point(field_release:satdDatabase.modelContent.productName)
  1463. return productname_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1464. }
  1465. inline void modelContent::set_allocated_productname(::std::string* productname) {
  1466. if (productname != NULL) {
  1467. } else {
  1468. }
  1469. productname_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), productname);
  1470. // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.productName)
  1471. }
  1472. // string svndir = 14;
  1473. inline void modelContent::clear_svndir() {
  1474. svndir_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1475. }
  1476. inline const ::std::string& modelContent::svndir() const {
  1477. // @@protoc_insertion_point(field_get:satdDatabase.modelContent.svndir)
  1478. return svndir_.GetNoArena();
  1479. }
  1480. inline void modelContent::set_svndir(const ::std::string& value) {
  1481. svndir_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  1482. // @@protoc_insertion_point(field_set:satdDatabase.modelContent.svndir)
  1483. }
  1484. #if LANG_CXX11
  1485. inline void modelContent::set_svndir(::std::string&& value) {
  1486. svndir_.SetNoArena(
  1487. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  1488. // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.svndir)
  1489. }
  1490. #endif
  1491. inline void modelContent::set_svndir(const char* value) {
  1492. GOOGLE_DCHECK(value != NULL);
  1493. svndir_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  1494. // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.svndir)
  1495. }
  1496. inline void modelContent::set_svndir(const char* value, size_t size) {
  1497. svndir_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  1498. ::std::string(reinterpret_cast<const char*>(value), size));
  1499. // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.svndir)
  1500. }
  1501. inline ::std::string* modelContent::mutable_svndir() {
  1502. // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.svndir)
  1503. return svndir_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1504. }
  1505. inline ::std::string* modelContent::release_svndir() {
  1506. // @@protoc_insertion_point(field_release:satdDatabase.modelContent.svndir)
  1507. return svndir_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1508. }
  1509. inline void modelContent::set_allocated_svndir(::std::string* svndir) {
  1510. if (svndir != NULL) {
  1511. } else {
  1512. }
  1513. svndir_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), svndir);
  1514. // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.svndir)
  1515. }
  1516. // string command = 15;
  1517. inline void modelContent::clear_command() {
  1518. command_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1519. }
  1520. inline const ::std::string& modelContent::command() const {
  1521. // @@protoc_insertion_point(field_get:satdDatabase.modelContent.command)
  1522. return command_.GetNoArena();
  1523. }
  1524. inline void modelContent::set_command(const ::std::string& value) {
  1525. command_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  1526. // @@protoc_insertion_point(field_set:satdDatabase.modelContent.command)
  1527. }
  1528. #if LANG_CXX11
  1529. inline void modelContent::set_command(::std::string&& value) {
  1530. command_.SetNoArena(
  1531. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  1532. // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.command)
  1533. }
  1534. #endif
  1535. inline void modelContent::set_command(const char* value) {
  1536. GOOGLE_DCHECK(value != NULL);
  1537. command_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  1538. // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.command)
  1539. }
  1540. inline void modelContent::set_command(const char* value, size_t size) {
  1541. command_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  1542. ::std::string(reinterpret_cast<const char*>(value), size));
  1543. // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.command)
  1544. }
  1545. inline ::std::string* modelContent::mutable_command() {
  1546. // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.command)
  1547. return command_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1548. }
  1549. inline ::std::string* modelContent::release_command() {
  1550. // @@protoc_insertion_point(field_release:satdDatabase.modelContent.command)
  1551. return command_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1552. }
  1553. inline void modelContent::set_allocated_command(::std::string* command) {
  1554. if (command != NULL) {
  1555. } else {
  1556. }
  1557. command_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), command);
  1558. // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.command)
  1559. }
  1560. // string projectName = 16;
  1561. inline void modelContent::clear_projectname() {
  1562. projectname_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1563. }
  1564. inline const ::std::string& modelContent::projectname() const {
  1565. // @@protoc_insertion_point(field_get:satdDatabase.modelContent.projectName)
  1566. return projectname_.GetNoArena();
  1567. }
  1568. inline void modelContent::set_projectname(const ::std::string& value) {
  1569. projectname_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  1570. // @@protoc_insertion_point(field_set:satdDatabase.modelContent.projectName)
  1571. }
  1572. #if LANG_CXX11
  1573. inline void modelContent::set_projectname(::std::string&& value) {
  1574. projectname_.SetNoArena(
  1575. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  1576. // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.projectName)
  1577. }
  1578. #endif
  1579. inline void modelContent::set_projectname(const char* value) {
  1580. GOOGLE_DCHECK(value != NULL);
  1581. projectname_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  1582. // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.projectName)
  1583. }
  1584. inline void modelContent::set_projectname(const char* value, size_t size) {
  1585. projectname_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  1586. ::std::string(reinterpret_cast<const char*>(value), size));
  1587. // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.projectName)
  1588. }
  1589. inline ::std::string* modelContent::mutable_projectname() {
  1590. // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.projectName)
  1591. return projectname_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1592. }
  1593. inline ::std::string* modelContent::release_projectname() {
  1594. // @@protoc_insertion_point(field_release:satdDatabase.modelContent.projectName)
  1595. return projectname_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1596. }
  1597. inline void modelContent::set_allocated_projectname(::std::string* projectname) {
  1598. if (projectname != NULL) {
  1599. } else {
  1600. }
  1601. projectname_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), projectname);
  1602. // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.projectName)
  1603. }
  1604. // string projectSN = 17;
  1605. inline void modelContent::clear_projectsn() {
  1606. projectsn_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1607. }
  1608. inline const ::std::string& modelContent::projectsn() const {
  1609. // @@protoc_insertion_point(field_get:satdDatabase.modelContent.projectSN)
  1610. return projectsn_.GetNoArena();
  1611. }
  1612. inline void modelContent::set_projectsn(const ::std::string& value) {
  1613. projectsn_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  1614. // @@protoc_insertion_point(field_set:satdDatabase.modelContent.projectSN)
  1615. }
  1616. #if LANG_CXX11
  1617. inline void modelContent::set_projectsn(::std::string&& value) {
  1618. projectsn_.SetNoArena(
  1619. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  1620. // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.projectSN)
  1621. }
  1622. #endif
  1623. inline void modelContent::set_projectsn(const char* value) {
  1624. GOOGLE_DCHECK(value != NULL);
  1625. projectsn_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  1626. // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.projectSN)
  1627. }
  1628. inline void modelContent::set_projectsn(const char* value, size_t size) {
  1629. projectsn_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  1630. ::std::string(reinterpret_cast<const char*>(value), size));
  1631. // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.projectSN)
  1632. }
  1633. inline ::std::string* modelContent::mutable_projectsn() {
  1634. // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.projectSN)
  1635. return projectsn_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1636. }
  1637. inline ::std::string* modelContent::release_projectsn() {
  1638. // @@protoc_insertion_point(field_release:satdDatabase.modelContent.projectSN)
  1639. return projectsn_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1640. }
  1641. inline void modelContent::set_allocated_projectsn(::std::string* projectsn) {
  1642. if (projectsn != NULL) {
  1643. } else {
  1644. }
  1645. projectsn_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), projectsn);
  1646. // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.projectSN)
  1647. }
  1648. // string softVer = 18;
  1649. inline void modelContent::clear_softver() {
  1650. softver_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1651. }
  1652. inline const ::std::string& modelContent::softver() const {
  1653. // @@protoc_insertion_point(field_get:satdDatabase.modelContent.softVer)
  1654. return softver_.GetNoArena();
  1655. }
  1656. inline void modelContent::set_softver(const ::std::string& value) {
  1657. softver_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  1658. // @@protoc_insertion_point(field_set:satdDatabase.modelContent.softVer)
  1659. }
  1660. #if LANG_CXX11
  1661. inline void modelContent::set_softver(::std::string&& value) {
  1662. softver_.SetNoArena(
  1663. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  1664. // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.softVer)
  1665. }
  1666. #endif
  1667. inline void modelContent::set_softver(const char* value) {
  1668. GOOGLE_DCHECK(value != NULL);
  1669. softver_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  1670. // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.softVer)
  1671. }
  1672. inline void modelContent::set_softver(const char* value, size_t size) {
  1673. softver_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  1674. ::std::string(reinterpret_cast<const char*>(value), size));
  1675. // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.softVer)
  1676. }
  1677. inline ::std::string* modelContent::mutable_softver() {
  1678. // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.softVer)
  1679. return softver_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1680. }
  1681. inline ::std::string* modelContent::release_softver() {
  1682. // @@protoc_insertion_point(field_release:satdDatabase.modelContent.softVer)
  1683. return softver_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1684. }
  1685. inline void modelContent::set_allocated_softver(::std::string* softver) {
  1686. if (softver != NULL) {
  1687. } else {
  1688. }
  1689. softver_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), softver);
  1690. // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.softVer)
  1691. }
  1692. // string svnVer = 19;
  1693. inline void modelContent::clear_svnver() {
  1694. svnver_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1695. }
  1696. inline const ::std::string& modelContent::svnver() const {
  1697. // @@protoc_insertion_point(field_get:satdDatabase.modelContent.svnVer)
  1698. return svnver_.GetNoArena();
  1699. }
  1700. inline void modelContent::set_svnver(const ::std::string& value) {
  1701. svnver_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  1702. // @@protoc_insertion_point(field_set:satdDatabase.modelContent.svnVer)
  1703. }
  1704. #if LANG_CXX11
  1705. inline void modelContent::set_svnver(::std::string&& value) {
  1706. svnver_.SetNoArena(
  1707. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  1708. // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.svnVer)
  1709. }
  1710. #endif
  1711. inline void modelContent::set_svnver(const char* value) {
  1712. GOOGLE_DCHECK(value != NULL);
  1713. svnver_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  1714. // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.svnVer)
  1715. }
  1716. inline void modelContent::set_svnver(const char* value, size_t size) {
  1717. svnver_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  1718. ::std::string(reinterpret_cast<const char*>(value), size));
  1719. // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.svnVer)
  1720. }
  1721. inline ::std::string* modelContent::mutable_svnver() {
  1722. // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.svnVer)
  1723. return svnver_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1724. }
  1725. inline ::std::string* modelContent::release_svnver() {
  1726. // @@protoc_insertion_point(field_release:satdDatabase.modelContent.svnVer)
  1727. return svnver_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1728. }
  1729. inline void modelContent::set_allocated_svnver(::std::string* svnver) {
  1730. if (svnver != NULL) {
  1731. } else {
  1732. }
  1733. svnver_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), svnver);
  1734. // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.svnVer)
  1735. }
  1736. // string projectID = 20;
  1737. inline void modelContent::clear_projectid() {
  1738. projectid_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1739. }
  1740. inline const ::std::string& modelContent::projectid() const {
  1741. // @@protoc_insertion_point(field_get:satdDatabase.modelContent.projectID)
  1742. return projectid_.GetNoArena();
  1743. }
  1744. inline void modelContent::set_projectid(const ::std::string& value) {
  1745. projectid_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  1746. // @@protoc_insertion_point(field_set:satdDatabase.modelContent.projectID)
  1747. }
  1748. #if LANG_CXX11
  1749. inline void modelContent::set_projectid(::std::string&& value) {
  1750. projectid_.SetNoArena(
  1751. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  1752. // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.projectID)
  1753. }
  1754. #endif
  1755. inline void modelContent::set_projectid(const char* value) {
  1756. GOOGLE_DCHECK(value != NULL);
  1757. projectid_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  1758. // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.projectID)
  1759. }
  1760. inline void modelContent::set_projectid(const char* value, size_t size) {
  1761. projectid_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  1762. ::std::string(reinterpret_cast<const char*>(value), size));
  1763. // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.projectID)
  1764. }
  1765. inline ::std::string* modelContent::mutable_projectid() {
  1766. // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.projectID)
  1767. return projectid_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1768. }
  1769. inline ::std::string* modelContent::release_projectid() {
  1770. // @@protoc_insertion_point(field_release:satdDatabase.modelContent.projectID)
  1771. return projectid_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1772. }
  1773. inline void modelContent::set_allocated_projectid(::std::string* projectid) {
  1774. if (projectid != NULL) {
  1775. } else {
  1776. }
  1777. projectid_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), projectid);
  1778. // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.projectID)
  1779. }
  1780. // string zone = 21;
  1781. inline void modelContent::clear_zone() {
  1782. zone_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1783. }
  1784. inline const ::std::string& modelContent::zone() const {
  1785. // @@protoc_insertion_point(field_get:satdDatabase.modelContent.zone)
  1786. return zone_.GetNoArena();
  1787. }
  1788. inline void modelContent::set_zone(const ::std::string& value) {
  1789. zone_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  1790. // @@protoc_insertion_point(field_set:satdDatabase.modelContent.zone)
  1791. }
  1792. #if LANG_CXX11
  1793. inline void modelContent::set_zone(::std::string&& value) {
  1794. zone_.SetNoArena(
  1795. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  1796. // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.zone)
  1797. }
  1798. #endif
  1799. inline void modelContent::set_zone(const char* value) {
  1800. GOOGLE_DCHECK(value != NULL);
  1801. zone_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  1802. // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.zone)
  1803. }
  1804. inline void modelContent::set_zone(const char* value, size_t size) {
  1805. zone_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  1806. ::std::string(reinterpret_cast<const char*>(value), size));
  1807. // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.zone)
  1808. }
  1809. inline ::std::string* modelContent::mutable_zone() {
  1810. // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.zone)
  1811. return zone_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1812. }
  1813. inline ::std::string* modelContent::release_zone() {
  1814. // @@protoc_insertion_point(field_release:satdDatabase.modelContent.zone)
  1815. return zone_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1816. }
  1817. inline void modelContent::set_allocated_zone(::std::string* zone) {
  1818. if (zone != NULL) {
  1819. } else {
  1820. }
  1821. zone_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), zone);
  1822. // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.zone)
  1823. }
  1824. // string UIStyle = 22;
  1825. inline void modelContent::clear_uistyle() {
  1826. uistyle_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1827. }
  1828. inline const ::std::string& modelContent::uistyle() const {
  1829. // @@protoc_insertion_point(field_get:satdDatabase.modelContent.UIStyle)
  1830. return uistyle_.GetNoArena();
  1831. }
  1832. inline void modelContent::set_uistyle(const ::std::string& value) {
  1833. uistyle_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  1834. // @@protoc_insertion_point(field_set:satdDatabase.modelContent.UIStyle)
  1835. }
  1836. #if LANG_CXX11
  1837. inline void modelContent::set_uistyle(::std::string&& value) {
  1838. uistyle_.SetNoArena(
  1839. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  1840. // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.UIStyle)
  1841. }
  1842. #endif
  1843. inline void modelContent::set_uistyle(const char* value) {
  1844. GOOGLE_DCHECK(value != NULL);
  1845. uistyle_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  1846. // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.UIStyle)
  1847. }
  1848. inline void modelContent::set_uistyle(const char* value, size_t size) {
  1849. uistyle_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  1850. ::std::string(reinterpret_cast<const char*>(value), size));
  1851. // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.UIStyle)
  1852. }
  1853. inline ::std::string* modelContent::mutable_uistyle() {
  1854. // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.UIStyle)
  1855. return uistyle_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1856. }
  1857. inline ::std::string* modelContent::release_uistyle() {
  1858. // @@protoc_insertion_point(field_release:satdDatabase.modelContent.UIStyle)
  1859. return uistyle_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1860. }
  1861. inline void modelContent::set_allocated_uistyle(::std::string* uistyle) {
  1862. if (uistyle != NULL) {
  1863. } else {
  1864. }
  1865. uistyle_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), uistyle);
  1866. // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.UIStyle)
  1867. }
  1868. // string complieFileDir = 23;
  1869. inline void modelContent::clear_compliefiledir() {
  1870. compliefiledir_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1871. }
  1872. inline const ::std::string& modelContent::compliefiledir() const {
  1873. // @@protoc_insertion_point(field_get:satdDatabase.modelContent.complieFileDir)
  1874. return compliefiledir_.GetNoArena();
  1875. }
  1876. inline void modelContent::set_compliefiledir(const ::std::string& value) {
  1877. compliefiledir_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  1878. // @@protoc_insertion_point(field_set:satdDatabase.modelContent.complieFileDir)
  1879. }
  1880. #if LANG_CXX11
  1881. inline void modelContent::set_compliefiledir(::std::string&& value) {
  1882. compliefiledir_.SetNoArena(
  1883. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  1884. // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.complieFileDir)
  1885. }
  1886. #endif
  1887. inline void modelContent::set_compliefiledir(const char* value) {
  1888. GOOGLE_DCHECK(value != NULL);
  1889. compliefiledir_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  1890. // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.complieFileDir)
  1891. }
  1892. inline void modelContent::set_compliefiledir(const char* value, size_t size) {
  1893. compliefiledir_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  1894. ::std::string(reinterpret_cast<const char*>(value), size));
  1895. // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.complieFileDir)
  1896. }
  1897. inline ::std::string* modelContent::mutable_compliefiledir() {
  1898. // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.complieFileDir)
  1899. return compliefiledir_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1900. }
  1901. inline ::std::string* modelContent::release_compliefiledir() {
  1902. // @@protoc_insertion_point(field_release:satdDatabase.modelContent.complieFileDir)
  1903. return compliefiledir_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1904. }
  1905. inline void modelContent::set_allocated_compliefiledir(::std::string* compliefiledir) {
  1906. if (compliefiledir != NULL) {
  1907. } else {
  1908. }
  1909. compliefiledir_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), compliefiledir);
  1910. // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.complieFileDir)
  1911. }
  1912. // string userName = 24;
  1913. inline void modelContent::clear_username() {
  1914. username_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1915. }
  1916. inline const ::std::string& modelContent::username() const {
  1917. // @@protoc_insertion_point(field_get:satdDatabase.modelContent.userName)
  1918. return username_.GetNoArena();
  1919. }
  1920. inline void modelContent::set_username(const ::std::string& value) {
  1921. username_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  1922. // @@protoc_insertion_point(field_set:satdDatabase.modelContent.userName)
  1923. }
  1924. #if LANG_CXX11
  1925. inline void modelContent::set_username(::std::string&& value) {
  1926. username_.SetNoArena(
  1927. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  1928. // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.userName)
  1929. }
  1930. #endif
  1931. inline void modelContent::set_username(const char* value) {
  1932. GOOGLE_DCHECK(value != NULL);
  1933. username_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  1934. // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.userName)
  1935. }
  1936. inline void modelContent::set_username(const char* value, size_t size) {
  1937. username_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  1938. ::std::string(reinterpret_cast<const char*>(value), size));
  1939. // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.userName)
  1940. }
  1941. inline ::std::string* modelContent::mutable_username() {
  1942. // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.userName)
  1943. return username_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1944. }
  1945. inline ::std::string* modelContent::release_username() {
  1946. // @@protoc_insertion_point(field_release:satdDatabase.modelContent.userName)
  1947. return username_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1948. }
  1949. inline void modelContent::set_allocated_username(::std::string* username) {
  1950. if (username != NULL) {
  1951. } else {
  1952. }
  1953. username_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), username);
  1954. // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.userName)
  1955. }
  1956. // string time = 25;
  1957. inline void modelContent::clear_time() {
  1958. time_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1959. }
  1960. inline const ::std::string& modelContent::time() const {
  1961. // @@protoc_insertion_point(field_get:satdDatabase.modelContent.time)
  1962. return time_.GetNoArena();
  1963. }
  1964. inline void modelContent::set_time(const ::std::string& value) {
  1965. time_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
  1966. // @@protoc_insertion_point(field_set:satdDatabase.modelContent.time)
  1967. }
  1968. #if LANG_CXX11
  1969. inline void modelContent::set_time(::std::string&& value) {
  1970. time_.SetNoArena(
  1971. &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
  1972. // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.time)
  1973. }
  1974. #endif
  1975. inline void modelContent::set_time(const char* value) {
  1976. GOOGLE_DCHECK(value != NULL);
  1977. time_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
  1978. // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.time)
  1979. }
  1980. inline void modelContent::set_time(const char* value, size_t size) {
  1981. time_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
  1982. ::std::string(reinterpret_cast<const char*>(value), size));
  1983. // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.time)
  1984. }
  1985. inline ::std::string* modelContent::mutable_time() {
  1986. // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.time)
  1987. return time_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1988. }
  1989. inline ::std::string* modelContent::release_time() {
  1990. // @@protoc_insertion_point(field_release:satdDatabase.modelContent.time)
  1991. return time_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
  1992. }
  1993. inline void modelContent::set_allocated_time(::std::string* time) {
  1994. if (time != NULL) {
  1995. } else {
  1996. }
  1997. time_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), time);
  1998. // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.time)
  1999. }
  2000. #ifdef __GNUC__
  2001. #pragma GCC diagnostic pop
  2002. #endif // __GNUC__
  2003. // -------------------------------------------------------------------
  2004. // -------------------------------------------------------------------
  2005. // -------------------------------------------------------------------
  2006. // -------------------------------------------------------------------
  2007. // -------------------------------------------------------------------
  2008. // @@protoc_insertion_point(namespace_scope)
  2009. } // namespace satdDatabase
  2010. // @@protoc_insertion_point(global_scope)
  2011. #endif // PROTOBUF_table_2eproto__INCLUDED