Not versioning the generated stuff after all
not least because it screws up my language metrics :-)
This commit is contained in:
parent
bfc97737b4
commit
c4a6b8791d
File diff suppressed because it is too large
Load Diff
@ -1,752 +0,0 @@
|
||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
// source: addressbook.proto
|
||||
|
||||
#ifndef PROTOBUF_addressbook_2eproto__INCLUDED
|
||||
#define PROTOBUF_addressbook_2eproto__INCLUDED
|
||||
|
||||
#include <string>
|
||||
|
||||
#include <google/protobuf/stubs/common.h>
|
||||
|
||||
#if GOOGLE_PROTOBUF_VERSION < 2004000
|
||||
#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 2004001 < 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/generated_message_util.h>
|
||||
#include <google/protobuf/repeated_field.h>
|
||||
#include <google/protobuf/extension_set.h>
|
||||
#include <google/protobuf/generated_message_reflection.h>
|
||||
// @@protoc_insertion_point(includes)
|
||||
|
||||
namespace tutorial {
|
||||
|
||||
// Internal implementation detail -- do not call these.
|
||||
void protobuf_AddDesc_addressbook_2eproto();
|
||||
void protobuf_AssignDesc_addressbook_2eproto();
|
||||
void protobuf_ShutdownFile_addressbook_2eproto();
|
||||
|
||||
class Person;
|
||||
class Person_PhoneNumber;
|
||||
class AddressBook;
|
||||
|
||||
enum Person_PhoneType {
|
||||
Person_PhoneType_MOBILE = 0,
|
||||
Person_PhoneType_HOME = 1,
|
||||
Person_PhoneType_WORK = 2
|
||||
};
|
||||
bool Person_PhoneType_IsValid(int value);
|
||||
const Person_PhoneType Person_PhoneType_PhoneType_MIN = Person_PhoneType_MOBILE;
|
||||
const Person_PhoneType Person_PhoneType_PhoneType_MAX = Person_PhoneType_WORK;
|
||||
const int Person_PhoneType_PhoneType_ARRAYSIZE = Person_PhoneType_PhoneType_MAX + 1;
|
||||
|
||||
const ::google::protobuf::EnumDescriptor* Person_PhoneType_descriptor();
|
||||
inline const ::std::string& Person_PhoneType_Name(Person_PhoneType value) {
|
||||
return ::google::protobuf::internal::NameOfEnum(
|
||||
Person_PhoneType_descriptor(), value);
|
||||
}
|
||||
inline bool Person_PhoneType_Parse(
|
||||
const ::std::string& name, Person_PhoneType* value) {
|
||||
return ::google::protobuf::internal::ParseNamedEnum<Person_PhoneType>(
|
||||
Person_PhoneType_descriptor(), name, value);
|
||||
}
|
||||
enum Gender {
|
||||
NONE = 0,
|
||||
MALE = 1,
|
||||
FEMALE = 2,
|
||||
OTHER = 3
|
||||
};
|
||||
bool Gender_IsValid(int value);
|
||||
const Gender Gender_MIN = NONE;
|
||||
const Gender Gender_MAX = OTHER;
|
||||
const int Gender_ARRAYSIZE = Gender_MAX + 1;
|
||||
|
||||
const ::google::protobuf::EnumDescriptor* Gender_descriptor();
|
||||
inline const ::std::string& Gender_Name(Gender value) {
|
||||
return ::google::protobuf::internal::NameOfEnum(
|
||||
Gender_descriptor(), value);
|
||||
}
|
||||
inline bool Gender_Parse(
|
||||
const ::std::string& name, Gender* value) {
|
||||
return ::google::protobuf::internal::ParseNamedEnum<Gender>(
|
||||
Gender_descriptor(), name, value);
|
||||
}
|
||||
// ===================================================================
|
||||
|
||||
class Person_PhoneNumber : public ::google::protobuf::Message {
|
||||
public:
|
||||
Person_PhoneNumber();
|
||||
virtual ~Person_PhoneNumber();
|
||||
|
||||
Person_PhoneNumber(const Person_PhoneNumber& from);
|
||||
|
||||
inline Person_PhoneNumber& operator=(const Person_PhoneNumber& from) {
|
||||
CopyFrom(from);
|
||||
return *this;
|
||||
}
|
||||
|
||||
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
|
||||
return _unknown_fields_;
|
||||
}
|
||||
|
||||
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
|
||||
return &_unknown_fields_;
|
||||
}
|
||||
|
||||
static const ::google::protobuf::Descriptor* descriptor();
|
||||
static const Person_PhoneNumber& default_instance();
|
||||
|
||||
void Swap(Person_PhoneNumber* other);
|
||||
|
||||
// implements Message ----------------------------------------------
|
||||
|
||||
Person_PhoneNumber* New() const;
|
||||
void CopyFrom(const ::google::protobuf::Message& from);
|
||||
void MergeFrom(const ::google::protobuf::Message& from);
|
||||
void CopyFrom(const Person_PhoneNumber& from);
|
||||
void MergeFrom(const Person_PhoneNumber& from);
|
||||
void Clear();
|
||||
bool IsInitialized() const;
|
||||
|
||||
int ByteSize() const;
|
||||
bool MergePartialFromCodedStream(
|
||||
::google::protobuf::io::CodedInputStream* input);
|
||||
void SerializeWithCachedSizes(
|
||||
::google::protobuf::io::CodedOutputStream* output) const;
|
||||
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
|
||||
int GetCachedSize() const { return _cached_size_; }
|
||||
private:
|
||||
void SharedCtor();
|
||||
void SharedDtor();
|
||||
void SetCachedSize(int size) const;
|
||||
public:
|
||||
|
||||
::google::protobuf::Metadata GetMetadata() const;
|
||||
|
||||
// nested types ----------------------------------------------------
|
||||
|
||||
// accessors -------------------------------------------------------
|
||||
|
||||
// required string number = 1;
|
||||
inline bool has_number() const;
|
||||
inline void clear_number();
|
||||
static const int kNumberFieldNumber = 1;
|
||||
inline const ::std::string& number() const;
|
||||
inline void set_number(const ::std::string& value);
|
||||
inline void set_number(const char* value);
|
||||
inline void set_number(const char* value, size_t size);
|
||||
inline ::std::string* mutable_number();
|
||||
inline ::std::string* release_number();
|
||||
|
||||
// optional .tutorial.Person.PhoneType type = 2 [default = HOME];
|
||||
inline bool has_type() const;
|
||||
inline void clear_type();
|
||||
static const int kTypeFieldNumber = 2;
|
||||
inline ::tutorial::Person_PhoneType type() const;
|
||||
inline void set_type(::tutorial::Person_PhoneType value);
|
||||
|
||||
// @@protoc_insertion_point(class_scope:tutorial.Person.PhoneNumber)
|
||||
private:
|
||||
inline void set_has_number();
|
||||
inline void clear_has_number();
|
||||
inline void set_has_type();
|
||||
inline void clear_has_type();
|
||||
|
||||
::google::protobuf::UnknownFieldSet _unknown_fields_;
|
||||
|
||||
::std::string* number_;
|
||||
int type_;
|
||||
|
||||
mutable int _cached_size_;
|
||||
::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
|
||||
|
||||
friend void protobuf_AddDesc_addressbook_2eproto();
|
||||
friend void protobuf_AssignDesc_addressbook_2eproto();
|
||||
friend void protobuf_ShutdownFile_addressbook_2eproto();
|
||||
|
||||
void InitAsDefaultInstance();
|
||||
static Person_PhoneNumber* default_instance_;
|
||||
};
|
||||
// -------------------------------------------------------------------
|
||||
|
||||
class Person : public ::google::protobuf::Message {
|
||||
public:
|
||||
Person();
|
||||
virtual ~Person();
|
||||
|
||||
Person(const Person& from);
|
||||
|
||||
inline Person& operator=(const Person& from) {
|
||||
CopyFrom(from);
|
||||
return *this;
|
||||
}
|
||||
|
||||
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
|
||||
return _unknown_fields_;
|
||||
}
|
||||
|
||||
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
|
||||
return &_unknown_fields_;
|
||||
}
|
||||
|
||||
static const ::google::protobuf::Descriptor* descriptor();
|
||||
static const Person& default_instance();
|
||||
|
||||
void Swap(Person* other);
|
||||
|
||||
// implements Message ----------------------------------------------
|
||||
|
||||
Person* New() const;
|
||||
void CopyFrom(const ::google::protobuf::Message& from);
|
||||
void MergeFrom(const ::google::protobuf::Message& from);
|
||||
void CopyFrom(const Person& from);
|
||||
void MergeFrom(const Person& from);
|
||||
void Clear();
|
||||
bool IsInitialized() const;
|
||||
|
||||
int ByteSize() const;
|
||||
bool MergePartialFromCodedStream(
|
||||
::google::protobuf::io::CodedInputStream* input);
|
||||
void SerializeWithCachedSizes(
|
||||
::google::protobuf::io::CodedOutputStream* output) const;
|
||||
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
|
||||
int GetCachedSize() const { return _cached_size_; }
|
||||
private:
|
||||
void SharedCtor();
|
||||
void SharedDtor();
|
||||
void SetCachedSize(int size) const;
|
||||
public:
|
||||
|
||||
::google::protobuf::Metadata GetMetadata() const;
|
||||
|
||||
// nested types ----------------------------------------------------
|
||||
|
||||
typedef Person_PhoneNumber PhoneNumber;
|
||||
|
||||
typedef Person_PhoneType PhoneType;
|
||||
static const PhoneType MOBILE = Person_PhoneType_MOBILE;
|
||||
static const PhoneType HOME = Person_PhoneType_HOME;
|
||||
static const PhoneType WORK = Person_PhoneType_WORK;
|
||||
static inline bool PhoneType_IsValid(int value) {
|
||||
return Person_PhoneType_IsValid(value);
|
||||
}
|
||||
static const PhoneType PhoneType_MIN =
|
||||
Person_PhoneType_PhoneType_MIN;
|
||||
static const PhoneType PhoneType_MAX =
|
||||
Person_PhoneType_PhoneType_MAX;
|
||||
static const int PhoneType_ARRAYSIZE =
|
||||
Person_PhoneType_PhoneType_ARRAYSIZE;
|
||||
static inline const ::google::protobuf::EnumDescriptor*
|
||||
PhoneType_descriptor() {
|
||||
return Person_PhoneType_descriptor();
|
||||
}
|
||||
static inline const ::std::string& PhoneType_Name(PhoneType value) {
|
||||
return Person_PhoneType_Name(value);
|
||||
}
|
||||
static inline bool PhoneType_Parse(const ::std::string& name,
|
||||
PhoneType* value) {
|
||||
return Person_PhoneType_Parse(name, value);
|
||||
}
|
||||
|
||||
// accessors -------------------------------------------------------
|
||||
|
||||
// required string name = 1;
|
||||
inline bool has_name() const;
|
||||
inline void clear_name();
|
||||
static const int kNameFieldNumber = 1;
|
||||
inline const ::std::string& name() const;
|
||||
inline void set_name(const ::std::string& value);
|
||||
inline void set_name(const char* value);
|
||||
inline void set_name(const char* value, size_t size);
|
||||
inline ::std::string* mutable_name();
|
||||
inline ::std::string* release_name();
|
||||
|
||||
// required int32 id = 2;
|
||||
inline bool has_id() const;
|
||||
inline void clear_id();
|
||||
static const int kIdFieldNumber = 2;
|
||||
inline ::google::protobuf::int32 id() const;
|
||||
inline void set_id(::google::protobuf::int32 value);
|
||||
|
||||
// optional string email = 3;
|
||||
inline bool has_email() const;
|
||||
inline void clear_email();
|
||||
static const int kEmailFieldNumber = 3;
|
||||
inline const ::std::string& email() const;
|
||||
inline void set_email(const ::std::string& value);
|
||||
inline void set_email(const char* value);
|
||||
inline void set_email(const char* value, size_t size);
|
||||
inline ::std::string* mutable_email();
|
||||
inline ::std::string* release_email();
|
||||
|
||||
// optional .tutorial.Gender type = 4 [default = NONE];
|
||||
inline bool has_type() const;
|
||||
inline void clear_type();
|
||||
static const int kTypeFieldNumber = 4;
|
||||
inline tutorial::Gender type() const;
|
||||
inline void set_type(tutorial::Gender value);
|
||||
|
||||
// repeated .tutorial.Person.PhoneNumber phone = 5;
|
||||
inline int phone_size() const;
|
||||
inline void clear_phone();
|
||||
static const int kPhoneFieldNumber = 5;
|
||||
inline const ::tutorial::Person_PhoneNumber& phone(int index) const;
|
||||
inline ::tutorial::Person_PhoneNumber* mutable_phone(int index);
|
||||
inline ::tutorial::Person_PhoneNumber* add_phone();
|
||||
inline const ::google::protobuf::RepeatedPtrField< ::tutorial::Person_PhoneNumber >&
|
||||
phone() const;
|
||||
inline ::google::protobuf::RepeatedPtrField< ::tutorial::Person_PhoneNumber >*
|
||||
mutable_phone();
|
||||
|
||||
// @@protoc_insertion_point(class_scope:tutorial.Person)
|
||||
private:
|
||||
inline void set_has_name();
|
||||
inline void clear_has_name();
|
||||
inline void set_has_id();
|
||||
inline void clear_has_id();
|
||||
inline void set_has_email();
|
||||
inline void clear_has_email();
|
||||
inline void set_has_type();
|
||||
inline void clear_has_type();
|
||||
|
||||
::google::protobuf::UnknownFieldSet _unknown_fields_;
|
||||
|
||||
::std::string* name_;
|
||||
::std::string* email_;
|
||||
::google::protobuf::int32 id_;
|
||||
int type_;
|
||||
::google::protobuf::RepeatedPtrField< ::tutorial::Person_PhoneNumber > phone_;
|
||||
|
||||
mutable int _cached_size_;
|
||||
::google::protobuf::uint32 _has_bits_[(5 + 31) / 32];
|
||||
|
||||
friend void protobuf_AddDesc_addressbook_2eproto();
|
||||
friend void protobuf_AssignDesc_addressbook_2eproto();
|
||||
friend void protobuf_ShutdownFile_addressbook_2eproto();
|
||||
|
||||
void InitAsDefaultInstance();
|
||||
static Person* default_instance_;
|
||||
};
|
||||
// -------------------------------------------------------------------
|
||||
|
||||
class AddressBook : public ::google::protobuf::Message {
|
||||
public:
|
||||
AddressBook();
|
||||
virtual ~AddressBook();
|
||||
|
||||
AddressBook(const AddressBook& from);
|
||||
|
||||
inline AddressBook& operator=(const AddressBook& from) {
|
||||
CopyFrom(from);
|
||||
return *this;
|
||||
}
|
||||
|
||||
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
|
||||
return _unknown_fields_;
|
||||
}
|
||||
|
||||
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
|
||||
return &_unknown_fields_;
|
||||
}
|
||||
|
||||
static const ::google::protobuf::Descriptor* descriptor();
|
||||
static const AddressBook& default_instance();
|
||||
|
||||
void Swap(AddressBook* other);
|
||||
|
||||
// implements Message ----------------------------------------------
|
||||
|
||||
AddressBook* New() const;
|
||||
void CopyFrom(const ::google::protobuf::Message& from);
|
||||
void MergeFrom(const ::google::protobuf::Message& from);
|
||||
void CopyFrom(const AddressBook& from);
|
||||
void MergeFrom(const AddressBook& from);
|
||||
void Clear();
|
||||
bool IsInitialized() const;
|
||||
|
||||
int ByteSize() const;
|
||||
bool MergePartialFromCodedStream(
|
||||
::google::protobuf::io::CodedInputStream* input);
|
||||
void SerializeWithCachedSizes(
|
||||
::google::protobuf::io::CodedOutputStream* output) const;
|
||||
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
|
||||
int GetCachedSize() const { return _cached_size_; }
|
||||
private:
|
||||
void SharedCtor();
|
||||
void SharedDtor();
|
||||
void SetCachedSize(int size) const;
|
||||
public:
|
||||
|
||||
::google::protobuf::Metadata GetMetadata() const;
|
||||
|
||||
// nested types ----------------------------------------------------
|
||||
|
||||
// accessors -------------------------------------------------------
|
||||
|
||||
// repeated .tutorial.Person person = 1;
|
||||
inline int person_size() const;
|
||||
inline void clear_person();
|
||||
static const int kPersonFieldNumber = 1;
|
||||
inline const ::tutorial::Person& person(int index) const;
|
||||
inline ::tutorial::Person* mutable_person(int index);
|
||||
inline ::tutorial::Person* add_person();
|
||||
inline const ::google::protobuf::RepeatedPtrField< ::tutorial::Person >&
|
||||
person() const;
|
||||
inline ::google::protobuf::RepeatedPtrField< ::tutorial::Person >*
|
||||
mutable_person();
|
||||
|
||||
// @@protoc_insertion_point(class_scope:tutorial.AddressBook)
|
||||
private:
|
||||
|
||||
::google::protobuf::UnknownFieldSet _unknown_fields_;
|
||||
|
||||
::google::protobuf::RepeatedPtrField< ::tutorial::Person > person_;
|
||||
|
||||
mutable int _cached_size_;
|
||||
::google::protobuf::uint32 _has_bits_[(1 + 31) / 32];
|
||||
|
||||
friend void protobuf_AddDesc_addressbook_2eproto();
|
||||
friend void protobuf_AssignDesc_addressbook_2eproto();
|
||||
friend void protobuf_ShutdownFile_addressbook_2eproto();
|
||||
|
||||
void InitAsDefaultInstance();
|
||||
static AddressBook* default_instance_;
|
||||
};
|
||||
// ===================================================================
|
||||
|
||||
|
||||
// ===================================================================
|
||||
|
||||
// Person_PhoneNumber
|
||||
|
||||
// required string number = 1;
|
||||
inline bool Person_PhoneNumber::has_number() const {
|
||||
return (_has_bits_[0] & 0x00000001u) != 0;
|
||||
}
|
||||
inline void Person_PhoneNumber::set_has_number() {
|
||||
_has_bits_[0] |= 0x00000001u;
|
||||
}
|
||||
inline void Person_PhoneNumber::clear_has_number() {
|
||||
_has_bits_[0] &= ~0x00000001u;
|
||||
}
|
||||
inline void Person_PhoneNumber::clear_number() {
|
||||
if (number_ != &::google::protobuf::internal::kEmptyString) {
|
||||
number_->clear();
|
||||
}
|
||||
clear_has_number();
|
||||
}
|
||||
inline const ::std::string& Person_PhoneNumber::number() const {
|
||||
return *number_;
|
||||
}
|
||||
inline void Person_PhoneNumber::set_number(const ::std::string& value) {
|
||||
set_has_number();
|
||||
if (number_ == &::google::protobuf::internal::kEmptyString) {
|
||||
number_ = new ::std::string;
|
||||
}
|
||||
number_->assign(value);
|
||||
}
|
||||
inline void Person_PhoneNumber::set_number(const char* value) {
|
||||
set_has_number();
|
||||
if (number_ == &::google::protobuf::internal::kEmptyString) {
|
||||
number_ = new ::std::string;
|
||||
}
|
||||
number_->assign(value);
|
||||
}
|
||||
inline void Person_PhoneNumber::set_number(const char* value, size_t size) {
|
||||
set_has_number();
|
||||
if (number_ == &::google::protobuf::internal::kEmptyString) {
|
||||
number_ = new ::std::string;
|
||||
}
|
||||
number_->assign(reinterpret_cast<const char*>(value), size);
|
||||
}
|
||||
inline ::std::string* Person_PhoneNumber::mutable_number() {
|
||||
set_has_number();
|
||||
if (number_ == &::google::protobuf::internal::kEmptyString) {
|
||||
number_ = new ::std::string;
|
||||
}
|
||||
return number_;
|
||||
}
|
||||
inline ::std::string* Person_PhoneNumber::release_number() {
|
||||
clear_has_number();
|
||||
if (number_ == &::google::protobuf::internal::kEmptyString) {
|
||||
return NULL;
|
||||
} else {
|
||||
::std::string* temp = number_;
|
||||
number_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString);
|
||||
return temp;
|
||||
}
|
||||
}
|
||||
|
||||
// optional .tutorial.Person.PhoneType type = 2 [default = HOME];
|
||||
inline bool Person_PhoneNumber::has_type() const {
|
||||
return (_has_bits_[0] & 0x00000002u) != 0;
|
||||
}
|
||||
inline void Person_PhoneNumber::set_has_type() {
|
||||
_has_bits_[0] |= 0x00000002u;
|
||||
}
|
||||
inline void Person_PhoneNumber::clear_has_type() {
|
||||
_has_bits_[0] &= ~0x00000002u;
|
||||
}
|
||||
inline void Person_PhoneNumber::clear_type() {
|
||||
type_ = 1;
|
||||
clear_has_type();
|
||||
}
|
||||
inline ::tutorial::Person_PhoneType Person_PhoneNumber::type() const {
|
||||
return static_cast< ::tutorial::Person_PhoneType >(type_);
|
||||
}
|
||||
inline void Person_PhoneNumber::set_type(::tutorial::Person_PhoneType value) {
|
||||
GOOGLE_DCHECK(::tutorial::Person_PhoneType_IsValid(value));
|
||||
set_has_type();
|
||||
type_ = value;
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------
|
||||
|
||||
// Person
|
||||
|
||||
// required string name = 1;
|
||||
inline bool Person::has_name() const {
|
||||
return (_has_bits_[0] & 0x00000001u) != 0;
|
||||
}
|
||||
inline void Person::set_has_name() {
|
||||
_has_bits_[0] |= 0x00000001u;
|
||||
}
|
||||
inline void Person::clear_has_name() {
|
||||
_has_bits_[0] &= ~0x00000001u;
|
||||
}
|
||||
inline void Person::clear_name() {
|
||||
if (name_ != &::google::protobuf::internal::kEmptyString) {
|
||||
name_->clear();
|
||||
}
|
||||
clear_has_name();
|
||||
}
|
||||
inline const ::std::string& Person::name() const {
|
||||
return *name_;
|
||||
}
|
||||
inline void Person::set_name(const ::std::string& value) {
|
||||
set_has_name();
|
||||
if (name_ == &::google::protobuf::internal::kEmptyString) {
|
||||
name_ = new ::std::string;
|
||||
}
|
||||
name_->assign(value);
|
||||
}
|
||||
inline void Person::set_name(const char* value) {
|
||||
set_has_name();
|
||||
if (name_ == &::google::protobuf::internal::kEmptyString) {
|
||||
name_ = new ::std::string;
|
||||
}
|
||||
name_->assign(value);
|
||||
}
|
||||
inline void Person::set_name(const char* value, size_t size) {
|
||||
set_has_name();
|
||||
if (name_ == &::google::protobuf::internal::kEmptyString) {
|
||||
name_ = new ::std::string;
|
||||
}
|
||||
name_->assign(reinterpret_cast<const char*>(value), size);
|
||||
}
|
||||
inline ::std::string* Person::mutable_name() {
|
||||
set_has_name();
|
||||
if (name_ == &::google::protobuf::internal::kEmptyString) {
|
||||
name_ = new ::std::string;
|
||||
}
|
||||
return name_;
|
||||
}
|
||||
inline ::std::string* Person::release_name() {
|
||||
clear_has_name();
|
||||
if (name_ == &::google::protobuf::internal::kEmptyString) {
|
||||
return NULL;
|
||||
} else {
|
||||
::std::string* temp = name_;
|
||||
name_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString);
|
||||
return temp;
|
||||
}
|
||||
}
|
||||
|
||||
// required int32 id = 2;
|
||||
inline bool Person::has_id() const {
|
||||
return (_has_bits_[0] & 0x00000002u) != 0;
|
||||
}
|
||||
inline void Person::set_has_id() {
|
||||
_has_bits_[0] |= 0x00000002u;
|
||||
}
|
||||
inline void Person::clear_has_id() {
|
||||
_has_bits_[0] &= ~0x00000002u;
|
||||
}
|
||||
inline void Person::clear_id() {
|
||||
id_ = 0;
|
||||
clear_has_id();
|
||||
}
|
||||
inline ::google::protobuf::int32 Person::id() const {
|
||||
return id_;
|
||||
}
|
||||
inline void Person::set_id(::google::protobuf::int32 value) {
|
||||
set_has_id();
|
||||
id_ = value;
|
||||
}
|
||||
|
||||
// optional string email = 3;
|
||||
inline bool Person::has_email() const {
|
||||
return (_has_bits_[0] & 0x00000004u) != 0;
|
||||
}
|
||||
inline void Person::set_has_email() {
|
||||
_has_bits_[0] |= 0x00000004u;
|
||||
}
|
||||
inline void Person::clear_has_email() {
|
||||
_has_bits_[0] &= ~0x00000004u;
|
||||
}
|
||||
inline void Person::clear_email() {
|
||||
if (email_ != &::google::protobuf::internal::kEmptyString) {
|
||||
email_->clear();
|
||||
}
|
||||
clear_has_email();
|
||||
}
|
||||
inline const ::std::string& Person::email() const {
|
||||
return *email_;
|
||||
}
|
||||
inline void Person::set_email(const ::std::string& value) {
|
||||
set_has_email();
|
||||
if (email_ == &::google::protobuf::internal::kEmptyString) {
|
||||
email_ = new ::std::string;
|
||||
}
|
||||
email_->assign(value);
|
||||
}
|
||||
inline void Person::set_email(const char* value) {
|
||||
set_has_email();
|
||||
if (email_ == &::google::protobuf::internal::kEmptyString) {
|
||||
email_ = new ::std::string;
|
||||
}
|
||||
email_->assign(value);
|
||||
}
|
||||
inline void Person::set_email(const char* value, size_t size) {
|
||||
set_has_email();
|
||||
if (email_ == &::google::protobuf::internal::kEmptyString) {
|
||||
email_ = new ::std::string;
|
||||
}
|
||||
email_->assign(reinterpret_cast<const char*>(value), size);
|
||||
}
|
||||
inline ::std::string* Person::mutable_email() {
|
||||
set_has_email();
|
||||
if (email_ == &::google::protobuf::internal::kEmptyString) {
|
||||
email_ = new ::std::string;
|
||||
}
|
||||
return email_;
|
||||
}
|
||||
inline ::std::string* Person::release_email() {
|
||||
clear_has_email();
|
||||
if (email_ == &::google::protobuf::internal::kEmptyString) {
|
||||
return NULL;
|
||||
} else {
|
||||
::std::string* temp = email_;
|
||||
email_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString);
|
||||
return temp;
|
||||
}
|
||||
}
|
||||
|
||||
// optional .tutorial.Gender type = 4 [default = NONE];
|
||||
inline bool Person::has_type() const {
|
||||
return (_has_bits_[0] & 0x00000008u) != 0;
|
||||
}
|
||||
inline void Person::set_has_type() {
|
||||
_has_bits_[0] |= 0x00000008u;
|
||||
}
|
||||
inline void Person::clear_has_type() {
|
||||
_has_bits_[0] &= ~0x00000008u;
|
||||
}
|
||||
inline void Person::clear_type() {
|
||||
type_ = 0;
|
||||
clear_has_type();
|
||||
}
|
||||
inline tutorial::Gender Person::type() const {
|
||||
return static_cast< tutorial::Gender >(type_);
|
||||
}
|
||||
inline void Person::set_type(tutorial::Gender value) {
|
||||
GOOGLE_DCHECK(tutorial::Gender_IsValid(value));
|
||||
set_has_type();
|
||||
type_ = value;
|
||||
}
|
||||
|
||||
// repeated .tutorial.Person.PhoneNumber phone = 5;
|
||||
inline int Person::phone_size() const {
|
||||
return phone_.size();
|
||||
}
|
||||
inline void Person::clear_phone() {
|
||||
phone_.Clear();
|
||||
}
|
||||
inline const ::tutorial::Person_PhoneNumber& Person::phone(int index) const {
|
||||
return phone_.Get(index);
|
||||
}
|
||||
inline ::tutorial::Person_PhoneNumber* Person::mutable_phone(int index) {
|
||||
return phone_.Mutable(index);
|
||||
}
|
||||
inline ::tutorial::Person_PhoneNumber* Person::add_phone() {
|
||||
return phone_.Add();
|
||||
}
|
||||
inline const ::google::protobuf::RepeatedPtrField< ::tutorial::Person_PhoneNumber >&
|
||||
Person::phone() const {
|
||||
return phone_;
|
||||
}
|
||||
inline ::google::protobuf::RepeatedPtrField< ::tutorial::Person_PhoneNumber >*
|
||||
Person::mutable_phone() {
|
||||
return &phone_;
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------
|
||||
|
||||
// AddressBook
|
||||
|
||||
// repeated .tutorial.Person person = 1;
|
||||
inline int AddressBook::person_size() const {
|
||||
return person_.size();
|
||||
}
|
||||
inline void AddressBook::clear_person() {
|
||||
person_.Clear();
|
||||
}
|
||||
inline const ::tutorial::Person& AddressBook::person(int index) const {
|
||||
return person_.Get(index);
|
||||
}
|
||||
inline ::tutorial::Person* AddressBook::mutable_person(int index) {
|
||||
return person_.Mutable(index);
|
||||
}
|
||||
inline ::tutorial::Person* AddressBook::add_person() {
|
||||
return person_.Add();
|
||||
}
|
||||
inline const ::google::protobuf::RepeatedPtrField< ::tutorial::Person >&
|
||||
AddressBook::person() const {
|
||||
return person_;
|
||||
}
|
||||
inline ::google::protobuf::RepeatedPtrField< ::tutorial::Person >*
|
||||
AddressBook::mutable_person() {
|
||||
return &person_;
|
||||
}
|
||||
|
||||
|
||||
// @@protoc_insertion_point(namespace_scope)
|
||||
|
||||
} // namespace tutorial
|
||||
|
||||
#ifndef SWIG
|
||||
namespace google {
|
||||
namespace protobuf {
|
||||
|
||||
template <>
|
||||
inline const EnumDescriptor* GetEnumDescriptor< ::tutorial::Person_PhoneType>() {
|
||||
return ::tutorial::Person_PhoneType_descriptor();
|
||||
}
|
||||
template <>
|
||||
inline const EnumDescriptor* GetEnumDescriptor< tutorial::Gender>() {
|
||||
return tutorial::Gender_descriptor();
|
||||
}
|
||||
|
||||
} // namespace google
|
||||
} // namespace protobuf
|
||||
#endif // SWIG
|
||||
|
||||
// @@protoc_insertion_point(global_scope)
|
||||
|
||||
#endif // PROTOBUF_addressbook_2eproto__INCLUDED
|
File diff suppressed because it is too large
Load Diff
@ -1,223 +0,0 @@
|
||||
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||
|
||||
from google.protobuf import descriptor
|
||||
from google.protobuf import message
|
||||
from google.protobuf import reflection
|
||||
from google.protobuf import descriptor_pb2
|
||||
# @@protoc_insertion_point(imports)
|
||||
|
||||
|
||||
|
||||
DESCRIPTOR = descriptor.FileDescriptor(
|
||||
name='addressbook.proto',
|
||||
package='tutorial',
|
||||
serialized_pb='\n\x11\x61\x64\x64ressbook.proto\x12\x08tutorial\"\x80\x02\n\x06Person\x12\x0c\n\x04name\x18\x01 \x02(\t\x12\n\n\x02id\x18\x02 \x02(\x05\x12\r\n\x05\x65mail\x18\x03 \x01(\t\x12$\n\x04type\x18\x04 \x01(\x0e\x32\x10.tutorial.Gender:\x04NONE\x12+\n\x05phone\x18\x05 \x03(\x0b\x32\x1c.tutorial.Person.PhoneNumber\x1aM\n\x0bPhoneNumber\x12\x0e\n\x06number\x18\x01 \x02(\t\x12.\n\x04type\x18\x02 \x01(\x0e\x32\x1a.tutorial.Person.PhoneType:\x04HOME\"+\n\tPhoneType\x12\n\n\x06MOBILE\x10\x00\x12\x08\n\x04HOME\x10\x01\x12\x08\n\x04WORK\x10\x02\"/\n\x0b\x41\x64\x64ressBook\x12 \n\x06person\x18\x01 \x03(\x0b\x32\x10.tutorial.Person*3\n\x06Gender\x12\x08\n\x04NONE\x10\x00\x12\x08\n\x04MALE\x10\x01\x12\n\n\x06\x46\x45MALE\x10\x02\x12\t\n\x05OTHER\x10\x03')
|
||||
|
||||
_GENDER = descriptor.EnumDescriptor(
|
||||
name='Gender',
|
||||
full_name='tutorial.Gender',
|
||||
filename=None,
|
||||
file=DESCRIPTOR,
|
||||
values=[
|
||||
descriptor.EnumValueDescriptor(
|
||||
name='NONE', index=0, number=0,
|
||||
options=None,
|
||||
type=None),
|
||||
descriptor.EnumValueDescriptor(
|
||||
name='MALE', index=1, number=1,
|
||||
options=None,
|
||||
type=None),
|
||||
descriptor.EnumValueDescriptor(
|
||||
name='FEMALE', index=2, number=2,
|
||||
options=None,
|
||||
type=None),
|
||||
descriptor.EnumValueDescriptor(
|
||||
name='OTHER', index=3, number=3,
|
||||
options=None,
|
||||
type=None),
|
||||
],
|
||||
containing_type=None,
|
||||
options=None,
|
||||
serialized_start=339,
|
||||
serialized_end=390,
|
||||
)
|
||||
|
||||
|
||||
NONE = 0
|
||||
MALE = 1
|
||||
FEMALE = 2
|
||||
OTHER = 3
|
||||
|
||||
|
||||
_PERSON_PHONETYPE = descriptor.EnumDescriptor(
|
||||
name='PhoneType',
|
||||
full_name='tutorial.Person.PhoneType',
|
||||
filename=None,
|
||||
file=DESCRIPTOR,
|
||||
values=[
|
||||
descriptor.EnumValueDescriptor(
|
||||
name='MOBILE', index=0, number=0,
|
||||
options=None,
|
||||
type=None),
|
||||
descriptor.EnumValueDescriptor(
|
||||
name='HOME', index=1, number=1,
|
||||
options=None,
|
||||
type=None),
|
||||
descriptor.EnumValueDescriptor(
|
||||
name='WORK', index=2, number=2,
|
||||
options=None,
|
||||
type=None),
|
||||
],
|
||||
containing_type=None,
|
||||
options=None,
|
||||
serialized_start=245,
|
||||
serialized_end=288,
|
||||
)
|
||||
|
||||
|
||||
_PERSON_PHONENUMBER = descriptor.Descriptor(
|
||||
name='PhoneNumber',
|
||||
full_name='tutorial.Person.PhoneNumber',
|
||||
filename=None,
|
||||
file=DESCRIPTOR,
|
||||
containing_type=None,
|
||||
fields=[
|
||||
descriptor.FieldDescriptor(
|
||||
name='number', full_name='tutorial.Person.PhoneNumber.number', index=0,
|
||||
number=1, type=9, cpp_type=9, label=2,
|
||||
has_default_value=False, default_value=unicode("", "utf-8"),
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
options=None),
|
||||
descriptor.FieldDescriptor(
|
||||
name='type', full_name='tutorial.Person.PhoneNumber.type', index=1,
|
||||
number=2, type=14, cpp_type=8, label=1,
|
||||
has_default_value=True, default_value=1,
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
options=None),
|
||||
],
|
||||
extensions=[
|
||||
],
|
||||
nested_types=[],
|
||||
enum_types=[
|
||||
],
|
||||
options=None,
|
||||
is_extendable=False,
|
||||
extension_ranges=[],
|
||||
serialized_start=166,
|
||||
serialized_end=243,
|
||||
)
|
||||
|
||||
_PERSON = descriptor.Descriptor(
|
||||
name='Person',
|
||||
full_name='tutorial.Person',
|
||||
filename=None,
|
||||
file=DESCRIPTOR,
|
||||
containing_type=None,
|
||||
fields=[
|
||||
descriptor.FieldDescriptor(
|
||||
name='name', full_name='tutorial.Person.name', index=0,
|
||||
number=1, type=9, cpp_type=9, label=2,
|
||||
has_default_value=False, default_value=unicode("", "utf-8"),
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
options=None),
|
||||
descriptor.FieldDescriptor(
|
||||
name='id', full_name='tutorial.Person.id', index=1,
|
||||
number=2, type=5, cpp_type=1, label=2,
|
||||
has_default_value=False, default_value=0,
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
options=None),
|
||||
descriptor.FieldDescriptor(
|
||||
name='email', full_name='tutorial.Person.email', index=2,
|
||||
number=3, type=9, cpp_type=9, label=1,
|
||||
has_default_value=False, default_value=unicode("", "utf-8"),
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
options=None),
|
||||
descriptor.FieldDescriptor(
|
||||
name='type', full_name='tutorial.Person.type', index=3,
|
||||
number=4, type=14, cpp_type=8, label=1,
|
||||
has_default_value=True, default_value=0,
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
options=None),
|
||||
descriptor.FieldDescriptor(
|
||||
name='phone', full_name='tutorial.Person.phone', index=4,
|
||||
number=5, type=11, cpp_type=10, label=3,
|
||||
has_default_value=False, default_value=[],
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
options=None),
|
||||
],
|
||||
extensions=[
|
||||
],
|
||||
nested_types=[_PERSON_PHONENUMBER, ],
|
||||
enum_types=[
|
||||
_PERSON_PHONETYPE,
|
||||
],
|
||||
options=None,
|
||||
is_extendable=False,
|
||||
extension_ranges=[],
|
||||
serialized_start=32,
|
||||
serialized_end=288,
|
||||
)
|
||||
|
||||
|
||||
_ADDRESSBOOK = descriptor.Descriptor(
|
||||
name='AddressBook',
|
||||
full_name='tutorial.AddressBook',
|
||||
filename=None,
|
||||
file=DESCRIPTOR,
|
||||
containing_type=None,
|
||||
fields=[
|
||||
descriptor.FieldDescriptor(
|
||||
name='person', full_name='tutorial.AddressBook.person', index=0,
|
||||
number=1, type=11, cpp_type=10, label=3,
|
||||
has_default_value=False, default_value=[],
|
||||
message_type=None, enum_type=None, containing_type=None,
|
||||
is_extension=False, extension_scope=None,
|
||||
options=None),
|
||||
],
|
||||
extensions=[
|
||||
],
|
||||
nested_types=[],
|
||||
enum_types=[
|
||||
],
|
||||
options=None,
|
||||
is_extendable=False,
|
||||
extension_ranges=[],
|
||||
serialized_start=290,
|
||||
serialized_end=337,
|
||||
)
|
||||
|
||||
_PERSON_PHONENUMBER.fields_by_name['type'].enum_type = _PERSON_PHONETYPE
|
||||
_PERSON_PHONENUMBER.containing_type = _PERSON;
|
||||
_PERSON.fields_by_name['type'].enum_type = _GENDER
|
||||
_PERSON.fields_by_name['phone'].message_type = _PERSON_PHONENUMBER
|
||||
_PERSON_PHONETYPE.containing_type = _PERSON;
|
||||
_ADDRESSBOOK.fields_by_name['person'].message_type = _PERSON
|
||||
DESCRIPTOR.message_types_by_name['Person'] = _PERSON
|
||||
DESCRIPTOR.message_types_by_name['AddressBook'] = _ADDRESSBOOK
|
||||
|
||||
class Person(message.Message):
|
||||
__metaclass__ = reflection.GeneratedProtocolMessageType
|
||||
|
||||
class PhoneNumber(message.Message):
|
||||
__metaclass__ = reflection.GeneratedProtocolMessageType
|
||||
DESCRIPTOR = _PERSON_PHONENUMBER
|
||||
|
||||
# @@protoc_insertion_point(class_scope:tutorial.Person.PhoneNumber)
|
||||
DESCRIPTOR = _PERSON
|
||||
|
||||
# @@protoc_insertion_point(class_scope:tutorial.Person)
|
||||
|
||||
class AddressBook(message.Message):
|
||||
__metaclass__ = reflection.GeneratedProtocolMessageType
|
||||
DESCRIPTOR = _ADDRESSBOOK
|
||||
|
||||
# @@protoc_insertion_point(class_scope:tutorial.AddressBook)
|
||||
|
||||
# @@protoc_insertion_point(module_scope)
|
Loading…
Reference in New Issue
Block a user