123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349 |
- // Generated by the protocol buffer compiler. DO NOT EDIT!
- // source: table.proto
- #ifndef PROTOBUF_table_2eproto__INCLUDED
- #define PROTOBUF_table_2eproto__INCLUDED
- #include <string>
- #include <google/protobuf/stubs/common.h>
- #if GOOGLE_PROTOBUF_VERSION < 3005000
- #error This file was generated by a newer version of protoc which is
- #error incompatible with your Protocol Buffer headers. Please update
- #error your headers.
- #endif
- #if 3005001 < GOOGLE_PROTOBUF_MIN_PROTOC_VERSION
- #error This file was generated by an older version of protoc which is
- #error incompatible with your Protocol Buffer headers. Please
- #error regenerate this file with a newer version of protoc.
- #endif
- #include <google/protobuf/io/coded_stream.h>
- #include <google/protobuf/arena.h>
- #include <google/protobuf/arenastring.h>
- #include <google/protobuf/generated_message_table_driven.h>
- #include <google/protobuf/generated_message_util.h>
- #include <google/protobuf/metadata.h>
- #include <google/protobuf/message.h>
- #include <google/protobuf/repeated_field.h> // IWYU pragma: export
- #include <google/protobuf/extension_set.h> // IWYU pragma: export
- #include <google/protobuf/unknown_field_set.h>
- // @@protoc_insertion_point(includes)
- namespace protobuf_table_2eproto {
- // Internal implementation detail -- do not use these members.
- struct TableStruct {
- static const ::google::protobuf::internal::ParseTableField entries[];
- static const ::google::protobuf::internal::AuxillaryParseTableField aux[];
- static const ::google::protobuf::internal::ParseTable schema[6];
- static const ::google::protobuf::internal::FieldMetadata field_metadata[];
- static const ::google::protobuf::internal::SerializationTable serialization_table[];
- static const ::google::protobuf::uint32 offsets[];
- };
- void AddDescriptors();
- void InitDefaultscomplieServerImpl();
- void InitDefaultscomplieServer();
- void InitDefaultslistServerImpl();
- void InitDefaultslistServer();
- void InitDefaultslistEndFlagImpl();
- void InitDefaultslistEndFlag();
- void InitDefaultsmodelImpl();
- void InitDefaultsmodel();
- void InitDefaultslistModelImpl();
- void InitDefaultslistModel();
- void InitDefaultsmodelContentImpl();
- void InitDefaultsmodelContent();
- inline void InitDefaults() {
- InitDefaultscomplieServer();
- InitDefaultslistServer();
- InitDefaultslistEndFlag();
- InitDefaultsmodel();
- InitDefaultslistModel();
- InitDefaultsmodelContent();
- }
- } // namespace protobuf_table_2eproto
- namespace satdDatabase {
- class complieServer;
- class complieServerDefaultTypeInternal;
- extern complieServerDefaultTypeInternal _complieServer_default_instance_;
- class listEndFlag;
- class listEndFlagDefaultTypeInternal;
- extern listEndFlagDefaultTypeInternal _listEndFlag_default_instance_;
- class listModel;
- class listModelDefaultTypeInternal;
- extern listModelDefaultTypeInternal _listModel_default_instance_;
- class listServer;
- class listServerDefaultTypeInternal;
- extern listServerDefaultTypeInternal _listServer_default_instance_;
- class model;
- class modelDefaultTypeInternal;
- extern modelDefaultTypeInternal _model_default_instance_;
- class modelContent;
- class modelContentDefaultTypeInternal;
- extern modelContentDefaultTypeInternal _modelContent_default_instance_;
- } // namespace satdDatabase
- namespace satdDatabase {
- // ===================================================================
- class complieServer : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:satdDatabase.complieServer) */ {
- public:
- complieServer();
- virtual ~complieServer();
- complieServer(const complieServer& from);
- inline complieServer& operator=(const complieServer& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- complieServer(complieServer&& from) noexcept
- : complieServer() {
- *this = ::std::move(from);
- }
- inline complieServer& operator=(complieServer&& from) noexcept {
- if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
- if (this != &from) InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- #endif
- static const ::google::protobuf::Descriptor* descriptor();
- static const complieServer& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const complieServer* internal_default_instance() {
- return reinterpret_cast<const complieServer*>(
- &_complieServer_default_instance_);
- }
- static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
- 0;
- void Swap(complieServer* other);
- friend void swap(complieServer& a, complieServer& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline complieServer* New() const PROTOBUF_FINAL { return New(NULL); }
- complieServer* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
- void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void CopyFrom(const complieServer& from);
- void MergeFrom(const complieServer& from);
- void Clear() PROTOBUF_FINAL;
- bool IsInitialized() const PROTOBUF_FINAL;
- size_t ByteSizeLong() const PROTOBUF_FINAL;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
- ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
- int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const PROTOBUF_FINAL;
- void InternalSwap(complieServer* other);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return NULL;
- }
- inline void* MaybeArenaPtr() const {
- return NULL;
- }
- public:
- ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // string server = 1;
- void clear_server();
- static const int kServerFieldNumber = 1;
- const ::std::string& server() const;
- void set_server(const ::std::string& value);
- #if LANG_CXX11
- void set_server(::std::string&& value);
- #endif
- void set_server(const char* value);
- void set_server(const char* value, size_t size);
- ::std::string* mutable_server();
- ::std::string* release_server();
- void set_allocated_server(::std::string* server);
- // string user = 2;
- void clear_user();
- static const int kUserFieldNumber = 2;
- const ::std::string& user() const;
- void set_user(const ::std::string& value);
- #if LANG_CXX11
- void set_user(::std::string&& value);
- #endif
- void set_user(const char* value);
- void set_user(const char* value, size_t size);
- ::std::string* mutable_user();
- ::std::string* release_user();
- void set_allocated_user(::std::string* user);
- // string password = 3;
- void clear_password();
- static const int kPasswordFieldNumber = 3;
- const ::std::string& password() const;
- void set_password(const ::std::string& value);
- #if LANG_CXX11
- void set_password(::std::string&& value);
- #endif
- void set_password(const char* value);
- void set_password(const char* value, size_t size);
- ::std::string* mutable_password();
- ::std::string* release_password();
- void set_allocated_password(::std::string* password);
- // @@protoc_insertion_point(class_scope:satdDatabase.complieServer)
- private:
- ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
- ::google::protobuf::internal::ArenaStringPtr server_;
- ::google::protobuf::internal::ArenaStringPtr user_;
- ::google::protobuf::internal::ArenaStringPtr password_;
- mutable int _cached_size_;
- friend struct ::protobuf_table_2eproto::TableStruct;
- friend void ::protobuf_table_2eproto::InitDefaultscomplieServerImpl();
- };
- // -------------------------------------------------------------------
- class listServer : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:satdDatabase.listServer) */ {
- public:
- listServer();
- virtual ~listServer();
- listServer(const listServer& from);
- inline listServer& operator=(const listServer& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- listServer(listServer&& from) noexcept
- : listServer() {
- *this = ::std::move(from);
- }
- inline listServer& operator=(listServer&& from) noexcept {
- if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
- if (this != &from) InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- #endif
- static const ::google::protobuf::Descriptor* descriptor();
- static const listServer& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const listServer* internal_default_instance() {
- return reinterpret_cast<const listServer*>(
- &_listServer_default_instance_);
- }
- static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
- 1;
- void Swap(listServer* other);
- friend void swap(listServer& a, listServer& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline listServer* New() const PROTOBUF_FINAL { return New(NULL); }
- listServer* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
- void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void CopyFrom(const listServer& from);
- void MergeFrom(const listServer& from);
- void Clear() PROTOBUF_FINAL;
- bool IsInitialized() const PROTOBUF_FINAL;
- size_t ByteSizeLong() const PROTOBUF_FINAL;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
- ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
- int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const PROTOBUF_FINAL;
- void InternalSwap(listServer* other);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return NULL;
- }
- inline void* MaybeArenaPtr() const {
- return NULL;
- }
- public:
- ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // repeated .satdDatabase.complieServer servers = 4;
- int servers_size() const;
- void clear_servers();
- static const int kServersFieldNumber = 4;
- const ::satdDatabase::complieServer& servers(int index) const;
- ::satdDatabase::complieServer* mutable_servers(int index);
- ::satdDatabase::complieServer* add_servers();
- ::google::protobuf::RepeatedPtrField< ::satdDatabase::complieServer >*
- mutable_servers();
- const ::google::protobuf::RepeatedPtrField< ::satdDatabase::complieServer >&
- servers() const;
- // @@protoc_insertion_point(class_scope:satdDatabase.listServer)
- private:
- ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
- ::google::protobuf::RepeatedPtrField< ::satdDatabase::complieServer > servers_;
- mutable int _cached_size_;
- friend struct ::protobuf_table_2eproto::TableStruct;
- friend void ::protobuf_table_2eproto::InitDefaultslistServerImpl();
- };
- // -------------------------------------------------------------------
- class listEndFlag : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:satdDatabase.listEndFlag) */ {
- public:
- listEndFlag();
- virtual ~listEndFlag();
- listEndFlag(const listEndFlag& from);
- inline listEndFlag& operator=(const listEndFlag& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- listEndFlag(listEndFlag&& from) noexcept
- : listEndFlag() {
- *this = ::std::move(from);
- }
- inline listEndFlag& operator=(listEndFlag&& from) noexcept {
- if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
- if (this != &from) InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- #endif
- static const ::google::protobuf::Descriptor* descriptor();
- static const listEndFlag& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const listEndFlag* internal_default_instance() {
- return reinterpret_cast<const listEndFlag*>(
- &_listEndFlag_default_instance_);
- }
- static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
- 2;
- void Swap(listEndFlag* other);
- friend void swap(listEndFlag& a, listEndFlag& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline listEndFlag* New() const PROTOBUF_FINAL { return New(NULL); }
- listEndFlag* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
- void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void CopyFrom(const listEndFlag& from);
- void MergeFrom(const listEndFlag& from);
- void Clear() PROTOBUF_FINAL;
- bool IsInitialized() const PROTOBUF_FINAL;
- size_t ByteSizeLong() const PROTOBUF_FINAL;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
- ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
- int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const PROTOBUF_FINAL;
- void InternalSwap(listEndFlag* other);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return NULL;
- }
- inline void* MaybeArenaPtr() const {
- return NULL;
- }
- public:
- ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // repeated string terminator = 5;
- int terminator_size() const;
- void clear_terminator();
- static const int kTerminatorFieldNumber = 5;
- const ::std::string& terminator(int index) const;
- ::std::string* mutable_terminator(int index);
- void set_terminator(int index, const ::std::string& value);
- #if LANG_CXX11
- void set_terminator(int index, ::std::string&& value);
- #endif
- void set_terminator(int index, const char* value);
- void set_terminator(int index, const char* value, size_t size);
- ::std::string* add_terminator();
- void add_terminator(const ::std::string& value);
- #if LANG_CXX11
- void add_terminator(::std::string&& value);
- #endif
- void add_terminator(const char* value);
- void add_terminator(const char* value, size_t size);
- const ::google::protobuf::RepeatedPtrField< ::std::string>& terminator() const;
- ::google::protobuf::RepeatedPtrField< ::std::string>* mutable_terminator();
- // @@protoc_insertion_point(class_scope:satdDatabase.listEndFlag)
- private:
- ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
- ::google::protobuf::RepeatedPtrField< ::std::string> terminator_;
- mutable int _cached_size_;
- friend struct ::protobuf_table_2eproto::TableStruct;
- friend void ::protobuf_table_2eproto::InitDefaultslistEndFlagImpl();
- };
- // -------------------------------------------------------------------
- class model : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:satdDatabase.model) */ {
- public:
- model();
- virtual ~model();
- model(const model& from);
- inline model& operator=(const model& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- model(model&& from) noexcept
- : model() {
- *this = ::std::move(from);
- }
- inline model& operator=(model&& from) noexcept {
- if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
- if (this != &from) InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- #endif
- static const ::google::protobuf::Descriptor* descriptor();
- static const model& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const model* internal_default_instance() {
- return reinterpret_cast<const model*>(
- &_model_default_instance_);
- }
- static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
- 3;
- void Swap(model* other);
- friend void swap(model& a, model& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline model* New() const PROTOBUF_FINAL { return New(NULL); }
- model* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
- void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void CopyFrom(const model& from);
- void MergeFrom(const model& from);
- void Clear() PROTOBUF_FINAL;
- bool IsInitialized() const PROTOBUF_FINAL;
- size_t ByteSizeLong() const PROTOBUF_FINAL;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
- ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
- int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const PROTOBUF_FINAL;
- void InternalSwap(model* other);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return NULL;
- }
- inline void* MaybeArenaPtr() const {
- return NULL;
- }
- public:
- ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // string name = 6;
- void clear_name();
- static const int kNameFieldNumber = 6;
- const ::std::string& name() const;
- void set_name(const ::std::string& value);
- #if LANG_CXX11
- void set_name(::std::string&& value);
- #endif
- void set_name(const char* value);
- void set_name(const char* value, size_t size);
- ::std::string* mutable_name();
- ::std::string* release_name();
- void set_allocated_name(::std::string* name);
- // string softSuffix = 7;
- void clear_softsuffix();
- static const int kSoftSuffixFieldNumber = 7;
- const ::std::string& softsuffix() const;
- void set_softsuffix(const ::std::string& value);
- #if LANG_CXX11
- void set_softsuffix(::std::string&& value);
- #endif
- void set_softsuffix(const char* value);
- void set_softsuffix(const char* value, size_t size);
- ::std::string* mutable_softsuffix();
- ::std::string* release_softsuffix();
- void set_allocated_softsuffix(::std::string* softsuffix);
- // .satdDatabase.listEndFlag flags = 8;
- bool has_flags() const;
- void clear_flags();
- static const int kFlagsFieldNumber = 8;
- const ::satdDatabase::listEndFlag& flags() const;
- ::satdDatabase::listEndFlag* release_flags();
- ::satdDatabase::listEndFlag* mutable_flags();
- void set_allocated_flags(::satdDatabase::listEndFlag* flags);
- // .satdDatabase.modelContent content = 9;
- bool has_content() const;
- void clear_content();
- static const int kContentFieldNumber = 9;
- const ::satdDatabase::modelContent& content() const;
- ::satdDatabase::modelContent* release_content();
- ::satdDatabase::modelContent* mutable_content();
- void set_allocated_content(::satdDatabase::modelContent* content);
- // @@protoc_insertion_point(class_scope:satdDatabase.model)
- private:
- ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
- ::google::protobuf::internal::ArenaStringPtr name_;
- ::google::protobuf::internal::ArenaStringPtr softsuffix_;
- ::satdDatabase::listEndFlag* flags_;
- ::satdDatabase::modelContent* content_;
- mutable int _cached_size_;
- friend struct ::protobuf_table_2eproto::TableStruct;
- friend void ::protobuf_table_2eproto::InitDefaultsmodelImpl();
- };
- // -------------------------------------------------------------------
- class listModel : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:satdDatabase.listModel) */ {
- public:
- listModel();
- virtual ~listModel();
- listModel(const listModel& from);
- inline listModel& operator=(const listModel& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- listModel(listModel&& from) noexcept
- : listModel() {
- *this = ::std::move(from);
- }
- inline listModel& operator=(listModel&& from) noexcept {
- if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
- if (this != &from) InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- #endif
- static const ::google::protobuf::Descriptor* descriptor();
- static const listModel& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const listModel* internal_default_instance() {
- return reinterpret_cast<const listModel*>(
- &_listModel_default_instance_);
- }
- static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
- 4;
- void Swap(listModel* other);
- friend void swap(listModel& a, listModel& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline listModel* New() const PROTOBUF_FINAL { return New(NULL); }
- listModel* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
- void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void CopyFrom(const listModel& from);
- void MergeFrom(const listModel& from);
- void Clear() PROTOBUF_FINAL;
- bool IsInitialized() const PROTOBUF_FINAL;
- size_t ByteSizeLong() const PROTOBUF_FINAL;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
- ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
- int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const PROTOBUF_FINAL;
- void InternalSwap(listModel* other);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return NULL;
- }
- inline void* MaybeArenaPtr() const {
- return NULL;
- }
- public:
- ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // repeated .satdDatabase.model models = 10;
- int models_size() const;
- void clear_models();
- static const int kModelsFieldNumber = 10;
- const ::satdDatabase::model& models(int index) const;
- ::satdDatabase::model* mutable_models(int index);
- ::satdDatabase::model* add_models();
- ::google::protobuf::RepeatedPtrField< ::satdDatabase::model >*
- mutable_models();
- const ::google::protobuf::RepeatedPtrField< ::satdDatabase::model >&
- models() const;
- // @@protoc_insertion_point(class_scope:satdDatabase.listModel)
- private:
- ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
- ::google::protobuf::RepeatedPtrField< ::satdDatabase::model > models_;
- mutable int _cached_size_;
- friend struct ::protobuf_table_2eproto::TableStruct;
- friend void ::protobuf_table_2eproto::InitDefaultslistModelImpl();
- };
- // -------------------------------------------------------------------
- class modelContent : public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:satdDatabase.modelContent) */ {
- public:
- modelContent();
- virtual ~modelContent();
- modelContent(const modelContent& from);
- inline modelContent& operator=(const modelContent& from) {
- CopyFrom(from);
- return *this;
- }
- #if LANG_CXX11
- modelContent(modelContent&& from) noexcept
- : modelContent() {
- *this = ::std::move(from);
- }
- inline modelContent& operator=(modelContent&& from) noexcept {
- if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
- if (this != &from) InternalSwap(&from);
- } else {
- CopyFrom(from);
- }
- return *this;
- }
- #endif
- static const ::google::protobuf::Descriptor* descriptor();
- static const modelContent& default_instance();
- static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
- static inline const modelContent* internal_default_instance() {
- return reinterpret_cast<const modelContent*>(
- &_modelContent_default_instance_);
- }
- static PROTOBUF_CONSTEXPR int const kIndexInFileMessages =
- 5;
- void Swap(modelContent* other);
- friend void swap(modelContent& a, modelContent& b) {
- a.Swap(&b);
- }
- // implements Message ----------------------------------------------
- inline modelContent* New() const PROTOBUF_FINAL { return New(NULL); }
- modelContent* New(::google::protobuf::Arena* arena) const PROTOBUF_FINAL;
- void CopyFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void MergeFrom(const ::google::protobuf::Message& from) PROTOBUF_FINAL;
- void CopyFrom(const modelContent& from);
- void MergeFrom(const modelContent& from);
- void Clear() PROTOBUF_FINAL;
- bool IsInitialized() const PROTOBUF_FINAL;
- size_t ByteSizeLong() const PROTOBUF_FINAL;
- bool MergePartialFromCodedStream(
- ::google::protobuf::io::CodedInputStream* input) PROTOBUF_FINAL;
- void SerializeWithCachedSizes(
- ::google::protobuf::io::CodedOutputStream* output) const PROTOBUF_FINAL;
- ::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
- bool deterministic, ::google::protobuf::uint8* target) const PROTOBUF_FINAL;
- int GetCachedSize() const PROTOBUF_FINAL { return _cached_size_; }
- private:
- void SharedCtor();
- void SharedDtor();
- void SetCachedSize(int size) const PROTOBUF_FINAL;
- void InternalSwap(modelContent* other);
- private:
- inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
- return NULL;
- }
- inline void* MaybeArenaPtr() const {
- return NULL;
- }
- public:
- ::google::protobuf::Metadata GetMetadata() const PROTOBUF_FINAL;
- // nested types ----------------------------------------------------
- // accessors -------------------------------------------------------
- // string complieTime = 11;
- void clear_complietime();
- static const int kComplieTimeFieldNumber = 11;
- const ::std::string& complietime() const;
- void set_complietime(const ::std::string& value);
- #if LANG_CXX11
- void set_complietime(::std::string&& value);
- #endif
- void set_complietime(const char* value);
- void set_complietime(const char* value, size_t size);
- ::std::string* mutable_complietime();
- ::std::string* release_complietime();
- void set_allocated_complietime(::std::string* complietime);
- // string projectModel = 12;
- void clear_projectmodel();
- static const int kProjectModelFieldNumber = 12;
- const ::std::string& projectmodel() const;
- void set_projectmodel(const ::std::string& value);
- #if LANG_CXX11
- void set_projectmodel(::std::string&& value);
- #endif
- void set_projectmodel(const char* value);
- void set_projectmodel(const char* value, size_t size);
- ::std::string* mutable_projectmodel();
- ::std::string* release_projectmodel();
- void set_allocated_projectmodel(::std::string* projectmodel);
- // string productName = 13;
- void clear_productname();
- static const int kProductNameFieldNumber = 13;
- const ::std::string& productname() const;
- void set_productname(const ::std::string& value);
- #if LANG_CXX11
- void set_productname(::std::string&& value);
- #endif
- void set_productname(const char* value);
- void set_productname(const char* value, size_t size);
- ::std::string* mutable_productname();
- ::std::string* release_productname();
- void set_allocated_productname(::std::string* productname);
- // string svndir = 14;
- void clear_svndir();
- static const int kSvndirFieldNumber = 14;
- const ::std::string& svndir() const;
- void set_svndir(const ::std::string& value);
- #if LANG_CXX11
- void set_svndir(::std::string&& value);
- #endif
- void set_svndir(const char* value);
- void set_svndir(const char* value, size_t size);
- ::std::string* mutable_svndir();
- ::std::string* release_svndir();
- void set_allocated_svndir(::std::string* svndir);
- // string command = 15;
- void clear_command();
- static const int kCommandFieldNumber = 15;
- const ::std::string& command() const;
- void set_command(const ::std::string& value);
- #if LANG_CXX11
- void set_command(::std::string&& value);
- #endif
- void set_command(const char* value);
- void set_command(const char* value, size_t size);
- ::std::string* mutable_command();
- ::std::string* release_command();
- void set_allocated_command(::std::string* command);
- // string projectName = 16;
- void clear_projectname();
- static const int kProjectNameFieldNumber = 16;
- const ::std::string& projectname() const;
- void set_projectname(const ::std::string& value);
- #if LANG_CXX11
- void set_projectname(::std::string&& value);
- #endif
- void set_projectname(const char* value);
- void set_projectname(const char* value, size_t size);
- ::std::string* mutable_projectname();
- ::std::string* release_projectname();
- void set_allocated_projectname(::std::string* projectname);
- // string projectSN = 17;
- void clear_projectsn();
- static const int kProjectSNFieldNumber = 17;
- const ::std::string& projectsn() const;
- void set_projectsn(const ::std::string& value);
- #if LANG_CXX11
- void set_projectsn(::std::string&& value);
- #endif
- void set_projectsn(const char* value);
- void set_projectsn(const char* value, size_t size);
- ::std::string* mutable_projectsn();
- ::std::string* release_projectsn();
- void set_allocated_projectsn(::std::string* projectsn);
- // string softVer = 18;
- void clear_softver();
- static const int kSoftVerFieldNumber = 18;
- const ::std::string& softver() const;
- void set_softver(const ::std::string& value);
- #if LANG_CXX11
- void set_softver(::std::string&& value);
- #endif
- void set_softver(const char* value);
- void set_softver(const char* value, size_t size);
- ::std::string* mutable_softver();
- ::std::string* release_softver();
- void set_allocated_softver(::std::string* softver);
- // string svnVer = 19;
- void clear_svnver();
- static const int kSvnVerFieldNumber = 19;
- const ::std::string& svnver() const;
- void set_svnver(const ::std::string& value);
- #if LANG_CXX11
- void set_svnver(::std::string&& value);
- #endif
- void set_svnver(const char* value);
- void set_svnver(const char* value, size_t size);
- ::std::string* mutable_svnver();
- ::std::string* release_svnver();
- void set_allocated_svnver(::std::string* svnver);
- // string projectID = 20;
- void clear_projectid();
- static const int kProjectIDFieldNumber = 20;
- const ::std::string& projectid() const;
- void set_projectid(const ::std::string& value);
- #if LANG_CXX11
- void set_projectid(::std::string&& value);
- #endif
- void set_projectid(const char* value);
- void set_projectid(const char* value, size_t size);
- ::std::string* mutable_projectid();
- ::std::string* release_projectid();
- void set_allocated_projectid(::std::string* projectid);
- // string zone = 21;
- void clear_zone();
- static const int kZoneFieldNumber = 21;
- const ::std::string& zone() const;
- void set_zone(const ::std::string& value);
- #if LANG_CXX11
- void set_zone(::std::string&& value);
- #endif
- void set_zone(const char* value);
- void set_zone(const char* value, size_t size);
- ::std::string* mutable_zone();
- ::std::string* release_zone();
- void set_allocated_zone(::std::string* zone);
- // string UIStyle = 22;
- void clear_uistyle();
- static const int kUIStyleFieldNumber = 22;
- const ::std::string& uistyle() const;
- void set_uistyle(const ::std::string& value);
- #if LANG_CXX11
- void set_uistyle(::std::string&& value);
- #endif
- void set_uistyle(const char* value);
- void set_uistyle(const char* value, size_t size);
- ::std::string* mutable_uistyle();
- ::std::string* release_uistyle();
- void set_allocated_uistyle(::std::string* uistyle);
- // string complieFileDir = 23;
- void clear_compliefiledir();
- static const int kComplieFileDirFieldNumber = 23;
- const ::std::string& compliefiledir() const;
- void set_compliefiledir(const ::std::string& value);
- #if LANG_CXX11
- void set_compliefiledir(::std::string&& value);
- #endif
- void set_compliefiledir(const char* value);
- void set_compliefiledir(const char* value, size_t size);
- ::std::string* mutable_compliefiledir();
- ::std::string* release_compliefiledir();
- void set_allocated_compliefiledir(::std::string* compliefiledir);
- // string userName = 24;
- void clear_username();
- static const int kUserNameFieldNumber = 24;
- const ::std::string& username() const;
- void set_username(const ::std::string& value);
- #if LANG_CXX11
- void set_username(::std::string&& value);
- #endif
- void set_username(const char* value);
- void set_username(const char* value, size_t size);
- ::std::string* mutable_username();
- ::std::string* release_username();
- void set_allocated_username(::std::string* username);
- // string time = 25;
- void clear_time();
- static const int kTimeFieldNumber = 25;
- const ::std::string& time() const;
- void set_time(const ::std::string& value);
- #if LANG_CXX11
- void set_time(::std::string&& value);
- #endif
- void set_time(const char* value);
- void set_time(const char* value, size_t size);
- ::std::string* mutable_time();
- ::std::string* release_time();
- void set_allocated_time(::std::string* time);
- // @@protoc_insertion_point(class_scope:satdDatabase.modelContent)
- private:
- ::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
- ::google::protobuf::internal::ArenaStringPtr complietime_;
- ::google::protobuf::internal::ArenaStringPtr projectmodel_;
- ::google::protobuf::internal::ArenaStringPtr productname_;
- ::google::protobuf::internal::ArenaStringPtr svndir_;
- ::google::protobuf::internal::ArenaStringPtr command_;
- ::google::protobuf::internal::ArenaStringPtr projectname_;
- ::google::protobuf::internal::ArenaStringPtr projectsn_;
- ::google::protobuf::internal::ArenaStringPtr softver_;
- ::google::protobuf::internal::ArenaStringPtr svnver_;
- ::google::protobuf::internal::ArenaStringPtr projectid_;
- ::google::protobuf::internal::ArenaStringPtr zone_;
- ::google::protobuf::internal::ArenaStringPtr uistyle_;
- ::google::protobuf::internal::ArenaStringPtr compliefiledir_;
- ::google::protobuf::internal::ArenaStringPtr username_;
- ::google::protobuf::internal::ArenaStringPtr time_;
- mutable int _cached_size_;
- friend struct ::protobuf_table_2eproto::TableStruct;
- friend void ::protobuf_table_2eproto::InitDefaultsmodelContentImpl();
- };
- // ===================================================================
- // ===================================================================
- #ifdef __GNUC__
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wstrict-aliasing"
- #endif // __GNUC__
- // complieServer
- // string server = 1;
- inline void complieServer::clear_server() {
- server_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline const ::std::string& complieServer::server() const {
- // @@protoc_insertion_point(field_get:satdDatabase.complieServer.server)
- return server_.GetNoArena();
- }
- inline void complieServer::set_server(const ::std::string& value) {
-
- server_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
- // @@protoc_insertion_point(field_set:satdDatabase.complieServer.server)
- }
- #if LANG_CXX11
- inline void complieServer::set_server(::std::string&& value) {
-
- server_.SetNoArena(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
- // @@protoc_insertion_point(field_set_rvalue:satdDatabase.complieServer.server)
- }
- #endif
- inline void complieServer::set_server(const char* value) {
- GOOGLE_DCHECK(value != NULL);
-
- server_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
- // @@protoc_insertion_point(field_set_char:satdDatabase.complieServer.server)
- }
- inline void complieServer::set_server(const char* value, size_t size) {
-
- server_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- ::std::string(reinterpret_cast<const char*>(value), size));
- // @@protoc_insertion_point(field_set_pointer:satdDatabase.complieServer.server)
- }
- inline ::std::string* complieServer::mutable_server() {
-
- // @@protoc_insertion_point(field_mutable:satdDatabase.complieServer.server)
- return server_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline ::std::string* complieServer::release_server() {
- // @@protoc_insertion_point(field_release:satdDatabase.complieServer.server)
-
- return server_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline void complieServer::set_allocated_server(::std::string* server) {
- if (server != NULL) {
-
- } else {
-
- }
- server_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), server);
- // @@protoc_insertion_point(field_set_allocated:satdDatabase.complieServer.server)
- }
- // string user = 2;
- inline void complieServer::clear_user() {
- user_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline const ::std::string& complieServer::user() const {
- // @@protoc_insertion_point(field_get:satdDatabase.complieServer.user)
- return user_.GetNoArena();
- }
- inline void complieServer::set_user(const ::std::string& value) {
-
- user_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
- // @@protoc_insertion_point(field_set:satdDatabase.complieServer.user)
- }
- #if LANG_CXX11
- inline void complieServer::set_user(::std::string&& value) {
-
- user_.SetNoArena(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
- // @@protoc_insertion_point(field_set_rvalue:satdDatabase.complieServer.user)
- }
- #endif
- inline void complieServer::set_user(const char* value) {
- GOOGLE_DCHECK(value != NULL);
-
- user_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
- // @@protoc_insertion_point(field_set_char:satdDatabase.complieServer.user)
- }
- inline void complieServer::set_user(const char* value, size_t size) {
-
- user_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- ::std::string(reinterpret_cast<const char*>(value), size));
- // @@protoc_insertion_point(field_set_pointer:satdDatabase.complieServer.user)
- }
- inline ::std::string* complieServer::mutable_user() {
-
- // @@protoc_insertion_point(field_mutable:satdDatabase.complieServer.user)
- return user_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline ::std::string* complieServer::release_user() {
- // @@protoc_insertion_point(field_release:satdDatabase.complieServer.user)
-
- return user_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline void complieServer::set_allocated_user(::std::string* user) {
- if (user != NULL) {
-
- } else {
-
- }
- user_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), user);
- // @@protoc_insertion_point(field_set_allocated:satdDatabase.complieServer.user)
- }
- // string password = 3;
- inline void complieServer::clear_password() {
- password_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline const ::std::string& complieServer::password() const {
- // @@protoc_insertion_point(field_get:satdDatabase.complieServer.password)
- return password_.GetNoArena();
- }
- inline void complieServer::set_password(const ::std::string& value) {
-
- password_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
- // @@protoc_insertion_point(field_set:satdDatabase.complieServer.password)
- }
- #if LANG_CXX11
- inline void complieServer::set_password(::std::string&& value) {
-
- password_.SetNoArena(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
- // @@protoc_insertion_point(field_set_rvalue:satdDatabase.complieServer.password)
- }
- #endif
- inline void complieServer::set_password(const char* value) {
- GOOGLE_DCHECK(value != NULL);
-
- password_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
- // @@protoc_insertion_point(field_set_char:satdDatabase.complieServer.password)
- }
- inline void complieServer::set_password(const char* value, size_t size) {
-
- password_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- ::std::string(reinterpret_cast<const char*>(value), size));
- // @@protoc_insertion_point(field_set_pointer:satdDatabase.complieServer.password)
- }
- inline ::std::string* complieServer::mutable_password() {
-
- // @@protoc_insertion_point(field_mutable:satdDatabase.complieServer.password)
- return password_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline ::std::string* complieServer::release_password() {
- // @@protoc_insertion_point(field_release:satdDatabase.complieServer.password)
-
- return password_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline void complieServer::set_allocated_password(::std::string* password) {
- if (password != NULL) {
-
- } else {
-
- }
- password_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), password);
- // @@protoc_insertion_point(field_set_allocated:satdDatabase.complieServer.password)
- }
- // -------------------------------------------------------------------
- // listServer
- // repeated .satdDatabase.complieServer servers = 4;
- inline int listServer::servers_size() const {
- return servers_.size();
- }
- inline void listServer::clear_servers() {
- servers_.Clear();
- }
- inline const ::satdDatabase::complieServer& listServer::servers(int index) const {
- // @@protoc_insertion_point(field_get:satdDatabase.listServer.servers)
- return servers_.Get(index);
- }
- inline ::satdDatabase::complieServer* listServer::mutable_servers(int index) {
- // @@protoc_insertion_point(field_mutable:satdDatabase.listServer.servers)
- return servers_.Mutable(index);
- }
- inline ::satdDatabase::complieServer* listServer::add_servers() {
- // @@protoc_insertion_point(field_add:satdDatabase.listServer.servers)
- return servers_.Add();
- }
- inline ::google::protobuf::RepeatedPtrField< ::satdDatabase::complieServer >*
- listServer::mutable_servers() {
- // @@protoc_insertion_point(field_mutable_list:satdDatabase.listServer.servers)
- return &servers_;
- }
- inline const ::google::protobuf::RepeatedPtrField< ::satdDatabase::complieServer >&
- listServer::servers() const {
- // @@protoc_insertion_point(field_list:satdDatabase.listServer.servers)
- return servers_;
- }
- // -------------------------------------------------------------------
- // listEndFlag
- // repeated string terminator = 5;
- inline int listEndFlag::terminator_size() const {
- return terminator_.size();
- }
- inline void listEndFlag::clear_terminator() {
- terminator_.Clear();
- }
- inline const ::std::string& listEndFlag::terminator(int index) const {
- // @@protoc_insertion_point(field_get:satdDatabase.listEndFlag.terminator)
- return terminator_.Get(index);
- }
- inline ::std::string* listEndFlag::mutable_terminator(int index) {
- // @@protoc_insertion_point(field_mutable:satdDatabase.listEndFlag.terminator)
- return terminator_.Mutable(index);
- }
- inline void listEndFlag::set_terminator(int index, const ::std::string& value) {
- // @@protoc_insertion_point(field_set:satdDatabase.listEndFlag.terminator)
- terminator_.Mutable(index)->assign(value);
- }
- #if LANG_CXX11
- inline void listEndFlag::set_terminator(int index, ::std::string&& value) {
- // @@protoc_insertion_point(field_set:satdDatabase.listEndFlag.terminator)
- terminator_.Mutable(index)->assign(std::move(value));
- }
- #endif
- inline void listEndFlag::set_terminator(int index, const char* value) {
- GOOGLE_DCHECK(value != NULL);
- terminator_.Mutable(index)->assign(value);
- // @@protoc_insertion_point(field_set_char:satdDatabase.listEndFlag.terminator)
- }
- inline void listEndFlag::set_terminator(int index, const char* value, size_t size) {
- terminator_.Mutable(index)->assign(
- reinterpret_cast<const char*>(value), size);
- // @@protoc_insertion_point(field_set_pointer:satdDatabase.listEndFlag.terminator)
- }
- inline ::std::string* listEndFlag::add_terminator() {
- // @@protoc_insertion_point(field_add_mutable:satdDatabase.listEndFlag.terminator)
- return terminator_.Add();
- }
- inline void listEndFlag::add_terminator(const ::std::string& value) {
- terminator_.Add()->assign(value);
- // @@protoc_insertion_point(field_add:satdDatabase.listEndFlag.terminator)
- }
- #if LANG_CXX11
- inline void listEndFlag::add_terminator(::std::string&& value) {
- terminator_.Add(std::move(value));
- // @@protoc_insertion_point(field_add:satdDatabase.listEndFlag.terminator)
- }
- #endif
- inline void listEndFlag::add_terminator(const char* value) {
- GOOGLE_DCHECK(value != NULL);
- terminator_.Add()->assign(value);
- // @@protoc_insertion_point(field_add_char:satdDatabase.listEndFlag.terminator)
- }
- inline void listEndFlag::add_terminator(const char* value, size_t size) {
- terminator_.Add()->assign(reinterpret_cast<const char*>(value), size);
- // @@protoc_insertion_point(field_add_pointer:satdDatabase.listEndFlag.terminator)
- }
- inline const ::google::protobuf::RepeatedPtrField< ::std::string>&
- listEndFlag::terminator() const {
- // @@protoc_insertion_point(field_list:satdDatabase.listEndFlag.terminator)
- return terminator_;
- }
- inline ::google::protobuf::RepeatedPtrField< ::std::string>*
- listEndFlag::mutable_terminator() {
- // @@protoc_insertion_point(field_mutable_list:satdDatabase.listEndFlag.terminator)
- return &terminator_;
- }
- // -------------------------------------------------------------------
- // model
- // string name = 6;
- inline void model::clear_name() {
- name_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline const ::std::string& model::name() const {
- // @@protoc_insertion_point(field_get:satdDatabase.model.name)
- return name_.GetNoArena();
- }
- inline void model::set_name(const ::std::string& value) {
-
- name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
- // @@protoc_insertion_point(field_set:satdDatabase.model.name)
- }
- #if LANG_CXX11
- inline void model::set_name(::std::string&& value) {
-
- name_.SetNoArena(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
- // @@protoc_insertion_point(field_set_rvalue:satdDatabase.model.name)
- }
- #endif
- inline void model::set_name(const char* value) {
- GOOGLE_DCHECK(value != NULL);
-
- name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
- // @@protoc_insertion_point(field_set_char:satdDatabase.model.name)
- }
- inline void model::set_name(const char* value, size_t size) {
-
- name_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- ::std::string(reinterpret_cast<const char*>(value), size));
- // @@protoc_insertion_point(field_set_pointer:satdDatabase.model.name)
- }
- inline ::std::string* model::mutable_name() {
-
- // @@protoc_insertion_point(field_mutable:satdDatabase.model.name)
- return name_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline ::std::string* model::release_name() {
- // @@protoc_insertion_point(field_release:satdDatabase.model.name)
-
- return name_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline void model::set_allocated_name(::std::string* name) {
- if (name != NULL) {
-
- } else {
-
- }
- name_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), name);
- // @@protoc_insertion_point(field_set_allocated:satdDatabase.model.name)
- }
- // string softSuffix = 7;
- inline void model::clear_softsuffix() {
- softsuffix_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline const ::std::string& model::softsuffix() const {
- // @@protoc_insertion_point(field_get:satdDatabase.model.softSuffix)
- return softsuffix_.GetNoArena();
- }
- inline void model::set_softsuffix(const ::std::string& value) {
-
- softsuffix_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
- // @@protoc_insertion_point(field_set:satdDatabase.model.softSuffix)
- }
- #if LANG_CXX11
- inline void model::set_softsuffix(::std::string&& value) {
-
- softsuffix_.SetNoArena(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
- // @@protoc_insertion_point(field_set_rvalue:satdDatabase.model.softSuffix)
- }
- #endif
- inline void model::set_softsuffix(const char* value) {
- GOOGLE_DCHECK(value != NULL);
-
- softsuffix_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
- // @@protoc_insertion_point(field_set_char:satdDatabase.model.softSuffix)
- }
- inline void model::set_softsuffix(const char* value, size_t size) {
-
- softsuffix_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- ::std::string(reinterpret_cast<const char*>(value), size));
- // @@protoc_insertion_point(field_set_pointer:satdDatabase.model.softSuffix)
- }
- inline ::std::string* model::mutable_softsuffix() {
-
- // @@protoc_insertion_point(field_mutable:satdDatabase.model.softSuffix)
- return softsuffix_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline ::std::string* model::release_softsuffix() {
- // @@protoc_insertion_point(field_release:satdDatabase.model.softSuffix)
-
- return softsuffix_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline void model::set_allocated_softsuffix(::std::string* softsuffix) {
- if (softsuffix != NULL) {
-
- } else {
-
- }
- softsuffix_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), softsuffix);
- // @@protoc_insertion_point(field_set_allocated:satdDatabase.model.softSuffix)
- }
- // .satdDatabase.listEndFlag flags = 8;
- inline bool model::has_flags() const {
- return this != internal_default_instance() && flags_ != NULL;
- }
- inline void model::clear_flags() {
- if (GetArenaNoVirtual() == NULL && flags_ != NULL) {
- delete flags_;
- }
- flags_ = NULL;
- }
- inline const ::satdDatabase::listEndFlag& model::flags() const {
- const ::satdDatabase::listEndFlag* p = flags_;
- // @@protoc_insertion_point(field_get:satdDatabase.model.flags)
- return p != NULL ? *p : *reinterpret_cast<const ::satdDatabase::listEndFlag*>(
- &::satdDatabase::_listEndFlag_default_instance_);
- }
- inline ::satdDatabase::listEndFlag* model::release_flags() {
- // @@protoc_insertion_point(field_release:satdDatabase.model.flags)
-
- ::satdDatabase::listEndFlag* temp = flags_;
- flags_ = NULL;
- return temp;
- }
- inline ::satdDatabase::listEndFlag* model::mutable_flags() {
-
- if (flags_ == NULL) {
- flags_ = new ::satdDatabase::listEndFlag;
- }
- // @@protoc_insertion_point(field_mutable:satdDatabase.model.flags)
- return flags_;
- }
- inline void model::set_allocated_flags(::satdDatabase::listEndFlag* flags) {
- ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
- if (message_arena == NULL) {
- delete flags_;
- }
- if (flags) {
- ::google::protobuf::Arena* submessage_arena = NULL;
- if (message_arena != submessage_arena) {
- flags = ::google::protobuf::internal::GetOwnedMessage(
- message_arena, flags, submessage_arena);
- }
-
- } else {
-
- }
- flags_ = flags;
- // @@protoc_insertion_point(field_set_allocated:satdDatabase.model.flags)
- }
- // .satdDatabase.modelContent content = 9;
- inline bool model::has_content() const {
- return this != internal_default_instance() && content_ != NULL;
- }
- inline void model::clear_content() {
- if (GetArenaNoVirtual() == NULL && content_ != NULL) {
- delete content_;
- }
- content_ = NULL;
- }
- inline const ::satdDatabase::modelContent& model::content() const {
- const ::satdDatabase::modelContent* p = content_;
- // @@protoc_insertion_point(field_get:satdDatabase.model.content)
- return p != NULL ? *p : *reinterpret_cast<const ::satdDatabase::modelContent*>(
- &::satdDatabase::_modelContent_default_instance_);
- }
- inline ::satdDatabase::modelContent* model::release_content() {
- // @@protoc_insertion_point(field_release:satdDatabase.model.content)
-
- ::satdDatabase::modelContent* temp = content_;
- content_ = NULL;
- return temp;
- }
- inline ::satdDatabase::modelContent* model::mutable_content() {
-
- if (content_ == NULL) {
- content_ = new ::satdDatabase::modelContent;
- }
- // @@protoc_insertion_point(field_mutable:satdDatabase.model.content)
- return content_;
- }
- inline void model::set_allocated_content(::satdDatabase::modelContent* content) {
- ::google::protobuf::Arena* message_arena = GetArenaNoVirtual();
- if (message_arena == NULL) {
- delete content_;
- }
- if (content) {
- ::google::protobuf::Arena* submessage_arena = NULL;
- if (message_arena != submessage_arena) {
- content = ::google::protobuf::internal::GetOwnedMessage(
- message_arena, content, submessage_arena);
- }
-
- } else {
-
- }
- content_ = content;
- // @@protoc_insertion_point(field_set_allocated:satdDatabase.model.content)
- }
- // -------------------------------------------------------------------
- // listModel
- // repeated .satdDatabase.model models = 10;
- inline int listModel::models_size() const {
- return models_.size();
- }
- inline void listModel::clear_models() {
- models_.Clear();
- }
- inline const ::satdDatabase::model& listModel::models(int index) const {
- // @@protoc_insertion_point(field_get:satdDatabase.listModel.models)
- return models_.Get(index);
- }
- inline ::satdDatabase::model* listModel::mutable_models(int index) {
- // @@protoc_insertion_point(field_mutable:satdDatabase.listModel.models)
- return models_.Mutable(index);
- }
- inline ::satdDatabase::model* listModel::add_models() {
- // @@protoc_insertion_point(field_add:satdDatabase.listModel.models)
- return models_.Add();
- }
- inline ::google::protobuf::RepeatedPtrField< ::satdDatabase::model >*
- listModel::mutable_models() {
- // @@protoc_insertion_point(field_mutable_list:satdDatabase.listModel.models)
- return &models_;
- }
- inline const ::google::protobuf::RepeatedPtrField< ::satdDatabase::model >&
- listModel::models() const {
- // @@protoc_insertion_point(field_list:satdDatabase.listModel.models)
- return models_;
- }
- // -------------------------------------------------------------------
- // modelContent
- // string complieTime = 11;
- inline void modelContent::clear_complietime() {
- complietime_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline const ::std::string& modelContent::complietime() const {
- // @@protoc_insertion_point(field_get:satdDatabase.modelContent.complieTime)
- return complietime_.GetNoArena();
- }
- inline void modelContent::set_complietime(const ::std::string& value) {
-
- complietime_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
- // @@protoc_insertion_point(field_set:satdDatabase.modelContent.complieTime)
- }
- #if LANG_CXX11
- inline void modelContent::set_complietime(::std::string&& value) {
-
- complietime_.SetNoArena(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
- // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.complieTime)
- }
- #endif
- inline void modelContent::set_complietime(const char* value) {
- GOOGLE_DCHECK(value != NULL);
-
- complietime_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
- // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.complieTime)
- }
- inline void modelContent::set_complietime(const char* value, size_t size) {
-
- complietime_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- ::std::string(reinterpret_cast<const char*>(value), size));
- // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.complieTime)
- }
- inline ::std::string* modelContent::mutable_complietime() {
-
- // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.complieTime)
- return complietime_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline ::std::string* modelContent::release_complietime() {
- // @@protoc_insertion_point(field_release:satdDatabase.modelContent.complieTime)
-
- return complietime_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline void modelContent::set_allocated_complietime(::std::string* complietime) {
- if (complietime != NULL) {
-
- } else {
-
- }
- complietime_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), complietime);
- // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.complieTime)
- }
- // string projectModel = 12;
- inline void modelContent::clear_projectmodel() {
- projectmodel_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline const ::std::string& modelContent::projectmodel() const {
- // @@protoc_insertion_point(field_get:satdDatabase.modelContent.projectModel)
- return projectmodel_.GetNoArena();
- }
- inline void modelContent::set_projectmodel(const ::std::string& value) {
-
- projectmodel_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
- // @@protoc_insertion_point(field_set:satdDatabase.modelContent.projectModel)
- }
- #if LANG_CXX11
- inline void modelContent::set_projectmodel(::std::string&& value) {
-
- projectmodel_.SetNoArena(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
- // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.projectModel)
- }
- #endif
- inline void modelContent::set_projectmodel(const char* value) {
- GOOGLE_DCHECK(value != NULL);
-
- projectmodel_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
- // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.projectModel)
- }
- inline void modelContent::set_projectmodel(const char* value, size_t size) {
-
- projectmodel_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- ::std::string(reinterpret_cast<const char*>(value), size));
- // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.projectModel)
- }
- inline ::std::string* modelContent::mutable_projectmodel() {
-
- // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.projectModel)
- return projectmodel_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline ::std::string* modelContent::release_projectmodel() {
- // @@protoc_insertion_point(field_release:satdDatabase.modelContent.projectModel)
-
- return projectmodel_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline void modelContent::set_allocated_projectmodel(::std::string* projectmodel) {
- if (projectmodel != NULL) {
-
- } else {
-
- }
- projectmodel_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), projectmodel);
- // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.projectModel)
- }
- // string productName = 13;
- inline void modelContent::clear_productname() {
- productname_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline const ::std::string& modelContent::productname() const {
- // @@protoc_insertion_point(field_get:satdDatabase.modelContent.productName)
- return productname_.GetNoArena();
- }
- inline void modelContent::set_productname(const ::std::string& value) {
-
- productname_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
- // @@protoc_insertion_point(field_set:satdDatabase.modelContent.productName)
- }
- #if LANG_CXX11
- inline void modelContent::set_productname(::std::string&& value) {
-
- productname_.SetNoArena(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
- // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.productName)
- }
- #endif
- inline void modelContent::set_productname(const char* value) {
- GOOGLE_DCHECK(value != NULL);
-
- productname_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
- // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.productName)
- }
- inline void modelContent::set_productname(const char* value, size_t size) {
-
- productname_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- ::std::string(reinterpret_cast<const char*>(value), size));
- // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.productName)
- }
- inline ::std::string* modelContent::mutable_productname() {
-
- // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.productName)
- return productname_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline ::std::string* modelContent::release_productname() {
- // @@protoc_insertion_point(field_release:satdDatabase.modelContent.productName)
-
- return productname_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline void modelContent::set_allocated_productname(::std::string* productname) {
- if (productname != NULL) {
-
- } else {
-
- }
- productname_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), productname);
- // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.productName)
- }
- // string svndir = 14;
- inline void modelContent::clear_svndir() {
- svndir_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline const ::std::string& modelContent::svndir() const {
- // @@protoc_insertion_point(field_get:satdDatabase.modelContent.svndir)
- return svndir_.GetNoArena();
- }
- inline void modelContent::set_svndir(const ::std::string& value) {
-
- svndir_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
- // @@protoc_insertion_point(field_set:satdDatabase.modelContent.svndir)
- }
- #if LANG_CXX11
- inline void modelContent::set_svndir(::std::string&& value) {
-
- svndir_.SetNoArena(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
- // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.svndir)
- }
- #endif
- inline void modelContent::set_svndir(const char* value) {
- GOOGLE_DCHECK(value != NULL);
-
- svndir_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
- // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.svndir)
- }
- inline void modelContent::set_svndir(const char* value, size_t size) {
-
- svndir_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- ::std::string(reinterpret_cast<const char*>(value), size));
- // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.svndir)
- }
- inline ::std::string* modelContent::mutable_svndir() {
-
- // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.svndir)
- return svndir_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline ::std::string* modelContent::release_svndir() {
- // @@protoc_insertion_point(field_release:satdDatabase.modelContent.svndir)
-
- return svndir_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline void modelContent::set_allocated_svndir(::std::string* svndir) {
- if (svndir != NULL) {
-
- } else {
-
- }
- svndir_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), svndir);
- // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.svndir)
- }
- // string command = 15;
- inline void modelContent::clear_command() {
- command_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline const ::std::string& modelContent::command() const {
- // @@protoc_insertion_point(field_get:satdDatabase.modelContent.command)
- return command_.GetNoArena();
- }
- inline void modelContent::set_command(const ::std::string& value) {
-
- command_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
- // @@protoc_insertion_point(field_set:satdDatabase.modelContent.command)
- }
- #if LANG_CXX11
- inline void modelContent::set_command(::std::string&& value) {
-
- command_.SetNoArena(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
- // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.command)
- }
- #endif
- inline void modelContent::set_command(const char* value) {
- GOOGLE_DCHECK(value != NULL);
-
- command_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
- // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.command)
- }
- inline void modelContent::set_command(const char* value, size_t size) {
-
- command_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- ::std::string(reinterpret_cast<const char*>(value), size));
- // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.command)
- }
- inline ::std::string* modelContent::mutable_command() {
-
- // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.command)
- return command_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline ::std::string* modelContent::release_command() {
- // @@protoc_insertion_point(field_release:satdDatabase.modelContent.command)
-
- return command_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline void modelContent::set_allocated_command(::std::string* command) {
- if (command != NULL) {
-
- } else {
-
- }
- command_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), command);
- // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.command)
- }
- // string projectName = 16;
- inline void modelContent::clear_projectname() {
- projectname_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline const ::std::string& modelContent::projectname() const {
- // @@protoc_insertion_point(field_get:satdDatabase.modelContent.projectName)
- return projectname_.GetNoArena();
- }
- inline void modelContent::set_projectname(const ::std::string& value) {
-
- projectname_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
- // @@protoc_insertion_point(field_set:satdDatabase.modelContent.projectName)
- }
- #if LANG_CXX11
- inline void modelContent::set_projectname(::std::string&& value) {
-
- projectname_.SetNoArena(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
- // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.projectName)
- }
- #endif
- inline void modelContent::set_projectname(const char* value) {
- GOOGLE_DCHECK(value != NULL);
-
- projectname_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
- // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.projectName)
- }
- inline void modelContent::set_projectname(const char* value, size_t size) {
-
- projectname_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- ::std::string(reinterpret_cast<const char*>(value), size));
- // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.projectName)
- }
- inline ::std::string* modelContent::mutable_projectname() {
-
- // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.projectName)
- return projectname_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline ::std::string* modelContent::release_projectname() {
- // @@protoc_insertion_point(field_release:satdDatabase.modelContent.projectName)
-
- return projectname_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline void modelContent::set_allocated_projectname(::std::string* projectname) {
- if (projectname != NULL) {
-
- } else {
-
- }
- projectname_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), projectname);
- // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.projectName)
- }
- // string projectSN = 17;
- inline void modelContent::clear_projectsn() {
- projectsn_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline const ::std::string& modelContent::projectsn() const {
- // @@protoc_insertion_point(field_get:satdDatabase.modelContent.projectSN)
- return projectsn_.GetNoArena();
- }
- inline void modelContent::set_projectsn(const ::std::string& value) {
-
- projectsn_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
- // @@protoc_insertion_point(field_set:satdDatabase.modelContent.projectSN)
- }
- #if LANG_CXX11
- inline void modelContent::set_projectsn(::std::string&& value) {
-
- projectsn_.SetNoArena(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
- // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.projectSN)
- }
- #endif
- inline void modelContent::set_projectsn(const char* value) {
- GOOGLE_DCHECK(value != NULL);
-
- projectsn_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
- // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.projectSN)
- }
- inline void modelContent::set_projectsn(const char* value, size_t size) {
-
- projectsn_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- ::std::string(reinterpret_cast<const char*>(value), size));
- // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.projectSN)
- }
- inline ::std::string* modelContent::mutable_projectsn() {
-
- // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.projectSN)
- return projectsn_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline ::std::string* modelContent::release_projectsn() {
- // @@protoc_insertion_point(field_release:satdDatabase.modelContent.projectSN)
-
- return projectsn_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline void modelContent::set_allocated_projectsn(::std::string* projectsn) {
- if (projectsn != NULL) {
-
- } else {
-
- }
- projectsn_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), projectsn);
- // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.projectSN)
- }
- // string softVer = 18;
- inline void modelContent::clear_softver() {
- softver_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline const ::std::string& modelContent::softver() const {
- // @@protoc_insertion_point(field_get:satdDatabase.modelContent.softVer)
- return softver_.GetNoArena();
- }
- inline void modelContent::set_softver(const ::std::string& value) {
-
- softver_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
- // @@protoc_insertion_point(field_set:satdDatabase.modelContent.softVer)
- }
- #if LANG_CXX11
- inline void modelContent::set_softver(::std::string&& value) {
-
- softver_.SetNoArena(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
- // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.softVer)
- }
- #endif
- inline void modelContent::set_softver(const char* value) {
- GOOGLE_DCHECK(value != NULL);
-
- softver_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
- // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.softVer)
- }
- inline void modelContent::set_softver(const char* value, size_t size) {
-
- softver_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- ::std::string(reinterpret_cast<const char*>(value), size));
- // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.softVer)
- }
- inline ::std::string* modelContent::mutable_softver() {
-
- // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.softVer)
- return softver_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline ::std::string* modelContent::release_softver() {
- // @@protoc_insertion_point(field_release:satdDatabase.modelContent.softVer)
-
- return softver_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline void modelContent::set_allocated_softver(::std::string* softver) {
- if (softver != NULL) {
-
- } else {
-
- }
- softver_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), softver);
- // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.softVer)
- }
- // string svnVer = 19;
- inline void modelContent::clear_svnver() {
- svnver_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline const ::std::string& modelContent::svnver() const {
- // @@protoc_insertion_point(field_get:satdDatabase.modelContent.svnVer)
- return svnver_.GetNoArena();
- }
- inline void modelContent::set_svnver(const ::std::string& value) {
-
- svnver_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
- // @@protoc_insertion_point(field_set:satdDatabase.modelContent.svnVer)
- }
- #if LANG_CXX11
- inline void modelContent::set_svnver(::std::string&& value) {
-
- svnver_.SetNoArena(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
- // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.svnVer)
- }
- #endif
- inline void modelContent::set_svnver(const char* value) {
- GOOGLE_DCHECK(value != NULL);
-
- svnver_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
- // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.svnVer)
- }
- inline void modelContent::set_svnver(const char* value, size_t size) {
-
- svnver_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- ::std::string(reinterpret_cast<const char*>(value), size));
- // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.svnVer)
- }
- inline ::std::string* modelContent::mutable_svnver() {
-
- // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.svnVer)
- return svnver_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline ::std::string* modelContent::release_svnver() {
- // @@protoc_insertion_point(field_release:satdDatabase.modelContent.svnVer)
-
- return svnver_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline void modelContent::set_allocated_svnver(::std::string* svnver) {
- if (svnver != NULL) {
-
- } else {
-
- }
- svnver_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), svnver);
- // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.svnVer)
- }
- // string projectID = 20;
- inline void modelContent::clear_projectid() {
- projectid_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline const ::std::string& modelContent::projectid() const {
- // @@protoc_insertion_point(field_get:satdDatabase.modelContent.projectID)
- return projectid_.GetNoArena();
- }
- inline void modelContent::set_projectid(const ::std::string& value) {
-
- projectid_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
- // @@protoc_insertion_point(field_set:satdDatabase.modelContent.projectID)
- }
- #if LANG_CXX11
- inline void modelContent::set_projectid(::std::string&& value) {
-
- projectid_.SetNoArena(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
- // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.projectID)
- }
- #endif
- inline void modelContent::set_projectid(const char* value) {
- GOOGLE_DCHECK(value != NULL);
-
- projectid_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
- // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.projectID)
- }
- inline void modelContent::set_projectid(const char* value, size_t size) {
-
- projectid_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- ::std::string(reinterpret_cast<const char*>(value), size));
- // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.projectID)
- }
- inline ::std::string* modelContent::mutable_projectid() {
-
- // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.projectID)
- return projectid_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline ::std::string* modelContent::release_projectid() {
- // @@protoc_insertion_point(field_release:satdDatabase.modelContent.projectID)
-
- return projectid_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline void modelContent::set_allocated_projectid(::std::string* projectid) {
- if (projectid != NULL) {
-
- } else {
-
- }
- projectid_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), projectid);
- // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.projectID)
- }
- // string zone = 21;
- inline void modelContent::clear_zone() {
- zone_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline const ::std::string& modelContent::zone() const {
- // @@protoc_insertion_point(field_get:satdDatabase.modelContent.zone)
- return zone_.GetNoArena();
- }
- inline void modelContent::set_zone(const ::std::string& value) {
-
- zone_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
- // @@protoc_insertion_point(field_set:satdDatabase.modelContent.zone)
- }
- #if LANG_CXX11
- inline void modelContent::set_zone(::std::string&& value) {
-
- zone_.SetNoArena(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
- // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.zone)
- }
- #endif
- inline void modelContent::set_zone(const char* value) {
- GOOGLE_DCHECK(value != NULL);
-
- zone_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
- // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.zone)
- }
- inline void modelContent::set_zone(const char* value, size_t size) {
-
- zone_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- ::std::string(reinterpret_cast<const char*>(value), size));
- // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.zone)
- }
- inline ::std::string* modelContent::mutable_zone() {
-
- // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.zone)
- return zone_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline ::std::string* modelContent::release_zone() {
- // @@protoc_insertion_point(field_release:satdDatabase.modelContent.zone)
-
- return zone_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline void modelContent::set_allocated_zone(::std::string* zone) {
- if (zone != NULL) {
-
- } else {
-
- }
- zone_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), zone);
- // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.zone)
- }
- // string UIStyle = 22;
- inline void modelContent::clear_uistyle() {
- uistyle_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline const ::std::string& modelContent::uistyle() const {
- // @@protoc_insertion_point(field_get:satdDatabase.modelContent.UIStyle)
- return uistyle_.GetNoArena();
- }
- inline void modelContent::set_uistyle(const ::std::string& value) {
-
- uistyle_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
- // @@protoc_insertion_point(field_set:satdDatabase.modelContent.UIStyle)
- }
- #if LANG_CXX11
- inline void modelContent::set_uistyle(::std::string&& value) {
-
- uistyle_.SetNoArena(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
- // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.UIStyle)
- }
- #endif
- inline void modelContent::set_uistyle(const char* value) {
- GOOGLE_DCHECK(value != NULL);
-
- uistyle_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
- // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.UIStyle)
- }
- inline void modelContent::set_uistyle(const char* value, size_t size) {
-
- uistyle_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- ::std::string(reinterpret_cast<const char*>(value), size));
- // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.UIStyle)
- }
- inline ::std::string* modelContent::mutable_uistyle() {
-
- // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.UIStyle)
- return uistyle_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline ::std::string* modelContent::release_uistyle() {
- // @@protoc_insertion_point(field_release:satdDatabase.modelContent.UIStyle)
-
- return uistyle_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline void modelContent::set_allocated_uistyle(::std::string* uistyle) {
- if (uistyle != NULL) {
-
- } else {
-
- }
- uistyle_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), uistyle);
- // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.UIStyle)
- }
- // string complieFileDir = 23;
- inline void modelContent::clear_compliefiledir() {
- compliefiledir_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline const ::std::string& modelContent::compliefiledir() const {
- // @@protoc_insertion_point(field_get:satdDatabase.modelContent.complieFileDir)
- return compliefiledir_.GetNoArena();
- }
- inline void modelContent::set_compliefiledir(const ::std::string& value) {
-
- compliefiledir_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
- // @@protoc_insertion_point(field_set:satdDatabase.modelContent.complieFileDir)
- }
- #if LANG_CXX11
- inline void modelContent::set_compliefiledir(::std::string&& value) {
-
- compliefiledir_.SetNoArena(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
- // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.complieFileDir)
- }
- #endif
- inline void modelContent::set_compliefiledir(const char* value) {
- GOOGLE_DCHECK(value != NULL);
-
- compliefiledir_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
- // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.complieFileDir)
- }
- inline void modelContent::set_compliefiledir(const char* value, size_t size) {
-
- compliefiledir_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- ::std::string(reinterpret_cast<const char*>(value), size));
- // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.complieFileDir)
- }
- inline ::std::string* modelContent::mutable_compliefiledir() {
-
- // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.complieFileDir)
- return compliefiledir_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline ::std::string* modelContent::release_compliefiledir() {
- // @@protoc_insertion_point(field_release:satdDatabase.modelContent.complieFileDir)
-
- return compliefiledir_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline void modelContent::set_allocated_compliefiledir(::std::string* compliefiledir) {
- if (compliefiledir != NULL) {
-
- } else {
-
- }
- compliefiledir_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), compliefiledir);
- // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.complieFileDir)
- }
- // string userName = 24;
- inline void modelContent::clear_username() {
- username_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline const ::std::string& modelContent::username() const {
- // @@protoc_insertion_point(field_get:satdDatabase.modelContent.userName)
- return username_.GetNoArena();
- }
- inline void modelContent::set_username(const ::std::string& value) {
-
- username_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
- // @@protoc_insertion_point(field_set:satdDatabase.modelContent.userName)
- }
- #if LANG_CXX11
- inline void modelContent::set_username(::std::string&& value) {
-
- username_.SetNoArena(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
- // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.userName)
- }
- #endif
- inline void modelContent::set_username(const char* value) {
- GOOGLE_DCHECK(value != NULL);
-
- username_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
- // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.userName)
- }
- inline void modelContent::set_username(const char* value, size_t size) {
-
- username_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- ::std::string(reinterpret_cast<const char*>(value), size));
- // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.userName)
- }
- inline ::std::string* modelContent::mutable_username() {
-
- // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.userName)
- return username_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline ::std::string* modelContent::release_username() {
- // @@protoc_insertion_point(field_release:satdDatabase.modelContent.userName)
-
- return username_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline void modelContent::set_allocated_username(::std::string* username) {
- if (username != NULL) {
-
- } else {
-
- }
- username_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), username);
- // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.userName)
- }
- // string time = 25;
- inline void modelContent::clear_time() {
- time_.ClearToEmptyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline const ::std::string& modelContent::time() const {
- // @@protoc_insertion_point(field_get:satdDatabase.modelContent.time)
- return time_.GetNoArena();
- }
- inline void modelContent::set_time(const ::std::string& value) {
-
- time_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), value);
- // @@protoc_insertion_point(field_set:satdDatabase.modelContent.time)
- }
- #if LANG_CXX11
- inline void modelContent::set_time(::std::string&& value) {
-
- time_.SetNoArena(
- &::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::move(value));
- // @@protoc_insertion_point(field_set_rvalue:satdDatabase.modelContent.time)
- }
- #endif
- inline void modelContent::set_time(const char* value) {
- GOOGLE_DCHECK(value != NULL);
-
- time_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), ::std::string(value));
- // @@protoc_insertion_point(field_set_char:satdDatabase.modelContent.time)
- }
- inline void modelContent::set_time(const char* value, size_t size) {
-
- time_.SetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(),
- ::std::string(reinterpret_cast<const char*>(value), size));
- // @@protoc_insertion_point(field_set_pointer:satdDatabase.modelContent.time)
- }
- inline ::std::string* modelContent::mutable_time() {
-
- // @@protoc_insertion_point(field_mutable:satdDatabase.modelContent.time)
- return time_.MutableNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline ::std::string* modelContent::release_time() {
- // @@protoc_insertion_point(field_release:satdDatabase.modelContent.time)
-
- return time_.ReleaseNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
- }
- inline void modelContent::set_allocated_time(::std::string* time) {
- if (time != NULL) {
-
- } else {
-
- }
- time_.SetAllocatedNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited(), time);
- // @@protoc_insertion_point(field_set_allocated:satdDatabase.modelContent.time)
- }
- #ifdef __GNUC__
- #pragma GCC diagnostic pop
- #endif // __GNUC__
- // -------------------------------------------------------------------
- // -------------------------------------------------------------------
- // -------------------------------------------------------------------
- // -------------------------------------------------------------------
- // -------------------------------------------------------------------
- // @@protoc_insertion_point(namespace_scope)
- } // namespace satdDatabase
- // @@protoc_insertion_point(global_scope)
- #endif // PROTOBUF_table_2eproto__INCLUDED
|