Introduce QProtobufMessagePointer and un-virtualize QProtobufMessage

Changing our return types from QProtobufMessage* to use a smart-ptr lets
us quite nicely get rid of the only virtual left in QProtobufMessage:
The destructor. Since we create the subclass through the meta-type
system we can also delete it that way. This gets rid of the virtual
table, which we would've been unable to extend anyway given our ABI
promises.

Since users can no longer call `delete` on a QProtobufMessage directly
we instead provide a convenient alias for a unique_ptr with a Deleter
which takes care of the aforementioned meta-type part.

Done-with: Marc Mutz <marc.mutz@qt.io>
Change-Id: I3405f0a9121dc8325f2940a8ee719c3c462f2c01
Reviewed-by: Alexey Edelev <alexey.edelev@qt.io>
(cherry picked from commit 613b3de08e)
This commit is contained in:
Mårten Nordheim 2023-02-09 18:26:03 +01:00
parent 23cc552f3e
commit ebb58145bc
21 changed files with 375 additions and 330 deletions

View File

@ -34,7 +34,7 @@ protected:
QProtobufMessage *message() const { return m_ptr; }
void setMessage(QProtobufMessage *msg) const { m_ptr = msg; }
~QProtobufLazyMessagePointerBase() { delete m_ptr; }
~QProtobufLazyMessagePointerBase() { QProtobufMessageDeleter()(m_ptr); }
void swap(QProtobufLazyMessagePointerBase &other) noexcept { qt_ptr_swap(m_ptr, other.m_ptr); }
explicit operator bool() const noexcept { return message() != nullptr; }

View File

@ -133,7 +133,7 @@ namespace QtProtobufPrivate {
/*!
\internal
*/
extern QProtobufMessage *constructMessageByName(const QString &messageType);
extern QProtobufMessagePointer constructMessageByName(const QString &messageType);
}
/*!
@ -145,11 +145,48 @@ extern QProtobufMessage *constructMessageByName(const QString &messageType);
function returns \nullptr.
Ownership of the constructed message is given to the function caller.
*/
QProtobufMessage *QProtobufMessage::constructByName(const QString &messageType)
QProtobufMessagePointer QProtobufMessage::constructByName(const QString &messageType)
{
return QtProtobufPrivate::constructMessageByName(messageType);
}
/*!
\typedef QProtobufMessagePointer
\relates QProtobufMessage
\inmodule QtProtobuf
Synonym for std::unique_ptr<QProtobufMessage, QProtobufMessageDeleter>.
Use this to manage the lifetime of dynamically allocated QProtobufMessages,
such as those created by calling QProtobufMessage::constructByName.
*/
/*!
\class QProtobufMessageDeleter
\inmodule QtProtobuf
\brief Calls the destructor of the child class of a QProtobufMessage.
This class calls the destructor of a protobuf message using the meta-type
system. This class is intended to be used with smart pointers, such as
std::unique_ptr.
\sa QProtobufMessagePointer
*/
/*!
Destroys the message pointed to by \a ptr.
This is intended for use with smart pointers.
\sa QProtobufMessagePointer
*/
void QProtobufMessageDeleter::operator()(QProtobufMessage *ptr) noexcept
{
if (!ptr)
return;
const QMetaObject *mobj = ptr->metaObject();
QMetaType type = mobj->metaType();
type.destroy(ptr);
}
QT_END_NAMESPACE
#include "moc_qprotobufmessage.cpp"

View File

@ -11,22 +11,28 @@
QT_BEGIN_NAMESPACE
class QProtobufMessage;
struct QProtobufMessageDeleter {
Q_PROTOBUF_EXPORT void operator()(QProtobufMessage *ptr) noexcept;
};
using QProtobufMessagePointer = std::unique_ptr<QProtobufMessage, QProtobufMessageDeleter>;
class QProtobufMessagePrivate;
class Q_PROTOBUF_EXPORT QProtobufMessage
class QProtobufMessage
{
Q_GADGET
Q_GADGET_EXPORT(Q_PROTOBUF_EXPORT)
public:
virtual ~QProtobufMessage();
Q_PROTOBUF_EXPORT QVariant property(QAnyStringView propertyName) const;
Q_PROTOBUF_EXPORT bool setProperty(QAnyStringView propertyName, const QVariant &value);
QVariant property(QAnyStringView propertyName) const;
bool setProperty(QAnyStringView propertyName, const QVariant &value);
Q_REQUIRED_RESULT static QProtobufMessage *constructByName(const QString &messageType);
Q_REQUIRED_RESULT
Q_PROTOBUF_EXPORT static QProtobufMessagePointer constructByName(const QString &messageType);
protected:
explicit QProtobufMessage(const QMetaObject *metaObject);
QProtobufMessage(const QProtobufMessage &other);
QProtobufMessage &operator=(const QProtobufMessage &other);
Q_PROTOBUF_EXPORT explicit QProtobufMessage(const QMetaObject *metaObject);
Q_PROTOBUF_EXPORT ~QProtobufMessage();
Q_PROTOBUF_EXPORT QProtobufMessage(const QProtobufMessage &other);
Q_PROTOBUF_EXPORT QProtobufMessage &operator=(const QProtobufMessage &other);
QProtobufMessage(QProtobufMessage &&other) noexcept : d_ptr(std::exchange(other.d_ptr, {})) { }
QProtobufMessage &operator=(QProtobufMessage &&other) noexcept
{
@ -34,6 +40,7 @@ protected:
return *this;
}
Q_PROTOBUF_EXPORT
static bool isEqual(const QProtobufMessage &lhs, const QProtobufMessage &rhs) noexcept;
private:
@ -43,6 +50,7 @@ private:
friend class QAbstractProtobufSerializer;
friend class QProtobufSerializerPrivate;
friend class QAbstractProtobufSerializer;
friend struct QProtobufMessageDeleter;
QProtobufMessagePrivate *d_ptr;
Q_DECLARE_PRIVATE(QProtobufMessage)

View File

@ -177,19 +177,21 @@ namespace QtProtobufPrivate {
return orderingRegistry->getOrdering(type);
}
QProtobufMessage *constructMessageByName(const QString &messageType)
QProtobufMessagePointer constructMessageByName(const QString &messageType)
{
qRegisterProtobufTypes();
ProtobufOrderingRegistry::ProtobufOrderingRegistryRecord messageOrderingRecord =
orderingRegistry->findMessageByName(messageType);
QMetaType type = messageOrderingRecord.first;
QProtobufMessagePointer pointer;
if (type.id() != QMetaType::UnknownType) {
void *msg = type.create();
return reinterpret_cast<QProtobufMessage *>(msg);
pointer.reset(reinterpret_cast<QProtobufMessage *>(msg));
return pointer;
}
qProtoWarning() << "Unable to find protobuf message with name" << messageType
<< ". Message is not registered.";
return nullptr;
return pointer;
}
}

View File

@ -202,7 +202,7 @@ const char *CommonTemplates::ConstructorMessageDeclarationTemplate()
const char *CommonTemplates::DestructorMessageDeclarationTemplate()
{
return "~$classname$() override;\n";
return "~$classname$();\n";
}
const char *CommonTemplates::MemberTemplate()

View File

@ -50,7 +50,7 @@ void QtProtobufTypesGenerationTest::EmptyMessageTest()
QCOMPARE(qtprotobufnamespace::tests::EmptyMessage::propertyOrdering.getMessageFullName(),
"qtprotobufnamespace.tests.EmptyMessage");
std::unique_ptr<QProtobufMessage> rawMessage(
QProtobufMessagePointer rawMessage(
QProtobufMessage::constructByName("qtprotobufnamespace.tests.EmptyMessage"));
QVERIFY(reinterpret_cast<qtprotobufnamespace::tests::EmptyMessage*>(rawMessage.get()) != nullptr);
}
@ -293,7 +293,7 @@ void QtProtobufTypesGenerationTest::ComplexMessageTest()
stringMsg);
QCOMPARE(test.testComplexField(), stringMsg);
std::unique_ptr<QProtobufMessage> rawObject(
QProtobufMessagePointer rawObject(
QProtobufMessage::constructByName("qtprotobufnamespace.tests.ComplexMessage"));
auto *rawMessage = reinterpret_cast<qtprotobufnamespace::tests::ComplexMessage*>(rawObject.get());
QVERIFY(rawMessage);
@ -369,7 +369,7 @@ void QtProtobufTypesGenerationTest::AccessMessageFieldsFromGetter()
void QtProtobufTypesGenerationTest::InvalidMessageConstructorTest()
{
std::unique_ptr<QProtobufMessage> message(QProtobufMessage::constructByName(
QProtobufMessagePointer message(QProtobufMessage::constructByName(
"qtprotobufnamespace.tests.InvalidMessageConstructorTestNotExists"));
QCOMPARE(message, nullptr);
}

View File

@ -27,27 +27,25 @@ class NonMessageQObject : public QObject
void QtProtobufRawSerializersTest::ComplexMessageSerializeTest()
{
QProtobufMessage *rawMessage =
QProtobufMessagePointer rawMessage =
QProtobufMessage::constructByName("qtprotobufnamespace.tests.ComplexMessage");
m_serializer->deserializeRawMessage(
rawMessage, QByteArray::fromHex("1208320671776572747908d3ffffffffffffffff01"));
auto *message = reinterpret_cast<qtprotobufnamespace::tests::ComplexMessage *>(rawMessage);
rawMessage.get(), QByteArray::fromHex("1208320671776572747908d3ffffffffffffffff01"));
auto *message = reinterpret_cast<qtprotobufnamespace::tests::ComplexMessage *>(rawMessage.get());
QCOMPARE(message->testFieldInt(), -45);
QCOMPARE(message->testComplexField().testFieldString(), QLatin1String("qwerty"));
delete rawMessage;
}
void QtProtobufRawSerializersTest::ComplexMessageDeserializeTest()
{
QProtobufMessage *rawMessage =
QProtobufMessagePointer rawMessage =
QProtobufMessage::constructByName("qtprotobufnamespace.tests.ComplexMessage");
auto *message = reinterpret_cast<qtprotobufnamespace::tests::ComplexMessage *>(rawMessage);
auto *message = reinterpret_cast<qtprotobufnamespace::tests::ComplexMessage *>(rawMessage.get());
message->setTestFieldInt(-45);
message->testComplexField().setTestFieldString(QLatin1String("qwerty"));
QByteArray buffer = m_serializer->serializeRawMessage(rawMessage);
QByteArray buffer = m_serializer->serializeRawMessage(rawMessage.get());
QCOMPARE(buffer.toHex(), "08d3ffffffffffffffff0112083206717765727479");
delete rawMessage;
}
QTEST_MAIN(QtProtobufRawSerializersTest)

View File

@ -51,7 +51,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
AnnotatedMessage1();
~AnnotatedMessage1() override;
~AnnotatedMessage1();
AnnotatedMessage1(const AnnotatedMessage1 &other);
AnnotatedMessage1 &operator =(const AnnotatedMessage1 &other);
AnnotatedMessage1(AnnotatedMessage1 &&other) noexcept;
@ -93,7 +93,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
AnnotatedMessage2();
~AnnotatedMessage2() override;
~AnnotatedMessage2();
AnnotatedMessage2(const AnnotatedMessage2 &other);
AnnotatedMessage2 &operator =(const AnnotatedMessage2 &other);
AnnotatedMessage2(AnnotatedMessage2 &&other) noexcept;
@ -135,7 +135,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
AnnotatedMessage3();
~AnnotatedMessage3() override;
~AnnotatedMessage3();
AnnotatedMessage3(const AnnotatedMessage3 &other);
AnnotatedMessage3 &operator =(const AnnotatedMessage3 &other);
AnnotatedMessage3(AnnotatedMessage3 &&other) noexcept;
@ -178,7 +178,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
AnnotatedMessage4();
~AnnotatedMessage4() override;
~AnnotatedMessage4();
AnnotatedMessage4(const AnnotatedMessage4 &other);
AnnotatedMessage4 &operator =(const AnnotatedMessage4 &other);
AnnotatedMessage4(AnnotatedMessage4 &&other) noexcept;
@ -217,7 +217,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
AnnotatedMessage5();
~AnnotatedMessage5() override;
~AnnotatedMessage5();
AnnotatedMessage5(const AnnotatedMessage5 &other);
AnnotatedMessage5 &operator =(const AnnotatedMessage5 &other);
AnnotatedMessage5(AnnotatedMessage5 &&other) noexcept;
@ -257,7 +257,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
AnnotatedMessage6();
~AnnotatedMessage6() override;
~AnnotatedMessage6();
AnnotatedMessage6(const AnnotatedMessage6 &other);
AnnotatedMessage6 &operator =(const AnnotatedMessage6 &other);
AnnotatedMessage6(AnnotatedMessage6 &&other) noexcept;
@ -299,7 +299,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
AnnotatedMessage7();
~AnnotatedMessage7() override;
~AnnotatedMessage7();
AnnotatedMessage7(const AnnotatedMessage7 &other);
AnnotatedMessage7 &operator =(const AnnotatedMessage7 &other);
AnnotatedMessage7(AnnotatedMessage7 &&other) noexcept;
@ -341,7 +341,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
AnnotatedMessage8();
~AnnotatedMessage8() override;
~AnnotatedMessage8();
AnnotatedMessage8(const AnnotatedMessage8 &other);
AnnotatedMessage8 &operator =(const AnnotatedMessage8 &other);
AnnotatedMessage8(AnnotatedMessage8 &&other) noexcept;
@ -384,7 +384,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
AnnotatedMessage9();
~AnnotatedMessage9() override;
~AnnotatedMessage9();
AnnotatedMessage9(const AnnotatedMessage9 &other);
AnnotatedMessage9 &operator =(const AnnotatedMessage9 &other);
AnnotatedMessage9(AnnotatedMessage9 &&other) noexcept;

View File

@ -32,7 +32,7 @@ class EmptyMessage : public QProtobufMessage
public:
EmptyMessage();
~EmptyMessage() override;
~EmptyMessage();
EmptyMessage(const EmptyMessage &other);
EmptyMessage &operator =(const EmptyMessage &other);
EmptyMessage(EmptyMessage &&other) noexcept;
@ -59,7 +59,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleStringMessage();
~SimpleStringMessage() override;
~SimpleStringMessage();
SimpleStringMessage(const SimpleStringMessage &other);
SimpleStringMessage &operator =(const SimpleStringMessage &other);
SimpleStringMessage(SimpleStringMessage &&other) noexcept;
@ -95,7 +95,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
ComplexMessage();
~ComplexMessage() override;
~ComplexMessage();
ComplexMessage(const ComplexMessage &other);
ComplexMessage &operator =(const ComplexMessage &other);
ComplexMessage(ComplexMessage &&other) noexcept;

View File

@ -40,7 +40,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
FieldIndexTest1Message();
~FieldIndexTest1Message() override;
~FieldIndexTest1Message();
FieldIndexTest1Message(const FieldIndexTest1Message &other);
FieldIndexTest1Message &operator =(const FieldIndexTest1Message &other);
FieldIndexTest1Message(FieldIndexTest1Message &&other) noexcept;
@ -78,7 +78,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
FieldIndexTest2Message();
~FieldIndexTest2Message() override;
~FieldIndexTest2Message();
FieldIndexTest2Message(const FieldIndexTest2Message &other);
FieldIndexTest2Message &operator =(const FieldIndexTest2Message &other);
FieldIndexTest2Message(FieldIndexTest2Message &&other) noexcept;
@ -116,7 +116,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
FieldIndexTest3Message();
~FieldIndexTest3Message() override;
~FieldIndexTest3Message();
FieldIndexTest3Message(const FieldIndexTest3Message &other);
FieldIndexTest3Message &operator =(const FieldIndexTest3Message &other);
FieldIndexTest3Message(FieldIndexTest3Message &&other) noexcept;
@ -154,7 +154,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
FieldIndexTest4Message();
~FieldIndexTest4Message() override;
~FieldIndexTest4Message();
FieldIndexTest4Message(const FieldIndexTest4Message &other);
FieldIndexTest4Message &operator =(const FieldIndexTest4Message &other);
FieldIndexTest4Message(FieldIndexTest4Message &&other) noexcept;

View File

@ -60,7 +60,7 @@ class EmptyMessage : public QProtobufMessage
public:
EmptyMessage();
~EmptyMessage() override;
~EmptyMessage();
EmptyMessage(const EmptyMessage &other);
EmptyMessage &operator =(const EmptyMessage &other);
EmptyMessage(EmptyMessage &&other) noexcept;
@ -87,7 +87,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleBoolMessage();
~SimpleBoolMessage() override;
~SimpleBoolMessage();
SimpleBoolMessage(const SimpleBoolMessage &other);
SimpleBoolMessage &operator =(const SimpleBoolMessage &other);
SimpleBoolMessage(SimpleBoolMessage &&other) noexcept;
@ -125,7 +125,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleIntMessage();
~SimpleIntMessage() override;
~SimpleIntMessage();
SimpleIntMessage(const SimpleIntMessage &other);
SimpleIntMessage &operator =(const SimpleIntMessage &other);
SimpleIntMessage(SimpleIntMessage &&other) noexcept;
@ -163,7 +163,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleSIntMessage();
~SimpleSIntMessage() override;
~SimpleSIntMessage();
SimpleSIntMessage(const SimpleSIntMessage &other);
SimpleSIntMessage &operator =(const SimpleSIntMessage &other);
SimpleSIntMessage(SimpleSIntMessage &&other) noexcept;
@ -201,7 +201,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleUIntMessage();
~SimpleUIntMessage() override;
~SimpleUIntMessage();
SimpleUIntMessage(const SimpleUIntMessage &other);
SimpleUIntMessage &operator =(const SimpleUIntMessage &other);
SimpleUIntMessage(SimpleUIntMessage &&other) noexcept;
@ -239,7 +239,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleInt64Message();
~SimpleInt64Message() override;
~SimpleInt64Message();
SimpleInt64Message(const SimpleInt64Message &other);
SimpleInt64Message &operator =(const SimpleInt64Message &other);
SimpleInt64Message(SimpleInt64Message &&other) noexcept;
@ -277,7 +277,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleSInt64Message();
~SimpleSInt64Message() override;
~SimpleSInt64Message();
SimpleSInt64Message(const SimpleSInt64Message &other);
SimpleSInt64Message &operator =(const SimpleSInt64Message &other);
SimpleSInt64Message(SimpleSInt64Message &&other) noexcept;
@ -315,7 +315,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleUInt64Message();
~SimpleUInt64Message() override;
~SimpleUInt64Message();
SimpleUInt64Message(const SimpleUInt64Message &other);
SimpleUInt64Message &operator =(const SimpleUInt64Message &other);
SimpleUInt64Message(SimpleUInt64Message &&other) noexcept;
@ -353,7 +353,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleStringMessage();
~SimpleStringMessage() override;
~SimpleStringMessage();
SimpleStringMessage(const SimpleStringMessage &other);
SimpleStringMessage &operator =(const SimpleStringMessage &other);
SimpleStringMessage(SimpleStringMessage &&other) noexcept;
@ -387,7 +387,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleFloatMessage();
~SimpleFloatMessage() override;
~SimpleFloatMessage();
SimpleFloatMessage(const SimpleFloatMessage &other);
SimpleFloatMessage &operator =(const SimpleFloatMessage &other);
SimpleFloatMessage(SimpleFloatMessage &&other) noexcept;
@ -425,7 +425,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleDoubleMessage();
~SimpleDoubleMessage() override;
~SimpleDoubleMessage();
SimpleDoubleMessage(const SimpleDoubleMessage &other);
SimpleDoubleMessage &operator =(const SimpleDoubleMessage &other);
SimpleDoubleMessage(SimpleDoubleMessage &&other) noexcept;
@ -463,7 +463,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleBytesMessage();
~SimpleBytesMessage() override;
~SimpleBytesMessage();
SimpleBytesMessage(const SimpleBytesMessage &other);
SimpleBytesMessage &operator =(const SimpleBytesMessage &other);
SimpleBytesMessage(SimpleBytesMessage &&other) noexcept;
@ -497,7 +497,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleFixedInt32Message();
~SimpleFixedInt32Message() override;
~SimpleFixedInt32Message();
SimpleFixedInt32Message(const SimpleFixedInt32Message &other);
SimpleFixedInt32Message &operator =(const SimpleFixedInt32Message &other);
SimpleFixedInt32Message(SimpleFixedInt32Message &&other) noexcept;
@ -535,7 +535,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleFixedInt64Message();
~SimpleFixedInt64Message() override;
~SimpleFixedInt64Message();
SimpleFixedInt64Message(const SimpleFixedInt64Message &other);
SimpleFixedInt64Message &operator =(const SimpleFixedInt64Message &other);
SimpleFixedInt64Message(SimpleFixedInt64Message &&other) noexcept;
@ -573,7 +573,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleSFixedInt32Message();
~SimpleSFixedInt32Message() override;
~SimpleSFixedInt32Message();
SimpleSFixedInt32Message(const SimpleSFixedInt32Message &other);
SimpleSFixedInt32Message &operator =(const SimpleSFixedInt32Message &other);
SimpleSFixedInt32Message(SimpleSFixedInt32Message &&other) noexcept;
@ -611,7 +611,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleSFixedInt64Message();
~SimpleSFixedInt64Message() override;
~SimpleSFixedInt64Message();
SimpleSFixedInt64Message(const SimpleSFixedInt64Message &other);
SimpleSFixedInt64Message &operator =(const SimpleSFixedInt64Message &other);
SimpleSFixedInt64Message(SimpleSFixedInt64Message &&other) noexcept;
@ -651,7 +651,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
ComplexMessage();
~ComplexMessage() override;
~ComplexMessage();
ComplexMessage(const ComplexMessage &other);
ComplexMessage &operator =(const ComplexMessage &other);
ComplexMessage(ComplexMessage &&other) noexcept;

View File

@ -210,7 +210,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint32, QString>;
SimpleSInt32StringMapMessage();
~SimpleSInt32StringMapMessage() override;
~SimpleSInt32StringMapMessage();
SimpleSInt32StringMapMessage(const SimpleSInt32StringMapMessage &other);
SimpleSInt32StringMapMessage &operator =(const SimpleSInt32StringMapMessage &other);
SimpleSInt32StringMapMessage(SimpleSInt32StringMapMessage &&other) noexcept;
@ -249,7 +249,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint64, QString>;
SimpleSInt64StringMapMessage();
~SimpleSInt64StringMapMessage() override;
~SimpleSInt64StringMapMessage();
SimpleSInt64StringMapMessage(const SimpleSInt64StringMapMessage &other);
SimpleSInt64StringMapMessage &operator =(const SimpleSInt64StringMapMessage &other);
SimpleSInt64StringMapMessage(SimpleSInt64StringMapMessage &&other) noexcept;
@ -288,7 +288,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int32, QString>;
SimpleInt32StringMapMessage();
~SimpleInt32StringMapMessage() override;
~SimpleInt32StringMapMessage();
SimpleInt32StringMapMessage(const SimpleInt32StringMapMessage &other);
SimpleInt32StringMapMessage &operator =(const SimpleInt32StringMapMessage &other);
SimpleInt32StringMapMessage(SimpleInt32StringMapMessage &&other) noexcept;
@ -327,7 +327,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int64, QString>;
SimpleInt64StringMapMessage();
~SimpleInt64StringMapMessage() override;
~SimpleInt64StringMapMessage();
SimpleInt64StringMapMessage(const SimpleInt64StringMapMessage &other);
SimpleInt64StringMapMessage &operator =(const SimpleInt64StringMapMessage &other);
SimpleInt64StringMapMessage(SimpleInt64StringMapMessage &&other) noexcept;
@ -366,7 +366,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint32, QString>;
SimpleUInt32StringMapMessage();
~SimpleUInt32StringMapMessage() override;
~SimpleUInt32StringMapMessage();
SimpleUInt32StringMapMessage(const SimpleUInt32StringMapMessage &other);
SimpleUInt32StringMapMessage &operator =(const SimpleUInt32StringMapMessage &other);
SimpleUInt32StringMapMessage(SimpleUInt32StringMapMessage &&other) noexcept;
@ -405,7 +405,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint64, QString>;
SimpleUInt64StringMapMessage();
~SimpleUInt64StringMapMessage() override;
~SimpleUInt64StringMapMessage();
SimpleUInt64StringMapMessage(const SimpleUInt64StringMapMessage &other);
SimpleUInt64StringMapMessage &operator =(const SimpleUInt64StringMapMessage &other);
SimpleUInt64StringMapMessage(SimpleUInt64StringMapMessage &&other) noexcept;
@ -444,7 +444,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed32, QString>;
SimpleFixed32StringMapMessage();
~SimpleFixed32StringMapMessage() override;
~SimpleFixed32StringMapMessage();
SimpleFixed32StringMapMessage(const SimpleFixed32StringMapMessage &other);
SimpleFixed32StringMapMessage &operator =(const SimpleFixed32StringMapMessage &other);
SimpleFixed32StringMapMessage(SimpleFixed32StringMapMessage &&other) noexcept;
@ -483,7 +483,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed64, QString>;
SimpleFixed64StringMapMessage();
~SimpleFixed64StringMapMessage() override;
~SimpleFixed64StringMapMessage();
SimpleFixed64StringMapMessage(const SimpleFixed64StringMapMessage &other);
SimpleFixed64StringMapMessage &operator =(const SimpleFixed64StringMapMessage &other);
SimpleFixed64StringMapMessage(SimpleFixed64StringMapMessage &&other) noexcept;
@ -522,7 +522,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed32, QString>;
SimpleSFixed32StringMapMessage();
~SimpleSFixed32StringMapMessage() override;
~SimpleSFixed32StringMapMessage();
SimpleSFixed32StringMapMessage(const SimpleSFixed32StringMapMessage &other);
SimpleSFixed32StringMapMessage &operator =(const SimpleSFixed32StringMapMessage &other);
SimpleSFixed32StringMapMessage(SimpleSFixed32StringMapMessage &&other) noexcept;
@ -561,7 +561,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed64, QString>;
SimpleSFixed64StringMapMessage();
~SimpleSFixed64StringMapMessage() override;
~SimpleSFixed64StringMapMessage();
SimpleSFixed64StringMapMessage(const SimpleSFixed64StringMapMessage &other);
SimpleSFixed64StringMapMessage &operator =(const SimpleSFixed64StringMapMessage &other);
SimpleSFixed64StringMapMessage(SimpleSFixed64StringMapMessage &&other) noexcept;
@ -600,7 +600,7 @@ public:
using MapFieldEntry = QHash<QString, QString>;
SimpleStringStringMapMessage();
~SimpleStringStringMapMessage() override;
~SimpleStringStringMapMessage();
SimpleStringStringMapMessage(const SimpleStringStringMapMessage &other);
SimpleStringStringMapMessage &operator =(const SimpleStringStringMapMessage &other);
SimpleStringStringMapMessage(SimpleStringStringMapMessage &&other) noexcept;
@ -639,7 +639,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint32, QtProtobuf::sint32>;
SimpleSInt32SInt32MapMessage();
~SimpleSInt32SInt32MapMessage() override;
~SimpleSInt32SInt32MapMessage();
SimpleSInt32SInt32MapMessage(const SimpleSInt32SInt32MapMessage &other);
SimpleSInt32SInt32MapMessage &operator =(const SimpleSInt32SInt32MapMessage &other);
SimpleSInt32SInt32MapMessage(SimpleSInt32SInt32MapMessage &&other) noexcept;
@ -678,7 +678,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint64, QtProtobuf::sint32>;
SimpleSInt64SInt32MapMessage();
~SimpleSInt64SInt32MapMessage() override;
~SimpleSInt64SInt32MapMessage();
SimpleSInt64SInt32MapMessage(const SimpleSInt64SInt32MapMessage &other);
SimpleSInt64SInt32MapMessage &operator =(const SimpleSInt64SInt32MapMessage &other);
SimpleSInt64SInt32MapMessage(SimpleSInt64SInt32MapMessage &&other) noexcept;
@ -717,7 +717,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int32, QtProtobuf::sint32>;
SimpleInt32SInt32MapMessage();
~SimpleInt32SInt32MapMessage() override;
~SimpleInt32SInt32MapMessage();
SimpleInt32SInt32MapMessage(const SimpleInt32SInt32MapMessage &other);
SimpleInt32SInt32MapMessage &operator =(const SimpleInt32SInt32MapMessage &other);
SimpleInt32SInt32MapMessage(SimpleInt32SInt32MapMessage &&other) noexcept;
@ -756,7 +756,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int64, QtProtobuf::sint32>;
SimpleInt64SInt32MapMessage();
~SimpleInt64SInt32MapMessage() override;
~SimpleInt64SInt32MapMessage();
SimpleInt64SInt32MapMessage(const SimpleInt64SInt32MapMessage &other);
SimpleInt64SInt32MapMessage &operator =(const SimpleInt64SInt32MapMessage &other);
SimpleInt64SInt32MapMessage(SimpleInt64SInt32MapMessage &&other) noexcept;
@ -795,7 +795,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint32, QtProtobuf::sint32>;
SimpleUInt32SInt32MapMessage();
~SimpleUInt32SInt32MapMessage() override;
~SimpleUInt32SInt32MapMessage();
SimpleUInt32SInt32MapMessage(const SimpleUInt32SInt32MapMessage &other);
SimpleUInt32SInt32MapMessage &operator =(const SimpleUInt32SInt32MapMessage &other);
SimpleUInt32SInt32MapMessage(SimpleUInt32SInt32MapMessage &&other) noexcept;
@ -834,7 +834,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint64, QtProtobuf::sint32>;
SimpleUInt64SInt32MapMessage();
~SimpleUInt64SInt32MapMessage() override;
~SimpleUInt64SInt32MapMessage();
SimpleUInt64SInt32MapMessage(const SimpleUInt64SInt32MapMessage &other);
SimpleUInt64SInt32MapMessage &operator =(const SimpleUInt64SInt32MapMessage &other);
SimpleUInt64SInt32MapMessage(SimpleUInt64SInt32MapMessage &&other) noexcept;
@ -873,7 +873,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed32, QtProtobuf::sint32>;
SimpleFixed32SInt32MapMessage();
~SimpleFixed32SInt32MapMessage() override;
~SimpleFixed32SInt32MapMessage();
SimpleFixed32SInt32MapMessage(const SimpleFixed32SInt32MapMessage &other);
SimpleFixed32SInt32MapMessage &operator =(const SimpleFixed32SInt32MapMessage &other);
SimpleFixed32SInt32MapMessage(SimpleFixed32SInt32MapMessage &&other) noexcept;
@ -912,7 +912,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed64, QtProtobuf::sint32>;
SimpleFixed64SInt32MapMessage();
~SimpleFixed64SInt32MapMessage() override;
~SimpleFixed64SInt32MapMessage();
SimpleFixed64SInt32MapMessage(const SimpleFixed64SInt32MapMessage &other);
SimpleFixed64SInt32MapMessage &operator =(const SimpleFixed64SInt32MapMessage &other);
SimpleFixed64SInt32MapMessage(SimpleFixed64SInt32MapMessage &&other) noexcept;
@ -951,7 +951,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed32, QtProtobuf::sint32>;
SimpleSFixed32SInt32MapMessage();
~SimpleSFixed32SInt32MapMessage() override;
~SimpleSFixed32SInt32MapMessage();
SimpleSFixed32SInt32MapMessage(const SimpleSFixed32SInt32MapMessage &other);
SimpleSFixed32SInt32MapMessage &operator =(const SimpleSFixed32SInt32MapMessage &other);
SimpleSFixed32SInt32MapMessage(SimpleSFixed32SInt32MapMessage &&other) noexcept;
@ -990,7 +990,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed64, QtProtobuf::sint32>;
SimpleSFixed64SInt32MapMessage();
~SimpleSFixed64SInt32MapMessage() override;
~SimpleSFixed64SInt32MapMessage();
SimpleSFixed64SInt32MapMessage(const SimpleSFixed64SInt32MapMessage &other);
SimpleSFixed64SInt32MapMessage &operator =(const SimpleSFixed64SInt32MapMessage &other);
SimpleSFixed64SInt32MapMessage(SimpleSFixed64SInt32MapMessage &&other) noexcept;
@ -1029,7 +1029,7 @@ public:
using MapFieldEntry = QHash<QString, QtProtobuf::sint32>;
SimpleStringSInt32MapMessage();
~SimpleStringSInt32MapMessage() override;
~SimpleStringSInt32MapMessage();
SimpleStringSInt32MapMessage(const SimpleStringSInt32MapMessage &other);
SimpleStringSInt32MapMessage &operator =(const SimpleStringSInt32MapMessage &other);
SimpleStringSInt32MapMessage(SimpleStringSInt32MapMessage &&other) noexcept;
@ -1068,7 +1068,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint32, QtProtobuf::sint64>;
SimpleSInt32SInt64MapMessage();
~SimpleSInt32SInt64MapMessage() override;
~SimpleSInt32SInt64MapMessage();
SimpleSInt32SInt64MapMessage(const SimpleSInt32SInt64MapMessage &other);
SimpleSInt32SInt64MapMessage &operator =(const SimpleSInt32SInt64MapMessage &other);
SimpleSInt32SInt64MapMessage(SimpleSInt32SInt64MapMessage &&other) noexcept;
@ -1107,7 +1107,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint64, QtProtobuf::sint64>;
SimpleSInt64SInt64MapMessage();
~SimpleSInt64SInt64MapMessage() override;
~SimpleSInt64SInt64MapMessage();
SimpleSInt64SInt64MapMessage(const SimpleSInt64SInt64MapMessage &other);
SimpleSInt64SInt64MapMessage &operator =(const SimpleSInt64SInt64MapMessage &other);
SimpleSInt64SInt64MapMessage(SimpleSInt64SInt64MapMessage &&other) noexcept;
@ -1146,7 +1146,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int32, QtProtobuf::sint64>;
SimpleInt32SInt64MapMessage();
~SimpleInt32SInt64MapMessage() override;
~SimpleInt32SInt64MapMessage();
SimpleInt32SInt64MapMessage(const SimpleInt32SInt64MapMessage &other);
SimpleInt32SInt64MapMessage &operator =(const SimpleInt32SInt64MapMessage &other);
SimpleInt32SInt64MapMessage(SimpleInt32SInt64MapMessage &&other) noexcept;
@ -1185,7 +1185,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int64, QtProtobuf::sint64>;
SimpleInt64SInt64MapMessage();
~SimpleInt64SInt64MapMessage() override;
~SimpleInt64SInt64MapMessage();
SimpleInt64SInt64MapMessage(const SimpleInt64SInt64MapMessage &other);
SimpleInt64SInt64MapMessage &operator =(const SimpleInt64SInt64MapMessage &other);
SimpleInt64SInt64MapMessage(SimpleInt64SInt64MapMessage &&other) noexcept;
@ -1224,7 +1224,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint32, QtProtobuf::sint64>;
SimpleUInt32SInt64MapMessage();
~SimpleUInt32SInt64MapMessage() override;
~SimpleUInt32SInt64MapMessage();
SimpleUInt32SInt64MapMessage(const SimpleUInt32SInt64MapMessage &other);
SimpleUInt32SInt64MapMessage &operator =(const SimpleUInt32SInt64MapMessage &other);
SimpleUInt32SInt64MapMessage(SimpleUInt32SInt64MapMessage &&other) noexcept;
@ -1263,7 +1263,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint64, QtProtobuf::sint64>;
SimpleUInt64SInt64MapMessage();
~SimpleUInt64SInt64MapMessage() override;
~SimpleUInt64SInt64MapMessage();
SimpleUInt64SInt64MapMessage(const SimpleUInt64SInt64MapMessage &other);
SimpleUInt64SInt64MapMessage &operator =(const SimpleUInt64SInt64MapMessage &other);
SimpleUInt64SInt64MapMessage(SimpleUInt64SInt64MapMessage &&other) noexcept;
@ -1302,7 +1302,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed32, QtProtobuf::sint64>;
SimpleFixed32SInt64MapMessage();
~SimpleFixed32SInt64MapMessage() override;
~SimpleFixed32SInt64MapMessage();
SimpleFixed32SInt64MapMessage(const SimpleFixed32SInt64MapMessage &other);
SimpleFixed32SInt64MapMessage &operator =(const SimpleFixed32SInt64MapMessage &other);
SimpleFixed32SInt64MapMessage(SimpleFixed32SInt64MapMessage &&other) noexcept;
@ -1341,7 +1341,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed64, QtProtobuf::sint64>;
SimpleFixed64SInt64MapMessage();
~SimpleFixed64SInt64MapMessage() override;
~SimpleFixed64SInt64MapMessage();
SimpleFixed64SInt64MapMessage(const SimpleFixed64SInt64MapMessage &other);
SimpleFixed64SInt64MapMessage &operator =(const SimpleFixed64SInt64MapMessage &other);
SimpleFixed64SInt64MapMessage(SimpleFixed64SInt64MapMessage &&other) noexcept;
@ -1380,7 +1380,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed32, QtProtobuf::sint64>;
SimpleSFixed32SInt64MapMessage();
~SimpleSFixed32SInt64MapMessage() override;
~SimpleSFixed32SInt64MapMessage();
SimpleSFixed32SInt64MapMessage(const SimpleSFixed32SInt64MapMessage &other);
SimpleSFixed32SInt64MapMessage &operator =(const SimpleSFixed32SInt64MapMessage &other);
SimpleSFixed32SInt64MapMessage(SimpleSFixed32SInt64MapMessage &&other) noexcept;
@ -1419,7 +1419,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed64, QtProtobuf::sint64>;
SimpleSFixed64SInt64MapMessage();
~SimpleSFixed64SInt64MapMessage() override;
~SimpleSFixed64SInt64MapMessage();
SimpleSFixed64SInt64MapMessage(const SimpleSFixed64SInt64MapMessage &other);
SimpleSFixed64SInt64MapMessage &operator =(const SimpleSFixed64SInt64MapMessage &other);
SimpleSFixed64SInt64MapMessage(SimpleSFixed64SInt64MapMessage &&other) noexcept;
@ -1458,7 +1458,7 @@ public:
using MapFieldEntry = QHash<QString, QtProtobuf::sint64>;
SimpleStringSInt64MapMessage();
~SimpleStringSInt64MapMessage() override;
~SimpleStringSInt64MapMessage();
SimpleStringSInt64MapMessage(const SimpleStringSInt64MapMessage &other);
SimpleStringSInt64MapMessage &operator =(const SimpleStringSInt64MapMessage &other);
SimpleStringSInt64MapMessage(SimpleStringSInt64MapMessage &&other) noexcept;
@ -1497,7 +1497,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint32, QtProtobuf::uint32>;
SimpleSInt32UInt32MapMessage();
~SimpleSInt32UInt32MapMessage() override;
~SimpleSInt32UInt32MapMessage();
SimpleSInt32UInt32MapMessage(const SimpleSInt32UInt32MapMessage &other);
SimpleSInt32UInt32MapMessage &operator =(const SimpleSInt32UInt32MapMessage &other);
SimpleSInt32UInt32MapMessage(SimpleSInt32UInt32MapMessage &&other) noexcept;
@ -1536,7 +1536,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint64, QtProtobuf::uint32>;
SimpleSInt64UInt32MapMessage();
~SimpleSInt64UInt32MapMessage() override;
~SimpleSInt64UInt32MapMessage();
SimpleSInt64UInt32MapMessage(const SimpleSInt64UInt32MapMessage &other);
SimpleSInt64UInt32MapMessage &operator =(const SimpleSInt64UInt32MapMessage &other);
SimpleSInt64UInt32MapMessage(SimpleSInt64UInt32MapMessage &&other) noexcept;
@ -1575,7 +1575,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int32, QtProtobuf::uint32>;
SimpleInt32UInt32MapMessage();
~SimpleInt32UInt32MapMessage() override;
~SimpleInt32UInt32MapMessage();
SimpleInt32UInt32MapMessage(const SimpleInt32UInt32MapMessage &other);
SimpleInt32UInt32MapMessage &operator =(const SimpleInt32UInt32MapMessage &other);
SimpleInt32UInt32MapMessage(SimpleInt32UInt32MapMessage &&other) noexcept;
@ -1614,7 +1614,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int64, QtProtobuf::uint32>;
SimpleInt64UInt32MapMessage();
~SimpleInt64UInt32MapMessage() override;
~SimpleInt64UInt32MapMessage();
SimpleInt64UInt32MapMessage(const SimpleInt64UInt32MapMessage &other);
SimpleInt64UInt32MapMessage &operator =(const SimpleInt64UInt32MapMessage &other);
SimpleInt64UInt32MapMessage(SimpleInt64UInt32MapMessage &&other) noexcept;
@ -1653,7 +1653,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint32, QtProtobuf::uint32>;
SimpleUInt32UInt32MapMessage();
~SimpleUInt32UInt32MapMessage() override;
~SimpleUInt32UInt32MapMessage();
SimpleUInt32UInt32MapMessage(const SimpleUInt32UInt32MapMessage &other);
SimpleUInt32UInt32MapMessage &operator =(const SimpleUInt32UInt32MapMessage &other);
SimpleUInt32UInt32MapMessage(SimpleUInt32UInt32MapMessage &&other) noexcept;
@ -1692,7 +1692,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint64, QtProtobuf::uint32>;
SimpleUInt64UInt32MapMessage();
~SimpleUInt64UInt32MapMessage() override;
~SimpleUInt64UInt32MapMessage();
SimpleUInt64UInt32MapMessage(const SimpleUInt64UInt32MapMessage &other);
SimpleUInt64UInt32MapMessage &operator =(const SimpleUInt64UInt32MapMessage &other);
SimpleUInt64UInt32MapMessage(SimpleUInt64UInt32MapMessage &&other) noexcept;
@ -1731,7 +1731,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed32, QtProtobuf::uint32>;
SimpleFixed32UInt32MapMessage();
~SimpleFixed32UInt32MapMessage() override;
~SimpleFixed32UInt32MapMessage();
SimpleFixed32UInt32MapMessage(const SimpleFixed32UInt32MapMessage &other);
SimpleFixed32UInt32MapMessage &operator =(const SimpleFixed32UInt32MapMessage &other);
SimpleFixed32UInt32MapMessage(SimpleFixed32UInt32MapMessage &&other) noexcept;
@ -1770,7 +1770,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed64, QtProtobuf::uint32>;
SimpleFixed64UInt32MapMessage();
~SimpleFixed64UInt32MapMessage() override;
~SimpleFixed64UInt32MapMessage();
SimpleFixed64UInt32MapMessage(const SimpleFixed64UInt32MapMessage &other);
SimpleFixed64UInt32MapMessage &operator =(const SimpleFixed64UInt32MapMessage &other);
SimpleFixed64UInt32MapMessage(SimpleFixed64UInt32MapMessage &&other) noexcept;
@ -1809,7 +1809,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed32, QtProtobuf::uint32>;
SimpleSFixed32UInt32MapMessage();
~SimpleSFixed32UInt32MapMessage() override;
~SimpleSFixed32UInt32MapMessage();
SimpleSFixed32UInt32MapMessage(const SimpleSFixed32UInt32MapMessage &other);
SimpleSFixed32UInt32MapMessage &operator =(const SimpleSFixed32UInt32MapMessage &other);
SimpleSFixed32UInt32MapMessage(SimpleSFixed32UInt32MapMessage &&other) noexcept;
@ -1848,7 +1848,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed64, QtProtobuf::uint32>;
SimpleSFixed64UInt32MapMessage();
~SimpleSFixed64UInt32MapMessage() override;
~SimpleSFixed64UInt32MapMessage();
SimpleSFixed64UInt32MapMessage(const SimpleSFixed64UInt32MapMessage &other);
SimpleSFixed64UInt32MapMessage &operator =(const SimpleSFixed64UInt32MapMessage &other);
SimpleSFixed64UInt32MapMessage(SimpleSFixed64UInt32MapMessage &&other) noexcept;
@ -1887,7 +1887,7 @@ public:
using MapFieldEntry = QHash<QString, QtProtobuf::uint32>;
SimpleStringUInt32MapMessage();
~SimpleStringUInt32MapMessage() override;
~SimpleStringUInt32MapMessage();
SimpleStringUInt32MapMessage(const SimpleStringUInt32MapMessage &other);
SimpleStringUInt32MapMessage &operator =(const SimpleStringUInt32MapMessage &other);
SimpleStringUInt32MapMessage(SimpleStringUInt32MapMessage &&other) noexcept;
@ -1926,7 +1926,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint32, QtProtobuf::uint64>;
SimpleSInt32UInt64MapMessage();
~SimpleSInt32UInt64MapMessage() override;
~SimpleSInt32UInt64MapMessage();
SimpleSInt32UInt64MapMessage(const SimpleSInt32UInt64MapMessage &other);
SimpleSInt32UInt64MapMessage &operator =(const SimpleSInt32UInt64MapMessage &other);
SimpleSInt32UInt64MapMessage(SimpleSInt32UInt64MapMessage &&other) noexcept;
@ -1965,7 +1965,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint64, QtProtobuf::uint64>;
SimpleSInt64UInt64MapMessage();
~SimpleSInt64UInt64MapMessage() override;
~SimpleSInt64UInt64MapMessage();
SimpleSInt64UInt64MapMessage(const SimpleSInt64UInt64MapMessage &other);
SimpleSInt64UInt64MapMessage &operator =(const SimpleSInt64UInt64MapMessage &other);
SimpleSInt64UInt64MapMessage(SimpleSInt64UInt64MapMessage &&other) noexcept;
@ -2004,7 +2004,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int32, QtProtobuf::uint64>;
SimpleInt32UInt64MapMessage();
~SimpleInt32UInt64MapMessage() override;
~SimpleInt32UInt64MapMessage();
SimpleInt32UInt64MapMessage(const SimpleInt32UInt64MapMessage &other);
SimpleInt32UInt64MapMessage &operator =(const SimpleInt32UInt64MapMessage &other);
SimpleInt32UInt64MapMessage(SimpleInt32UInt64MapMessage &&other) noexcept;
@ -2043,7 +2043,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int64, QtProtobuf::uint64>;
SimpleInt64UInt64MapMessage();
~SimpleInt64UInt64MapMessage() override;
~SimpleInt64UInt64MapMessage();
SimpleInt64UInt64MapMessage(const SimpleInt64UInt64MapMessage &other);
SimpleInt64UInt64MapMessage &operator =(const SimpleInt64UInt64MapMessage &other);
SimpleInt64UInt64MapMessage(SimpleInt64UInt64MapMessage &&other) noexcept;
@ -2082,7 +2082,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint32, QtProtobuf::uint64>;
SimpleUInt32UInt64MapMessage();
~SimpleUInt32UInt64MapMessage() override;
~SimpleUInt32UInt64MapMessage();
SimpleUInt32UInt64MapMessage(const SimpleUInt32UInt64MapMessage &other);
SimpleUInt32UInt64MapMessage &operator =(const SimpleUInt32UInt64MapMessage &other);
SimpleUInt32UInt64MapMessage(SimpleUInt32UInt64MapMessage &&other) noexcept;
@ -2121,7 +2121,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint64, QtProtobuf::uint64>;
SimpleUInt64UInt64MapMessage();
~SimpleUInt64UInt64MapMessage() override;
~SimpleUInt64UInt64MapMessage();
SimpleUInt64UInt64MapMessage(const SimpleUInt64UInt64MapMessage &other);
SimpleUInt64UInt64MapMessage &operator =(const SimpleUInt64UInt64MapMessage &other);
SimpleUInt64UInt64MapMessage(SimpleUInt64UInt64MapMessage &&other) noexcept;
@ -2160,7 +2160,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed32, QtProtobuf::uint64>;
SimpleFixed32UInt64MapMessage();
~SimpleFixed32UInt64MapMessage() override;
~SimpleFixed32UInt64MapMessage();
SimpleFixed32UInt64MapMessage(const SimpleFixed32UInt64MapMessage &other);
SimpleFixed32UInt64MapMessage &operator =(const SimpleFixed32UInt64MapMessage &other);
SimpleFixed32UInt64MapMessage(SimpleFixed32UInt64MapMessage &&other) noexcept;
@ -2199,7 +2199,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed64, QtProtobuf::uint64>;
SimpleFixed64UInt64MapMessage();
~SimpleFixed64UInt64MapMessage() override;
~SimpleFixed64UInt64MapMessage();
SimpleFixed64UInt64MapMessage(const SimpleFixed64UInt64MapMessage &other);
SimpleFixed64UInt64MapMessage &operator =(const SimpleFixed64UInt64MapMessage &other);
SimpleFixed64UInt64MapMessage(SimpleFixed64UInt64MapMessage &&other) noexcept;
@ -2238,7 +2238,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed32, QtProtobuf::uint64>;
SimpleSFixed32UInt64MapMessage();
~SimpleSFixed32UInt64MapMessage() override;
~SimpleSFixed32UInt64MapMessage();
SimpleSFixed32UInt64MapMessage(const SimpleSFixed32UInt64MapMessage &other);
SimpleSFixed32UInt64MapMessage &operator =(const SimpleSFixed32UInt64MapMessage &other);
SimpleSFixed32UInt64MapMessage(SimpleSFixed32UInt64MapMessage &&other) noexcept;
@ -2277,7 +2277,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed64, QtProtobuf::uint64>;
SimpleSFixed64UInt64MapMessage();
~SimpleSFixed64UInt64MapMessage() override;
~SimpleSFixed64UInt64MapMessage();
SimpleSFixed64UInt64MapMessage(const SimpleSFixed64UInt64MapMessage &other);
SimpleSFixed64UInt64MapMessage &operator =(const SimpleSFixed64UInt64MapMessage &other);
SimpleSFixed64UInt64MapMessage(SimpleSFixed64UInt64MapMessage &&other) noexcept;
@ -2316,7 +2316,7 @@ public:
using MapFieldEntry = QHash<QString, QtProtobuf::uint64>;
SimpleStringUInt64MapMessage();
~SimpleStringUInt64MapMessage() override;
~SimpleStringUInt64MapMessage();
SimpleStringUInt64MapMessage(const SimpleStringUInt64MapMessage &other);
SimpleStringUInt64MapMessage &operator =(const SimpleStringUInt64MapMessage &other);
SimpleStringUInt64MapMessage(SimpleStringUInt64MapMessage &&other) noexcept;
@ -2355,7 +2355,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint32, QtProtobuf::int32>;
SimpleSInt32Int32MapMessage();
~SimpleSInt32Int32MapMessage() override;
~SimpleSInt32Int32MapMessage();
SimpleSInt32Int32MapMessage(const SimpleSInt32Int32MapMessage &other);
SimpleSInt32Int32MapMessage &operator =(const SimpleSInt32Int32MapMessage &other);
SimpleSInt32Int32MapMessage(SimpleSInt32Int32MapMessage &&other) noexcept;
@ -2394,7 +2394,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint64, QtProtobuf::int32>;
SimpleSInt64Int32MapMessage();
~SimpleSInt64Int32MapMessage() override;
~SimpleSInt64Int32MapMessage();
SimpleSInt64Int32MapMessage(const SimpleSInt64Int32MapMessage &other);
SimpleSInt64Int32MapMessage &operator =(const SimpleSInt64Int32MapMessage &other);
SimpleSInt64Int32MapMessage(SimpleSInt64Int32MapMessage &&other) noexcept;
@ -2433,7 +2433,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int32, QtProtobuf::int32>;
SimpleInt32Int32MapMessage();
~SimpleInt32Int32MapMessage() override;
~SimpleInt32Int32MapMessage();
SimpleInt32Int32MapMessage(const SimpleInt32Int32MapMessage &other);
SimpleInt32Int32MapMessage &operator =(const SimpleInt32Int32MapMessage &other);
SimpleInt32Int32MapMessage(SimpleInt32Int32MapMessage &&other) noexcept;
@ -2472,7 +2472,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int64, QtProtobuf::int32>;
SimpleInt64Int32MapMessage();
~SimpleInt64Int32MapMessage() override;
~SimpleInt64Int32MapMessage();
SimpleInt64Int32MapMessage(const SimpleInt64Int32MapMessage &other);
SimpleInt64Int32MapMessage &operator =(const SimpleInt64Int32MapMessage &other);
SimpleInt64Int32MapMessage(SimpleInt64Int32MapMessage &&other) noexcept;
@ -2511,7 +2511,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint32, QtProtobuf::int32>;
SimpleUInt32Int32MapMessage();
~SimpleUInt32Int32MapMessage() override;
~SimpleUInt32Int32MapMessage();
SimpleUInt32Int32MapMessage(const SimpleUInt32Int32MapMessage &other);
SimpleUInt32Int32MapMessage &operator =(const SimpleUInt32Int32MapMessage &other);
SimpleUInt32Int32MapMessage(SimpleUInt32Int32MapMessage &&other) noexcept;
@ -2550,7 +2550,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint64, QtProtobuf::int32>;
SimpleUInt64Int32MapMessage();
~SimpleUInt64Int32MapMessage() override;
~SimpleUInt64Int32MapMessage();
SimpleUInt64Int32MapMessage(const SimpleUInt64Int32MapMessage &other);
SimpleUInt64Int32MapMessage &operator =(const SimpleUInt64Int32MapMessage &other);
SimpleUInt64Int32MapMessage(SimpleUInt64Int32MapMessage &&other) noexcept;
@ -2589,7 +2589,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed32, QtProtobuf::int32>;
SimpleFixed32Int32MapMessage();
~SimpleFixed32Int32MapMessage() override;
~SimpleFixed32Int32MapMessage();
SimpleFixed32Int32MapMessage(const SimpleFixed32Int32MapMessage &other);
SimpleFixed32Int32MapMessage &operator =(const SimpleFixed32Int32MapMessage &other);
SimpleFixed32Int32MapMessage(SimpleFixed32Int32MapMessage &&other) noexcept;
@ -2628,7 +2628,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed64, QtProtobuf::int32>;
SimpleFixed64Int32MapMessage();
~SimpleFixed64Int32MapMessage() override;
~SimpleFixed64Int32MapMessage();
SimpleFixed64Int32MapMessage(const SimpleFixed64Int32MapMessage &other);
SimpleFixed64Int32MapMessage &operator =(const SimpleFixed64Int32MapMessage &other);
SimpleFixed64Int32MapMessage(SimpleFixed64Int32MapMessage &&other) noexcept;
@ -2667,7 +2667,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed32, QtProtobuf::int32>;
SimpleSFixed32Int32MapMessage();
~SimpleSFixed32Int32MapMessage() override;
~SimpleSFixed32Int32MapMessage();
SimpleSFixed32Int32MapMessage(const SimpleSFixed32Int32MapMessage &other);
SimpleSFixed32Int32MapMessage &operator =(const SimpleSFixed32Int32MapMessage &other);
SimpleSFixed32Int32MapMessage(SimpleSFixed32Int32MapMessage &&other) noexcept;
@ -2706,7 +2706,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed64, QtProtobuf::int32>;
SimpleSFixed64Int32MapMessage();
~SimpleSFixed64Int32MapMessage() override;
~SimpleSFixed64Int32MapMessage();
SimpleSFixed64Int32MapMessage(const SimpleSFixed64Int32MapMessage &other);
SimpleSFixed64Int32MapMessage &operator =(const SimpleSFixed64Int32MapMessage &other);
SimpleSFixed64Int32MapMessage(SimpleSFixed64Int32MapMessage &&other) noexcept;
@ -2745,7 +2745,7 @@ public:
using MapFieldEntry = QHash<QString, QtProtobuf::int32>;
SimpleStringInt32MapMessage();
~SimpleStringInt32MapMessage() override;
~SimpleStringInt32MapMessage();
SimpleStringInt32MapMessage(const SimpleStringInt32MapMessage &other);
SimpleStringInt32MapMessage &operator =(const SimpleStringInt32MapMessage &other);
SimpleStringInt32MapMessage(SimpleStringInt32MapMessage &&other) noexcept;
@ -2784,7 +2784,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint32, QtProtobuf::int64>;
SimpleSInt32Int64MapMessage();
~SimpleSInt32Int64MapMessage() override;
~SimpleSInt32Int64MapMessage();
SimpleSInt32Int64MapMessage(const SimpleSInt32Int64MapMessage &other);
SimpleSInt32Int64MapMessage &operator =(const SimpleSInt32Int64MapMessage &other);
SimpleSInt32Int64MapMessage(SimpleSInt32Int64MapMessage &&other) noexcept;
@ -2823,7 +2823,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint64, QtProtobuf::int64>;
SimpleSInt64Int64MapMessage();
~SimpleSInt64Int64MapMessage() override;
~SimpleSInt64Int64MapMessage();
SimpleSInt64Int64MapMessage(const SimpleSInt64Int64MapMessage &other);
SimpleSInt64Int64MapMessage &operator =(const SimpleSInt64Int64MapMessage &other);
SimpleSInt64Int64MapMessage(SimpleSInt64Int64MapMessage &&other) noexcept;
@ -2862,7 +2862,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int32, QtProtobuf::int64>;
SimpleInt32Int64MapMessage();
~SimpleInt32Int64MapMessage() override;
~SimpleInt32Int64MapMessage();
SimpleInt32Int64MapMessage(const SimpleInt32Int64MapMessage &other);
SimpleInt32Int64MapMessage &operator =(const SimpleInt32Int64MapMessage &other);
SimpleInt32Int64MapMessage(SimpleInt32Int64MapMessage &&other) noexcept;
@ -2901,7 +2901,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int64, QtProtobuf::int64>;
SimpleInt64Int64MapMessage();
~SimpleInt64Int64MapMessage() override;
~SimpleInt64Int64MapMessage();
SimpleInt64Int64MapMessage(const SimpleInt64Int64MapMessage &other);
SimpleInt64Int64MapMessage &operator =(const SimpleInt64Int64MapMessage &other);
SimpleInt64Int64MapMessage(SimpleInt64Int64MapMessage &&other) noexcept;
@ -2940,7 +2940,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint32, QtProtobuf::int64>;
SimpleUInt32Int64MapMessage();
~SimpleUInt32Int64MapMessage() override;
~SimpleUInt32Int64MapMessage();
SimpleUInt32Int64MapMessage(const SimpleUInt32Int64MapMessage &other);
SimpleUInt32Int64MapMessage &operator =(const SimpleUInt32Int64MapMessage &other);
SimpleUInt32Int64MapMessage(SimpleUInt32Int64MapMessage &&other) noexcept;
@ -2979,7 +2979,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint64, QtProtobuf::int64>;
SimpleUInt64Int64MapMessage();
~SimpleUInt64Int64MapMessage() override;
~SimpleUInt64Int64MapMessage();
SimpleUInt64Int64MapMessage(const SimpleUInt64Int64MapMessage &other);
SimpleUInt64Int64MapMessage &operator =(const SimpleUInt64Int64MapMessage &other);
SimpleUInt64Int64MapMessage(SimpleUInt64Int64MapMessage &&other) noexcept;
@ -3018,7 +3018,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed32, QtProtobuf::int64>;
SimpleFixed32Int64MapMessage();
~SimpleFixed32Int64MapMessage() override;
~SimpleFixed32Int64MapMessage();
SimpleFixed32Int64MapMessage(const SimpleFixed32Int64MapMessage &other);
SimpleFixed32Int64MapMessage &operator =(const SimpleFixed32Int64MapMessage &other);
SimpleFixed32Int64MapMessage(SimpleFixed32Int64MapMessage &&other) noexcept;
@ -3057,7 +3057,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed64, QtProtobuf::int64>;
SimpleFixed64Int64MapMessage();
~SimpleFixed64Int64MapMessage() override;
~SimpleFixed64Int64MapMessage();
SimpleFixed64Int64MapMessage(const SimpleFixed64Int64MapMessage &other);
SimpleFixed64Int64MapMessage &operator =(const SimpleFixed64Int64MapMessage &other);
SimpleFixed64Int64MapMessage(SimpleFixed64Int64MapMessage &&other) noexcept;
@ -3096,7 +3096,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed32, QtProtobuf::int64>;
SimpleSFixed32Int64MapMessage();
~SimpleSFixed32Int64MapMessage() override;
~SimpleSFixed32Int64MapMessage();
SimpleSFixed32Int64MapMessage(const SimpleSFixed32Int64MapMessage &other);
SimpleSFixed32Int64MapMessage &operator =(const SimpleSFixed32Int64MapMessage &other);
SimpleSFixed32Int64MapMessage(SimpleSFixed32Int64MapMessage &&other) noexcept;
@ -3135,7 +3135,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed64, QtProtobuf::int64>;
SimpleSFixed64Int64MapMessage();
~SimpleSFixed64Int64MapMessage() override;
~SimpleSFixed64Int64MapMessage();
SimpleSFixed64Int64MapMessage(const SimpleSFixed64Int64MapMessage &other);
SimpleSFixed64Int64MapMessage &operator =(const SimpleSFixed64Int64MapMessage &other);
SimpleSFixed64Int64MapMessage(SimpleSFixed64Int64MapMessage &&other) noexcept;
@ -3174,7 +3174,7 @@ public:
using MapFieldEntry = QHash<QString, QtProtobuf::int64>;
SimpleStringInt64MapMessage();
~SimpleStringInt64MapMessage() override;
~SimpleStringInt64MapMessage();
SimpleStringInt64MapMessage(const SimpleStringInt64MapMessage &other);
SimpleStringInt64MapMessage &operator =(const SimpleStringInt64MapMessage &other);
SimpleStringInt64MapMessage(SimpleStringInt64MapMessage &&other) noexcept;
@ -3213,7 +3213,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint32, std::shared_ptr<ComplexMessage>>;
SimpleSInt32ComplexMessageMapMessage();
~SimpleSInt32ComplexMessageMapMessage() override;
~SimpleSInt32ComplexMessageMapMessage();
SimpleSInt32ComplexMessageMapMessage(const SimpleSInt32ComplexMessageMapMessage &other);
SimpleSInt32ComplexMessageMapMessage &operator =(const SimpleSInt32ComplexMessageMapMessage &other);
SimpleSInt32ComplexMessageMapMessage(SimpleSInt32ComplexMessageMapMessage &&other) noexcept;
@ -3252,7 +3252,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint64, std::shared_ptr<ComplexMessage>>;
SimpleSInt64ComplexMessageMapMessage();
~SimpleSInt64ComplexMessageMapMessage() override;
~SimpleSInt64ComplexMessageMapMessage();
SimpleSInt64ComplexMessageMapMessage(const SimpleSInt64ComplexMessageMapMessage &other);
SimpleSInt64ComplexMessageMapMessage &operator =(const SimpleSInt64ComplexMessageMapMessage &other);
SimpleSInt64ComplexMessageMapMessage(SimpleSInt64ComplexMessageMapMessage &&other) noexcept;
@ -3291,7 +3291,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int32, std::shared_ptr<ComplexMessage>>;
SimpleInt32ComplexMessageMapMessage();
~SimpleInt32ComplexMessageMapMessage() override;
~SimpleInt32ComplexMessageMapMessage();
SimpleInt32ComplexMessageMapMessage(const SimpleInt32ComplexMessageMapMessage &other);
SimpleInt32ComplexMessageMapMessage &operator =(const SimpleInt32ComplexMessageMapMessage &other);
SimpleInt32ComplexMessageMapMessage(SimpleInt32ComplexMessageMapMessage &&other) noexcept;
@ -3330,7 +3330,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int64, std::shared_ptr<ComplexMessage>>;
SimpleInt64ComplexMessageMapMessage();
~SimpleInt64ComplexMessageMapMessage() override;
~SimpleInt64ComplexMessageMapMessage();
SimpleInt64ComplexMessageMapMessage(const SimpleInt64ComplexMessageMapMessage &other);
SimpleInt64ComplexMessageMapMessage &operator =(const SimpleInt64ComplexMessageMapMessage &other);
SimpleInt64ComplexMessageMapMessage(SimpleInt64ComplexMessageMapMessage &&other) noexcept;
@ -3369,7 +3369,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint32, std::shared_ptr<ComplexMessage>>;
SimpleUInt32ComplexMessageMapMessage();
~SimpleUInt32ComplexMessageMapMessage() override;
~SimpleUInt32ComplexMessageMapMessage();
SimpleUInt32ComplexMessageMapMessage(const SimpleUInt32ComplexMessageMapMessage &other);
SimpleUInt32ComplexMessageMapMessage &operator =(const SimpleUInt32ComplexMessageMapMessage &other);
SimpleUInt32ComplexMessageMapMessage(SimpleUInt32ComplexMessageMapMessage &&other) noexcept;
@ -3408,7 +3408,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint64, std::shared_ptr<ComplexMessage>>;
SimpleUInt64ComplexMessageMapMessage();
~SimpleUInt64ComplexMessageMapMessage() override;
~SimpleUInt64ComplexMessageMapMessage();
SimpleUInt64ComplexMessageMapMessage(const SimpleUInt64ComplexMessageMapMessage &other);
SimpleUInt64ComplexMessageMapMessage &operator =(const SimpleUInt64ComplexMessageMapMessage &other);
SimpleUInt64ComplexMessageMapMessage(SimpleUInt64ComplexMessageMapMessage &&other) noexcept;
@ -3447,7 +3447,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed32, std::shared_ptr<ComplexMessage>>;
SimpleFixed32ComplexMessageMapMessage();
~SimpleFixed32ComplexMessageMapMessage() override;
~SimpleFixed32ComplexMessageMapMessage();
SimpleFixed32ComplexMessageMapMessage(const SimpleFixed32ComplexMessageMapMessage &other);
SimpleFixed32ComplexMessageMapMessage &operator =(const SimpleFixed32ComplexMessageMapMessage &other);
SimpleFixed32ComplexMessageMapMessage(SimpleFixed32ComplexMessageMapMessage &&other) noexcept;
@ -3486,7 +3486,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed64, std::shared_ptr<ComplexMessage>>;
SimpleFixed64ComplexMessageMapMessage();
~SimpleFixed64ComplexMessageMapMessage() override;
~SimpleFixed64ComplexMessageMapMessage();
SimpleFixed64ComplexMessageMapMessage(const SimpleFixed64ComplexMessageMapMessage &other);
SimpleFixed64ComplexMessageMapMessage &operator =(const SimpleFixed64ComplexMessageMapMessage &other);
SimpleFixed64ComplexMessageMapMessage(SimpleFixed64ComplexMessageMapMessage &&other) noexcept;
@ -3525,7 +3525,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed32, std::shared_ptr<ComplexMessage>>;
SimpleSFixed32ComplexMessageMapMessage();
~SimpleSFixed32ComplexMessageMapMessage() override;
~SimpleSFixed32ComplexMessageMapMessage();
SimpleSFixed32ComplexMessageMapMessage(const SimpleSFixed32ComplexMessageMapMessage &other);
SimpleSFixed32ComplexMessageMapMessage &operator =(const SimpleSFixed32ComplexMessageMapMessage &other);
SimpleSFixed32ComplexMessageMapMessage(SimpleSFixed32ComplexMessageMapMessage &&other) noexcept;
@ -3564,7 +3564,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed64, std::shared_ptr<ComplexMessage>>;
SimpleSFixed64ComplexMessageMapMessage();
~SimpleSFixed64ComplexMessageMapMessage() override;
~SimpleSFixed64ComplexMessageMapMessage();
SimpleSFixed64ComplexMessageMapMessage(const SimpleSFixed64ComplexMessageMapMessage &other);
SimpleSFixed64ComplexMessageMapMessage &operator =(const SimpleSFixed64ComplexMessageMapMessage &other);
SimpleSFixed64ComplexMessageMapMessage(SimpleSFixed64ComplexMessageMapMessage &&other) noexcept;
@ -3603,7 +3603,7 @@ public:
using MapFieldEntry = QHash<QString, std::shared_ptr<ComplexMessage>>;
SimpleStringComplexMessageMapMessage();
~SimpleStringComplexMessageMapMessage() override;
~SimpleStringComplexMessageMapMessage();
SimpleStringComplexMessageMapMessage(const SimpleStringComplexMessageMapMessage &other);
SimpleStringComplexMessageMapMessage &operator =(const SimpleStringComplexMessageMapMessage &other);
SimpleStringComplexMessageMapMessage(SimpleStringComplexMessageMapMessage &&other) noexcept;

View File

@ -65,7 +65,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedStringMessage();
~RepeatedStringMessage() override;
~RepeatedStringMessage();
RepeatedStringMessage(const RepeatedStringMessage &other);
RepeatedStringMessage &operator =(const RepeatedStringMessage &other);
RepeatedStringMessage(RepeatedStringMessage &&other) noexcept;
@ -103,7 +103,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedDoubleMessage();
~RepeatedDoubleMessage() override;
~RepeatedDoubleMessage();
RepeatedDoubleMessage(const RepeatedDoubleMessage &other);
RepeatedDoubleMessage &operator =(const RepeatedDoubleMessage &other);
RepeatedDoubleMessage(RepeatedDoubleMessage &&other) noexcept;
@ -145,7 +145,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedBytesMessage();
~RepeatedBytesMessage() override;
~RepeatedBytesMessage();
RepeatedBytesMessage(const RepeatedBytesMessage &other);
RepeatedBytesMessage &operator =(const RepeatedBytesMessage &other);
RepeatedBytesMessage(RepeatedBytesMessage &&other) noexcept;
@ -183,7 +183,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedFloatMessage();
~RepeatedFloatMessage() override;
~RepeatedFloatMessage();
RepeatedFloatMessage(const RepeatedFloatMessage &other);
RepeatedFloatMessage &operator =(const RepeatedFloatMessage &other);
RepeatedFloatMessage(RepeatedFloatMessage &&other) noexcept;
@ -225,7 +225,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedComplexMessage();
~RepeatedComplexMessage() override;
~RepeatedComplexMessage();
RepeatedComplexMessage(const RepeatedComplexMessage &other);
RepeatedComplexMessage &operator =(const RepeatedComplexMessage &other);
RepeatedComplexMessage(RepeatedComplexMessage &&other) noexcept;
@ -263,7 +263,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedSIntMessage();
~RepeatedSIntMessage() override;
~RepeatedSIntMessage();
RepeatedSIntMessage(const RepeatedSIntMessage &other);
RepeatedSIntMessage &operator =(const RepeatedSIntMessage &other);
RepeatedSIntMessage(RepeatedSIntMessage &&other) noexcept;
@ -305,7 +305,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedIntMessage();
~RepeatedIntMessage() override;
~RepeatedIntMessage();
RepeatedIntMessage(const RepeatedIntMessage &other);
RepeatedIntMessage &operator =(const RepeatedIntMessage &other);
RepeatedIntMessage(RepeatedIntMessage &&other) noexcept;
@ -347,7 +347,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedUIntMessage();
~RepeatedUIntMessage() override;
~RepeatedUIntMessage();
RepeatedUIntMessage(const RepeatedUIntMessage &other);
RepeatedUIntMessage &operator =(const RepeatedUIntMessage &other);
RepeatedUIntMessage(RepeatedUIntMessage &&other) noexcept;
@ -389,7 +389,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedSInt64Message();
~RepeatedSInt64Message() override;
~RepeatedSInt64Message();
RepeatedSInt64Message(const RepeatedSInt64Message &other);
RepeatedSInt64Message &operator =(const RepeatedSInt64Message &other);
RepeatedSInt64Message(RepeatedSInt64Message &&other) noexcept;
@ -431,7 +431,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedInt64Message();
~RepeatedInt64Message() override;
~RepeatedInt64Message();
RepeatedInt64Message(const RepeatedInt64Message &other);
RepeatedInt64Message &operator =(const RepeatedInt64Message &other);
RepeatedInt64Message(RepeatedInt64Message &&other) noexcept;
@ -473,7 +473,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedUInt64Message();
~RepeatedUInt64Message() override;
~RepeatedUInt64Message();
RepeatedUInt64Message(const RepeatedUInt64Message &other);
RepeatedUInt64Message &operator =(const RepeatedUInt64Message &other);
RepeatedUInt64Message(RepeatedUInt64Message &&other) noexcept;
@ -515,7 +515,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedFixedIntMessage();
~RepeatedFixedIntMessage() override;
~RepeatedFixedIntMessage();
RepeatedFixedIntMessage(const RepeatedFixedIntMessage &other);
RepeatedFixedIntMessage &operator =(const RepeatedFixedIntMessage &other);
RepeatedFixedIntMessage(RepeatedFixedIntMessage &&other) noexcept;
@ -557,7 +557,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedSFixedIntMessage();
~RepeatedSFixedIntMessage() override;
~RepeatedSFixedIntMessage();
RepeatedSFixedIntMessage(const RepeatedSFixedIntMessage &other);
RepeatedSFixedIntMessage &operator =(const RepeatedSFixedIntMessage &other);
RepeatedSFixedIntMessage(RepeatedSFixedIntMessage &&other) noexcept;
@ -599,7 +599,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedFixedInt64Message();
~RepeatedFixedInt64Message() override;
~RepeatedFixedInt64Message();
RepeatedFixedInt64Message(const RepeatedFixedInt64Message &other);
RepeatedFixedInt64Message &operator =(const RepeatedFixedInt64Message &other);
RepeatedFixedInt64Message(RepeatedFixedInt64Message &&other) noexcept;
@ -641,7 +641,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedSFixedInt64Message();
~RepeatedSFixedInt64Message() override;
~RepeatedSFixedInt64Message();
RepeatedSFixedInt64Message(const RepeatedSFixedInt64Message &other);
RepeatedSFixedInt64Message &operator =(const RepeatedSFixedInt64Message &other);
RepeatedSFixedInt64Message(RepeatedSFixedInt64Message &&other) noexcept;
@ -683,7 +683,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedBoolMessage();
~RepeatedBoolMessage() override;
~RepeatedBoolMessage();
RepeatedBoolMessage(const RepeatedBoolMessage &other);
RepeatedBoolMessage &operator =(const RepeatedBoolMessage &other);
RepeatedBoolMessage(RepeatedBoolMessage &&other) noexcept;

View File

@ -50,7 +50,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
AnnotatedMessage1();
~AnnotatedMessage1() override;
~AnnotatedMessage1();
AnnotatedMessage1(const AnnotatedMessage1 &other);
AnnotatedMessage1 &operator =(const AnnotatedMessage1 &other);
AnnotatedMessage1(AnnotatedMessage1 &&other) noexcept;
@ -88,7 +88,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
AnnotatedMessage2();
~AnnotatedMessage2() override;
~AnnotatedMessage2();
AnnotatedMessage2(const AnnotatedMessage2 &other);
AnnotatedMessage2 &operator =(const AnnotatedMessage2 &other);
AnnotatedMessage2(AnnotatedMessage2 &&other) noexcept;
@ -126,7 +126,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
AnnotatedMessage3();
~AnnotatedMessage3() override;
~AnnotatedMessage3();
AnnotatedMessage3(const AnnotatedMessage3 &other);
AnnotatedMessage3 &operator =(const AnnotatedMessage3 &other);
AnnotatedMessage3(AnnotatedMessage3 &&other) noexcept;
@ -164,7 +164,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
AnnotatedMessage4();
~AnnotatedMessage4() override;
~AnnotatedMessage4();
AnnotatedMessage4(const AnnotatedMessage4 &other);
AnnotatedMessage4 &operator =(const AnnotatedMessage4 &other);
AnnotatedMessage4(AnnotatedMessage4 &&other) noexcept;
@ -202,7 +202,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
AnnotatedMessage5();
~AnnotatedMessage5() override;
~AnnotatedMessage5();
AnnotatedMessage5(const AnnotatedMessage5 &other);
AnnotatedMessage5 &operator =(const AnnotatedMessage5 &other);
AnnotatedMessage5(AnnotatedMessage5 &&other) noexcept;
@ -240,7 +240,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
AnnotatedMessage6();
~AnnotatedMessage6() override;
~AnnotatedMessage6();
AnnotatedMessage6(const AnnotatedMessage6 &other);
AnnotatedMessage6 &operator =(const AnnotatedMessage6 &other);
AnnotatedMessage6(AnnotatedMessage6 &&other) noexcept;
@ -278,7 +278,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
AnnotatedMessage7();
~AnnotatedMessage7() override;
~AnnotatedMessage7();
AnnotatedMessage7(const AnnotatedMessage7 &other);
AnnotatedMessage7 &operator =(const AnnotatedMessage7 &other);
AnnotatedMessage7(AnnotatedMessage7 &&other) noexcept;
@ -316,7 +316,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
AnnotatedMessage8();
~AnnotatedMessage8() override;
~AnnotatedMessage8();
AnnotatedMessage8(const AnnotatedMessage8 &other);
AnnotatedMessage8 &operator =(const AnnotatedMessage8 &other);
AnnotatedMessage8(AnnotatedMessage8 &&other) noexcept;
@ -354,7 +354,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
AnnotatedMessage9();
~AnnotatedMessage9() override;
~AnnotatedMessage9();
AnnotatedMessage9(const AnnotatedMessage9 &other);
AnnotatedMessage9 &operator =(const AnnotatedMessage9 &other);
AnnotatedMessage9(AnnotatedMessage9 &&other) noexcept;

View File

@ -60,7 +60,7 @@ class EmptyMessage : public QProtobufMessage
public:
EmptyMessage();
~EmptyMessage() override;
~EmptyMessage();
EmptyMessage(const EmptyMessage &other);
EmptyMessage &operator =(const EmptyMessage &other);
EmptyMessage(EmptyMessage &&other) noexcept;
@ -87,7 +87,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleBoolMessage();
~SimpleBoolMessage() override;
~SimpleBoolMessage();
SimpleBoolMessage(const SimpleBoolMessage &other);
SimpleBoolMessage &operator =(const SimpleBoolMessage &other);
SimpleBoolMessage(SimpleBoolMessage &&other) noexcept;
@ -125,7 +125,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleIntMessage();
~SimpleIntMessage() override;
~SimpleIntMessage();
SimpleIntMessage(const SimpleIntMessage &other);
SimpleIntMessage &operator =(const SimpleIntMessage &other);
SimpleIntMessage(SimpleIntMessage &&other) noexcept;
@ -163,7 +163,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleSIntMessage();
~SimpleSIntMessage() override;
~SimpleSIntMessage();
SimpleSIntMessage(const SimpleSIntMessage &other);
SimpleSIntMessage &operator =(const SimpleSIntMessage &other);
SimpleSIntMessage(SimpleSIntMessage &&other) noexcept;
@ -201,7 +201,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleUIntMessage();
~SimpleUIntMessage() override;
~SimpleUIntMessage();
SimpleUIntMessage(const SimpleUIntMessage &other);
SimpleUIntMessage &operator =(const SimpleUIntMessage &other);
SimpleUIntMessage(SimpleUIntMessage &&other) noexcept;
@ -239,7 +239,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleInt64Message();
~SimpleInt64Message() override;
~SimpleInt64Message();
SimpleInt64Message(const SimpleInt64Message &other);
SimpleInt64Message &operator =(const SimpleInt64Message &other);
SimpleInt64Message(SimpleInt64Message &&other) noexcept;
@ -277,7 +277,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleSInt64Message();
~SimpleSInt64Message() override;
~SimpleSInt64Message();
SimpleSInt64Message(const SimpleSInt64Message &other);
SimpleSInt64Message &operator =(const SimpleSInt64Message &other);
SimpleSInt64Message(SimpleSInt64Message &&other) noexcept;
@ -315,7 +315,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleUInt64Message();
~SimpleUInt64Message() override;
~SimpleUInt64Message();
SimpleUInt64Message(const SimpleUInt64Message &other);
SimpleUInt64Message &operator =(const SimpleUInt64Message &other);
SimpleUInt64Message(SimpleUInt64Message &&other) noexcept;
@ -353,7 +353,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleStringMessage();
~SimpleStringMessage() override;
~SimpleStringMessage();
SimpleStringMessage(const SimpleStringMessage &other);
SimpleStringMessage &operator =(const SimpleStringMessage &other);
SimpleStringMessage(SimpleStringMessage &&other) noexcept;
@ -387,7 +387,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleFloatMessage();
~SimpleFloatMessage() override;
~SimpleFloatMessage();
SimpleFloatMessage(const SimpleFloatMessage &other);
SimpleFloatMessage &operator =(const SimpleFloatMessage &other);
SimpleFloatMessage(SimpleFloatMessage &&other) noexcept;
@ -425,7 +425,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleDoubleMessage();
~SimpleDoubleMessage() override;
~SimpleDoubleMessage();
SimpleDoubleMessage(const SimpleDoubleMessage &other);
SimpleDoubleMessage &operator =(const SimpleDoubleMessage &other);
SimpleDoubleMessage(SimpleDoubleMessage &&other) noexcept;
@ -463,7 +463,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleBytesMessage();
~SimpleBytesMessage() override;
~SimpleBytesMessage();
SimpleBytesMessage(const SimpleBytesMessage &other);
SimpleBytesMessage &operator =(const SimpleBytesMessage &other);
SimpleBytesMessage(SimpleBytesMessage &&other) noexcept;
@ -497,7 +497,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleFixedInt32Message();
~SimpleFixedInt32Message() override;
~SimpleFixedInt32Message();
SimpleFixedInt32Message(const SimpleFixedInt32Message &other);
SimpleFixedInt32Message &operator =(const SimpleFixedInt32Message &other);
SimpleFixedInt32Message(SimpleFixedInt32Message &&other) noexcept;
@ -535,7 +535,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleFixedInt64Message();
~SimpleFixedInt64Message() override;
~SimpleFixedInt64Message();
SimpleFixedInt64Message(const SimpleFixedInt64Message &other);
SimpleFixedInt64Message &operator =(const SimpleFixedInt64Message &other);
SimpleFixedInt64Message(SimpleFixedInt64Message &&other) noexcept;
@ -573,7 +573,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleSFixedInt32Message();
~SimpleSFixedInt32Message() override;
~SimpleSFixedInt32Message();
SimpleSFixedInt32Message(const SimpleSFixedInt32Message &other);
SimpleSFixedInt32Message &operator =(const SimpleSFixedInt32Message &other);
SimpleSFixedInt32Message(SimpleSFixedInt32Message &&other) noexcept;
@ -611,7 +611,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleSFixedInt64Message();
~SimpleSFixedInt64Message() override;
~SimpleSFixedInt64Message();
SimpleSFixedInt64Message(const SimpleSFixedInt64Message &other);
SimpleSFixedInt64Message &operator =(const SimpleSFixedInt64Message &other);
SimpleSFixedInt64Message(SimpleSFixedInt64Message &&other) noexcept;
@ -651,7 +651,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
ComplexMessage();
~ComplexMessage() override;
~ComplexMessage();
ComplexMessage(const ComplexMessage &other);
ComplexMessage &operator =(const ComplexMessage &other);
ComplexMessage(ComplexMessage &&other) noexcept;

View File

@ -32,7 +32,7 @@ class EmptyMessage : public QProtobufMessage
public:
EmptyMessage();
~EmptyMessage() override;
~EmptyMessage();
EmptyMessage(const EmptyMessage &other);
EmptyMessage &operator =(const EmptyMessage &other);
EmptyMessage(EmptyMessage &&other) noexcept;
@ -59,7 +59,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
SimpleStringMessage();
~SimpleStringMessage() override;
~SimpleStringMessage();
SimpleStringMessage(const SimpleStringMessage &other);
SimpleStringMessage &operator =(const SimpleStringMessage &other);
SimpleStringMessage(SimpleStringMessage &&other) noexcept;
@ -95,7 +95,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
ComplexMessage();
~ComplexMessage() override;
~ComplexMessage();
ComplexMessage(const ComplexMessage &other);
ComplexMessage &operator =(const ComplexMessage &other);
ComplexMessage(ComplexMessage &&other) noexcept;

View File

@ -40,7 +40,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
FieldIndexTest1Message();
~FieldIndexTest1Message() override;
~FieldIndexTest1Message();
FieldIndexTest1Message(const FieldIndexTest1Message &other);
FieldIndexTest1Message &operator =(const FieldIndexTest1Message &other);
FieldIndexTest1Message(FieldIndexTest1Message &&other) noexcept;
@ -78,7 +78,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
FieldIndexTest2Message();
~FieldIndexTest2Message() override;
~FieldIndexTest2Message();
FieldIndexTest2Message(const FieldIndexTest2Message &other);
FieldIndexTest2Message &operator =(const FieldIndexTest2Message &other);
FieldIndexTest2Message(FieldIndexTest2Message &&other) noexcept;
@ -116,7 +116,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
FieldIndexTest3Message();
~FieldIndexTest3Message() override;
~FieldIndexTest3Message();
FieldIndexTest3Message(const FieldIndexTest3Message &other);
FieldIndexTest3Message &operator =(const FieldIndexTest3Message &other);
FieldIndexTest3Message(FieldIndexTest3Message &&other) noexcept;
@ -154,7 +154,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
FieldIndexTest4Message();
~FieldIndexTest4Message() override;
~FieldIndexTest4Message();
FieldIndexTest4Message(const FieldIndexTest4Message &other);
FieldIndexTest4Message &operator =(const FieldIndexTest4Message &other);
FieldIndexTest4Message(FieldIndexTest4Message &&other) noexcept;

View File

@ -210,7 +210,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint32, QString>;
SimpleSInt32StringMapMessage();
~SimpleSInt32StringMapMessage() override;
~SimpleSInt32StringMapMessage();
SimpleSInt32StringMapMessage(const SimpleSInt32StringMapMessage &other);
SimpleSInt32StringMapMessage &operator =(const SimpleSInt32StringMapMessage &other);
SimpleSInt32StringMapMessage(SimpleSInt32StringMapMessage &&other) noexcept;
@ -249,7 +249,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint64, QString>;
SimpleSInt64StringMapMessage();
~SimpleSInt64StringMapMessage() override;
~SimpleSInt64StringMapMessage();
SimpleSInt64StringMapMessage(const SimpleSInt64StringMapMessage &other);
SimpleSInt64StringMapMessage &operator =(const SimpleSInt64StringMapMessage &other);
SimpleSInt64StringMapMessage(SimpleSInt64StringMapMessage &&other) noexcept;
@ -288,7 +288,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int32, QString>;
SimpleInt32StringMapMessage();
~SimpleInt32StringMapMessage() override;
~SimpleInt32StringMapMessage();
SimpleInt32StringMapMessage(const SimpleInt32StringMapMessage &other);
SimpleInt32StringMapMessage &operator =(const SimpleInt32StringMapMessage &other);
SimpleInt32StringMapMessage(SimpleInt32StringMapMessage &&other) noexcept;
@ -327,7 +327,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int64, QString>;
SimpleInt64StringMapMessage();
~SimpleInt64StringMapMessage() override;
~SimpleInt64StringMapMessage();
SimpleInt64StringMapMessage(const SimpleInt64StringMapMessage &other);
SimpleInt64StringMapMessage &operator =(const SimpleInt64StringMapMessage &other);
SimpleInt64StringMapMessage(SimpleInt64StringMapMessage &&other) noexcept;
@ -366,7 +366,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint32, QString>;
SimpleUInt32StringMapMessage();
~SimpleUInt32StringMapMessage() override;
~SimpleUInt32StringMapMessage();
SimpleUInt32StringMapMessage(const SimpleUInt32StringMapMessage &other);
SimpleUInt32StringMapMessage &operator =(const SimpleUInt32StringMapMessage &other);
SimpleUInt32StringMapMessage(SimpleUInt32StringMapMessage &&other) noexcept;
@ -405,7 +405,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint64, QString>;
SimpleUInt64StringMapMessage();
~SimpleUInt64StringMapMessage() override;
~SimpleUInt64StringMapMessage();
SimpleUInt64StringMapMessage(const SimpleUInt64StringMapMessage &other);
SimpleUInt64StringMapMessage &operator =(const SimpleUInt64StringMapMessage &other);
SimpleUInt64StringMapMessage(SimpleUInt64StringMapMessage &&other) noexcept;
@ -444,7 +444,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed32, QString>;
SimpleFixed32StringMapMessage();
~SimpleFixed32StringMapMessage() override;
~SimpleFixed32StringMapMessage();
SimpleFixed32StringMapMessage(const SimpleFixed32StringMapMessage &other);
SimpleFixed32StringMapMessage &operator =(const SimpleFixed32StringMapMessage &other);
SimpleFixed32StringMapMessage(SimpleFixed32StringMapMessage &&other) noexcept;
@ -483,7 +483,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed64, QString>;
SimpleFixed64StringMapMessage();
~SimpleFixed64StringMapMessage() override;
~SimpleFixed64StringMapMessage();
SimpleFixed64StringMapMessage(const SimpleFixed64StringMapMessage &other);
SimpleFixed64StringMapMessage &operator =(const SimpleFixed64StringMapMessage &other);
SimpleFixed64StringMapMessage(SimpleFixed64StringMapMessage &&other) noexcept;
@ -522,7 +522,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed32, QString>;
SimpleSFixed32StringMapMessage();
~SimpleSFixed32StringMapMessage() override;
~SimpleSFixed32StringMapMessage();
SimpleSFixed32StringMapMessage(const SimpleSFixed32StringMapMessage &other);
SimpleSFixed32StringMapMessage &operator =(const SimpleSFixed32StringMapMessage &other);
SimpleSFixed32StringMapMessage(SimpleSFixed32StringMapMessage &&other) noexcept;
@ -561,7 +561,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed64, QString>;
SimpleSFixed64StringMapMessage();
~SimpleSFixed64StringMapMessage() override;
~SimpleSFixed64StringMapMessage();
SimpleSFixed64StringMapMessage(const SimpleSFixed64StringMapMessage &other);
SimpleSFixed64StringMapMessage &operator =(const SimpleSFixed64StringMapMessage &other);
SimpleSFixed64StringMapMessage(SimpleSFixed64StringMapMessage &&other) noexcept;
@ -600,7 +600,7 @@ public:
using MapFieldEntry = QHash<QString, QString>;
SimpleStringStringMapMessage();
~SimpleStringStringMapMessage() override;
~SimpleStringStringMapMessage();
SimpleStringStringMapMessage(const SimpleStringStringMapMessage &other);
SimpleStringStringMapMessage &operator =(const SimpleStringStringMapMessage &other);
SimpleStringStringMapMessage(SimpleStringStringMapMessage &&other) noexcept;
@ -639,7 +639,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint32, QtProtobuf::sint32>;
SimpleSInt32SInt32MapMessage();
~SimpleSInt32SInt32MapMessage() override;
~SimpleSInt32SInt32MapMessage();
SimpleSInt32SInt32MapMessage(const SimpleSInt32SInt32MapMessage &other);
SimpleSInt32SInt32MapMessage &operator =(const SimpleSInt32SInt32MapMessage &other);
SimpleSInt32SInt32MapMessage(SimpleSInt32SInt32MapMessage &&other) noexcept;
@ -678,7 +678,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint64, QtProtobuf::sint32>;
SimpleSInt64SInt32MapMessage();
~SimpleSInt64SInt32MapMessage() override;
~SimpleSInt64SInt32MapMessage();
SimpleSInt64SInt32MapMessage(const SimpleSInt64SInt32MapMessage &other);
SimpleSInt64SInt32MapMessage &operator =(const SimpleSInt64SInt32MapMessage &other);
SimpleSInt64SInt32MapMessage(SimpleSInt64SInt32MapMessage &&other) noexcept;
@ -717,7 +717,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int32, QtProtobuf::sint32>;
SimpleInt32SInt32MapMessage();
~SimpleInt32SInt32MapMessage() override;
~SimpleInt32SInt32MapMessage();
SimpleInt32SInt32MapMessage(const SimpleInt32SInt32MapMessage &other);
SimpleInt32SInt32MapMessage &operator =(const SimpleInt32SInt32MapMessage &other);
SimpleInt32SInt32MapMessage(SimpleInt32SInt32MapMessage &&other) noexcept;
@ -756,7 +756,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int64, QtProtobuf::sint32>;
SimpleInt64SInt32MapMessage();
~SimpleInt64SInt32MapMessage() override;
~SimpleInt64SInt32MapMessage();
SimpleInt64SInt32MapMessage(const SimpleInt64SInt32MapMessage &other);
SimpleInt64SInt32MapMessage &operator =(const SimpleInt64SInt32MapMessage &other);
SimpleInt64SInt32MapMessage(SimpleInt64SInt32MapMessage &&other) noexcept;
@ -795,7 +795,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint32, QtProtobuf::sint32>;
SimpleUInt32SInt32MapMessage();
~SimpleUInt32SInt32MapMessage() override;
~SimpleUInt32SInt32MapMessage();
SimpleUInt32SInt32MapMessage(const SimpleUInt32SInt32MapMessage &other);
SimpleUInt32SInt32MapMessage &operator =(const SimpleUInt32SInt32MapMessage &other);
SimpleUInt32SInt32MapMessage(SimpleUInt32SInt32MapMessage &&other) noexcept;
@ -834,7 +834,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint64, QtProtobuf::sint32>;
SimpleUInt64SInt32MapMessage();
~SimpleUInt64SInt32MapMessage() override;
~SimpleUInt64SInt32MapMessage();
SimpleUInt64SInt32MapMessage(const SimpleUInt64SInt32MapMessage &other);
SimpleUInt64SInt32MapMessage &operator =(const SimpleUInt64SInt32MapMessage &other);
SimpleUInt64SInt32MapMessage(SimpleUInt64SInt32MapMessage &&other) noexcept;
@ -873,7 +873,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed32, QtProtobuf::sint32>;
SimpleFixed32SInt32MapMessage();
~SimpleFixed32SInt32MapMessage() override;
~SimpleFixed32SInt32MapMessage();
SimpleFixed32SInt32MapMessage(const SimpleFixed32SInt32MapMessage &other);
SimpleFixed32SInt32MapMessage &operator =(const SimpleFixed32SInt32MapMessage &other);
SimpleFixed32SInt32MapMessage(SimpleFixed32SInt32MapMessage &&other) noexcept;
@ -912,7 +912,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed64, QtProtobuf::sint32>;
SimpleFixed64SInt32MapMessage();
~SimpleFixed64SInt32MapMessage() override;
~SimpleFixed64SInt32MapMessage();
SimpleFixed64SInt32MapMessage(const SimpleFixed64SInt32MapMessage &other);
SimpleFixed64SInt32MapMessage &operator =(const SimpleFixed64SInt32MapMessage &other);
SimpleFixed64SInt32MapMessage(SimpleFixed64SInt32MapMessage &&other) noexcept;
@ -951,7 +951,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed32, QtProtobuf::sint32>;
SimpleSFixed32SInt32MapMessage();
~SimpleSFixed32SInt32MapMessage() override;
~SimpleSFixed32SInt32MapMessage();
SimpleSFixed32SInt32MapMessage(const SimpleSFixed32SInt32MapMessage &other);
SimpleSFixed32SInt32MapMessage &operator =(const SimpleSFixed32SInt32MapMessage &other);
SimpleSFixed32SInt32MapMessage(SimpleSFixed32SInt32MapMessage &&other) noexcept;
@ -990,7 +990,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed64, QtProtobuf::sint32>;
SimpleSFixed64SInt32MapMessage();
~SimpleSFixed64SInt32MapMessage() override;
~SimpleSFixed64SInt32MapMessage();
SimpleSFixed64SInt32MapMessage(const SimpleSFixed64SInt32MapMessage &other);
SimpleSFixed64SInt32MapMessage &operator =(const SimpleSFixed64SInt32MapMessage &other);
SimpleSFixed64SInt32MapMessage(SimpleSFixed64SInt32MapMessage &&other) noexcept;
@ -1029,7 +1029,7 @@ public:
using MapFieldEntry = QHash<QString, QtProtobuf::sint32>;
SimpleStringSInt32MapMessage();
~SimpleStringSInt32MapMessage() override;
~SimpleStringSInt32MapMessage();
SimpleStringSInt32MapMessage(const SimpleStringSInt32MapMessage &other);
SimpleStringSInt32MapMessage &operator =(const SimpleStringSInt32MapMessage &other);
SimpleStringSInt32MapMessage(SimpleStringSInt32MapMessage &&other) noexcept;
@ -1068,7 +1068,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint32, QtProtobuf::sint64>;
SimpleSInt32SInt64MapMessage();
~SimpleSInt32SInt64MapMessage() override;
~SimpleSInt32SInt64MapMessage();
SimpleSInt32SInt64MapMessage(const SimpleSInt32SInt64MapMessage &other);
SimpleSInt32SInt64MapMessage &operator =(const SimpleSInt32SInt64MapMessage &other);
SimpleSInt32SInt64MapMessage(SimpleSInt32SInt64MapMessage &&other) noexcept;
@ -1107,7 +1107,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint64, QtProtobuf::sint64>;
SimpleSInt64SInt64MapMessage();
~SimpleSInt64SInt64MapMessage() override;
~SimpleSInt64SInt64MapMessage();
SimpleSInt64SInt64MapMessage(const SimpleSInt64SInt64MapMessage &other);
SimpleSInt64SInt64MapMessage &operator =(const SimpleSInt64SInt64MapMessage &other);
SimpleSInt64SInt64MapMessage(SimpleSInt64SInt64MapMessage &&other) noexcept;
@ -1146,7 +1146,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int32, QtProtobuf::sint64>;
SimpleInt32SInt64MapMessage();
~SimpleInt32SInt64MapMessage() override;
~SimpleInt32SInt64MapMessage();
SimpleInt32SInt64MapMessage(const SimpleInt32SInt64MapMessage &other);
SimpleInt32SInt64MapMessage &operator =(const SimpleInt32SInt64MapMessage &other);
SimpleInt32SInt64MapMessage(SimpleInt32SInt64MapMessage &&other) noexcept;
@ -1185,7 +1185,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int64, QtProtobuf::sint64>;
SimpleInt64SInt64MapMessage();
~SimpleInt64SInt64MapMessage() override;
~SimpleInt64SInt64MapMessage();
SimpleInt64SInt64MapMessage(const SimpleInt64SInt64MapMessage &other);
SimpleInt64SInt64MapMessage &operator =(const SimpleInt64SInt64MapMessage &other);
SimpleInt64SInt64MapMessage(SimpleInt64SInt64MapMessage &&other) noexcept;
@ -1224,7 +1224,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint32, QtProtobuf::sint64>;
SimpleUInt32SInt64MapMessage();
~SimpleUInt32SInt64MapMessage() override;
~SimpleUInt32SInt64MapMessage();
SimpleUInt32SInt64MapMessage(const SimpleUInt32SInt64MapMessage &other);
SimpleUInt32SInt64MapMessage &operator =(const SimpleUInt32SInt64MapMessage &other);
SimpleUInt32SInt64MapMessage(SimpleUInt32SInt64MapMessage &&other) noexcept;
@ -1263,7 +1263,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint64, QtProtobuf::sint64>;
SimpleUInt64SInt64MapMessage();
~SimpleUInt64SInt64MapMessage() override;
~SimpleUInt64SInt64MapMessage();
SimpleUInt64SInt64MapMessage(const SimpleUInt64SInt64MapMessage &other);
SimpleUInt64SInt64MapMessage &operator =(const SimpleUInt64SInt64MapMessage &other);
SimpleUInt64SInt64MapMessage(SimpleUInt64SInt64MapMessage &&other) noexcept;
@ -1302,7 +1302,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed32, QtProtobuf::sint64>;
SimpleFixed32SInt64MapMessage();
~SimpleFixed32SInt64MapMessage() override;
~SimpleFixed32SInt64MapMessage();
SimpleFixed32SInt64MapMessage(const SimpleFixed32SInt64MapMessage &other);
SimpleFixed32SInt64MapMessage &operator =(const SimpleFixed32SInt64MapMessage &other);
SimpleFixed32SInt64MapMessage(SimpleFixed32SInt64MapMessage &&other) noexcept;
@ -1341,7 +1341,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed64, QtProtobuf::sint64>;
SimpleFixed64SInt64MapMessage();
~SimpleFixed64SInt64MapMessage() override;
~SimpleFixed64SInt64MapMessage();
SimpleFixed64SInt64MapMessage(const SimpleFixed64SInt64MapMessage &other);
SimpleFixed64SInt64MapMessage &operator =(const SimpleFixed64SInt64MapMessage &other);
SimpleFixed64SInt64MapMessage(SimpleFixed64SInt64MapMessage &&other) noexcept;
@ -1380,7 +1380,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed32, QtProtobuf::sint64>;
SimpleSFixed32SInt64MapMessage();
~SimpleSFixed32SInt64MapMessage() override;
~SimpleSFixed32SInt64MapMessage();
SimpleSFixed32SInt64MapMessage(const SimpleSFixed32SInt64MapMessage &other);
SimpleSFixed32SInt64MapMessage &operator =(const SimpleSFixed32SInt64MapMessage &other);
SimpleSFixed32SInt64MapMessage(SimpleSFixed32SInt64MapMessage &&other) noexcept;
@ -1419,7 +1419,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed64, QtProtobuf::sint64>;
SimpleSFixed64SInt64MapMessage();
~SimpleSFixed64SInt64MapMessage() override;
~SimpleSFixed64SInt64MapMessage();
SimpleSFixed64SInt64MapMessage(const SimpleSFixed64SInt64MapMessage &other);
SimpleSFixed64SInt64MapMessage &operator =(const SimpleSFixed64SInt64MapMessage &other);
SimpleSFixed64SInt64MapMessage(SimpleSFixed64SInt64MapMessage &&other) noexcept;
@ -1458,7 +1458,7 @@ public:
using MapFieldEntry = QHash<QString, QtProtobuf::sint64>;
SimpleStringSInt64MapMessage();
~SimpleStringSInt64MapMessage() override;
~SimpleStringSInt64MapMessage();
SimpleStringSInt64MapMessage(const SimpleStringSInt64MapMessage &other);
SimpleStringSInt64MapMessage &operator =(const SimpleStringSInt64MapMessage &other);
SimpleStringSInt64MapMessage(SimpleStringSInt64MapMessage &&other) noexcept;
@ -1497,7 +1497,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint32, QtProtobuf::uint32>;
SimpleSInt32UInt32MapMessage();
~SimpleSInt32UInt32MapMessage() override;
~SimpleSInt32UInt32MapMessage();
SimpleSInt32UInt32MapMessage(const SimpleSInt32UInt32MapMessage &other);
SimpleSInt32UInt32MapMessage &operator =(const SimpleSInt32UInt32MapMessage &other);
SimpleSInt32UInt32MapMessage(SimpleSInt32UInt32MapMessage &&other) noexcept;
@ -1536,7 +1536,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint64, QtProtobuf::uint32>;
SimpleSInt64UInt32MapMessage();
~SimpleSInt64UInt32MapMessage() override;
~SimpleSInt64UInt32MapMessage();
SimpleSInt64UInt32MapMessage(const SimpleSInt64UInt32MapMessage &other);
SimpleSInt64UInt32MapMessage &operator =(const SimpleSInt64UInt32MapMessage &other);
SimpleSInt64UInt32MapMessage(SimpleSInt64UInt32MapMessage &&other) noexcept;
@ -1575,7 +1575,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int32, QtProtobuf::uint32>;
SimpleInt32UInt32MapMessage();
~SimpleInt32UInt32MapMessage() override;
~SimpleInt32UInt32MapMessage();
SimpleInt32UInt32MapMessage(const SimpleInt32UInt32MapMessage &other);
SimpleInt32UInt32MapMessage &operator =(const SimpleInt32UInt32MapMessage &other);
SimpleInt32UInt32MapMessage(SimpleInt32UInt32MapMessage &&other) noexcept;
@ -1614,7 +1614,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int64, QtProtobuf::uint32>;
SimpleInt64UInt32MapMessage();
~SimpleInt64UInt32MapMessage() override;
~SimpleInt64UInt32MapMessage();
SimpleInt64UInt32MapMessage(const SimpleInt64UInt32MapMessage &other);
SimpleInt64UInt32MapMessage &operator =(const SimpleInt64UInt32MapMessage &other);
SimpleInt64UInt32MapMessage(SimpleInt64UInt32MapMessage &&other) noexcept;
@ -1653,7 +1653,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint32, QtProtobuf::uint32>;
SimpleUInt32UInt32MapMessage();
~SimpleUInt32UInt32MapMessage() override;
~SimpleUInt32UInt32MapMessage();
SimpleUInt32UInt32MapMessage(const SimpleUInt32UInt32MapMessage &other);
SimpleUInt32UInt32MapMessage &operator =(const SimpleUInt32UInt32MapMessage &other);
SimpleUInt32UInt32MapMessage(SimpleUInt32UInt32MapMessage &&other) noexcept;
@ -1692,7 +1692,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint64, QtProtobuf::uint32>;
SimpleUInt64UInt32MapMessage();
~SimpleUInt64UInt32MapMessage() override;
~SimpleUInt64UInt32MapMessage();
SimpleUInt64UInt32MapMessage(const SimpleUInt64UInt32MapMessage &other);
SimpleUInt64UInt32MapMessage &operator =(const SimpleUInt64UInt32MapMessage &other);
SimpleUInt64UInt32MapMessage(SimpleUInt64UInt32MapMessage &&other) noexcept;
@ -1731,7 +1731,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed32, QtProtobuf::uint32>;
SimpleFixed32UInt32MapMessage();
~SimpleFixed32UInt32MapMessage() override;
~SimpleFixed32UInt32MapMessage();
SimpleFixed32UInt32MapMessage(const SimpleFixed32UInt32MapMessage &other);
SimpleFixed32UInt32MapMessage &operator =(const SimpleFixed32UInt32MapMessage &other);
SimpleFixed32UInt32MapMessage(SimpleFixed32UInt32MapMessage &&other) noexcept;
@ -1770,7 +1770,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed64, QtProtobuf::uint32>;
SimpleFixed64UInt32MapMessage();
~SimpleFixed64UInt32MapMessage() override;
~SimpleFixed64UInt32MapMessage();
SimpleFixed64UInt32MapMessage(const SimpleFixed64UInt32MapMessage &other);
SimpleFixed64UInt32MapMessage &operator =(const SimpleFixed64UInt32MapMessage &other);
SimpleFixed64UInt32MapMessage(SimpleFixed64UInt32MapMessage &&other) noexcept;
@ -1809,7 +1809,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed32, QtProtobuf::uint32>;
SimpleSFixed32UInt32MapMessage();
~SimpleSFixed32UInt32MapMessage() override;
~SimpleSFixed32UInt32MapMessage();
SimpleSFixed32UInt32MapMessage(const SimpleSFixed32UInt32MapMessage &other);
SimpleSFixed32UInt32MapMessage &operator =(const SimpleSFixed32UInt32MapMessage &other);
SimpleSFixed32UInt32MapMessage(SimpleSFixed32UInt32MapMessage &&other) noexcept;
@ -1848,7 +1848,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed64, QtProtobuf::uint32>;
SimpleSFixed64UInt32MapMessage();
~SimpleSFixed64UInt32MapMessage() override;
~SimpleSFixed64UInt32MapMessage();
SimpleSFixed64UInt32MapMessage(const SimpleSFixed64UInt32MapMessage &other);
SimpleSFixed64UInt32MapMessage &operator =(const SimpleSFixed64UInt32MapMessage &other);
SimpleSFixed64UInt32MapMessage(SimpleSFixed64UInt32MapMessage &&other) noexcept;
@ -1887,7 +1887,7 @@ public:
using MapFieldEntry = QHash<QString, QtProtobuf::uint32>;
SimpleStringUInt32MapMessage();
~SimpleStringUInt32MapMessage() override;
~SimpleStringUInt32MapMessage();
SimpleStringUInt32MapMessage(const SimpleStringUInt32MapMessage &other);
SimpleStringUInt32MapMessage &operator =(const SimpleStringUInt32MapMessage &other);
SimpleStringUInt32MapMessage(SimpleStringUInt32MapMessage &&other) noexcept;
@ -1926,7 +1926,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint32, QtProtobuf::uint64>;
SimpleSInt32UInt64MapMessage();
~SimpleSInt32UInt64MapMessage() override;
~SimpleSInt32UInt64MapMessage();
SimpleSInt32UInt64MapMessage(const SimpleSInt32UInt64MapMessage &other);
SimpleSInt32UInt64MapMessage &operator =(const SimpleSInt32UInt64MapMessage &other);
SimpleSInt32UInt64MapMessage(SimpleSInt32UInt64MapMessage &&other) noexcept;
@ -1965,7 +1965,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint64, QtProtobuf::uint64>;
SimpleSInt64UInt64MapMessage();
~SimpleSInt64UInt64MapMessage() override;
~SimpleSInt64UInt64MapMessage();
SimpleSInt64UInt64MapMessage(const SimpleSInt64UInt64MapMessage &other);
SimpleSInt64UInt64MapMessage &operator =(const SimpleSInt64UInt64MapMessage &other);
SimpleSInt64UInt64MapMessage(SimpleSInt64UInt64MapMessage &&other) noexcept;
@ -2004,7 +2004,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int32, QtProtobuf::uint64>;
SimpleInt32UInt64MapMessage();
~SimpleInt32UInt64MapMessage() override;
~SimpleInt32UInt64MapMessage();
SimpleInt32UInt64MapMessage(const SimpleInt32UInt64MapMessage &other);
SimpleInt32UInt64MapMessage &operator =(const SimpleInt32UInt64MapMessage &other);
SimpleInt32UInt64MapMessage(SimpleInt32UInt64MapMessage &&other) noexcept;
@ -2043,7 +2043,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int64, QtProtobuf::uint64>;
SimpleInt64UInt64MapMessage();
~SimpleInt64UInt64MapMessage() override;
~SimpleInt64UInt64MapMessage();
SimpleInt64UInt64MapMessage(const SimpleInt64UInt64MapMessage &other);
SimpleInt64UInt64MapMessage &operator =(const SimpleInt64UInt64MapMessage &other);
SimpleInt64UInt64MapMessage(SimpleInt64UInt64MapMessage &&other) noexcept;
@ -2082,7 +2082,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint32, QtProtobuf::uint64>;
SimpleUInt32UInt64MapMessage();
~SimpleUInt32UInt64MapMessage() override;
~SimpleUInt32UInt64MapMessage();
SimpleUInt32UInt64MapMessage(const SimpleUInt32UInt64MapMessage &other);
SimpleUInt32UInt64MapMessage &operator =(const SimpleUInt32UInt64MapMessage &other);
SimpleUInt32UInt64MapMessage(SimpleUInt32UInt64MapMessage &&other) noexcept;
@ -2121,7 +2121,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint64, QtProtobuf::uint64>;
SimpleUInt64UInt64MapMessage();
~SimpleUInt64UInt64MapMessage() override;
~SimpleUInt64UInt64MapMessage();
SimpleUInt64UInt64MapMessage(const SimpleUInt64UInt64MapMessage &other);
SimpleUInt64UInt64MapMessage &operator =(const SimpleUInt64UInt64MapMessage &other);
SimpleUInt64UInt64MapMessage(SimpleUInt64UInt64MapMessage &&other) noexcept;
@ -2160,7 +2160,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed32, QtProtobuf::uint64>;
SimpleFixed32UInt64MapMessage();
~SimpleFixed32UInt64MapMessage() override;
~SimpleFixed32UInt64MapMessage();
SimpleFixed32UInt64MapMessage(const SimpleFixed32UInt64MapMessage &other);
SimpleFixed32UInt64MapMessage &operator =(const SimpleFixed32UInt64MapMessage &other);
SimpleFixed32UInt64MapMessage(SimpleFixed32UInt64MapMessage &&other) noexcept;
@ -2199,7 +2199,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed64, QtProtobuf::uint64>;
SimpleFixed64UInt64MapMessage();
~SimpleFixed64UInt64MapMessage() override;
~SimpleFixed64UInt64MapMessage();
SimpleFixed64UInt64MapMessage(const SimpleFixed64UInt64MapMessage &other);
SimpleFixed64UInt64MapMessage &operator =(const SimpleFixed64UInt64MapMessage &other);
SimpleFixed64UInt64MapMessage(SimpleFixed64UInt64MapMessage &&other) noexcept;
@ -2238,7 +2238,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed32, QtProtobuf::uint64>;
SimpleSFixed32UInt64MapMessage();
~SimpleSFixed32UInt64MapMessage() override;
~SimpleSFixed32UInt64MapMessage();
SimpleSFixed32UInt64MapMessage(const SimpleSFixed32UInt64MapMessage &other);
SimpleSFixed32UInt64MapMessage &operator =(const SimpleSFixed32UInt64MapMessage &other);
SimpleSFixed32UInt64MapMessage(SimpleSFixed32UInt64MapMessage &&other) noexcept;
@ -2277,7 +2277,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed64, QtProtobuf::uint64>;
SimpleSFixed64UInt64MapMessage();
~SimpleSFixed64UInt64MapMessage() override;
~SimpleSFixed64UInt64MapMessage();
SimpleSFixed64UInt64MapMessage(const SimpleSFixed64UInt64MapMessage &other);
SimpleSFixed64UInt64MapMessage &operator =(const SimpleSFixed64UInt64MapMessage &other);
SimpleSFixed64UInt64MapMessage(SimpleSFixed64UInt64MapMessage &&other) noexcept;
@ -2316,7 +2316,7 @@ public:
using MapFieldEntry = QHash<QString, QtProtobuf::uint64>;
SimpleStringUInt64MapMessage();
~SimpleStringUInt64MapMessage() override;
~SimpleStringUInt64MapMessage();
SimpleStringUInt64MapMessage(const SimpleStringUInt64MapMessage &other);
SimpleStringUInt64MapMessage &operator =(const SimpleStringUInt64MapMessage &other);
SimpleStringUInt64MapMessage(SimpleStringUInt64MapMessage &&other) noexcept;
@ -2355,7 +2355,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint32, QtProtobuf::int32>;
SimpleSInt32Int32MapMessage();
~SimpleSInt32Int32MapMessage() override;
~SimpleSInt32Int32MapMessage();
SimpleSInt32Int32MapMessage(const SimpleSInt32Int32MapMessage &other);
SimpleSInt32Int32MapMessage &operator =(const SimpleSInt32Int32MapMessage &other);
SimpleSInt32Int32MapMessage(SimpleSInt32Int32MapMessage &&other) noexcept;
@ -2394,7 +2394,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint64, QtProtobuf::int32>;
SimpleSInt64Int32MapMessage();
~SimpleSInt64Int32MapMessage() override;
~SimpleSInt64Int32MapMessage();
SimpleSInt64Int32MapMessage(const SimpleSInt64Int32MapMessage &other);
SimpleSInt64Int32MapMessage &operator =(const SimpleSInt64Int32MapMessage &other);
SimpleSInt64Int32MapMessage(SimpleSInt64Int32MapMessage &&other) noexcept;
@ -2433,7 +2433,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int32, QtProtobuf::int32>;
SimpleInt32Int32MapMessage();
~SimpleInt32Int32MapMessage() override;
~SimpleInt32Int32MapMessage();
SimpleInt32Int32MapMessage(const SimpleInt32Int32MapMessage &other);
SimpleInt32Int32MapMessage &operator =(const SimpleInt32Int32MapMessage &other);
SimpleInt32Int32MapMessage(SimpleInt32Int32MapMessage &&other) noexcept;
@ -2472,7 +2472,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int64, QtProtobuf::int32>;
SimpleInt64Int32MapMessage();
~SimpleInt64Int32MapMessage() override;
~SimpleInt64Int32MapMessage();
SimpleInt64Int32MapMessage(const SimpleInt64Int32MapMessage &other);
SimpleInt64Int32MapMessage &operator =(const SimpleInt64Int32MapMessage &other);
SimpleInt64Int32MapMessage(SimpleInt64Int32MapMessage &&other) noexcept;
@ -2511,7 +2511,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint32, QtProtobuf::int32>;
SimpleUInt32Int32MapMessage();
~SimpleUInt32Int32MapMessage() override;
~SimpleUInt32Int32MapMessage();
SimpleUInt32Int32MapMessage(const SimpleUInt32Int32MapMessage &other);
SimpleUInt32Int32MapMessage &operator =(const SimpleUInt32Int32MapMessage &other);
SimpleUInt32Int32MapMessage(SimpleUInt32Int32MapMessage &&other) noexcept;
@ -2550,7 +2550,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint64, QtProtobuf::int32>;
SimpleUInt64Int32MapMessage();
~SimpleUInt64Int32MapMessage() override;
~SimpleUInt64Int32MapMessage();
SimpleUInt64Int32MapMessage(const SimpleUInt64Int32MapMessage &other);
SimpleUInt64Int32MapMessage &operator =(const SimpleUInt64Int32MapMessage &other);
SimpleUInt64Int32MapMessage(SimpleUInt64Int32MapMessage &&other) noexcept;
@ -2589,7 +2589,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed32, QtProtobuf::int32>;
SimpleFixed32Int32MapMessage();
~SimpleFixed32Int32MapMessage() override;
~SimpleFixed32Int32MapMessage();
SimpleFixed32Int32MapMessage(const SimpleFixed32Int32MapMessage &other);
SimpleFixed32Int32MapMessage &operator =(const SimpleFixed32Int32MapMessage &other);
SimpleFixed32Int32MapMessage(SimpleFixed32Int32MapMessage &&other) noexcept;
@ -2628,7 +2628,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed64, QtProtobuf::int32>;
SimpleFixed64Int32MapMessage();
~SimpleFixed64Int32MapMessage() override;
~SimpleFixed64Int32MapMessage();
SimpleFixed64Int32MapMessage(const SimpleFixed64Int32MapMessage &other);
SimpleFixed64Int32MapMessage &operator =(const SimpleFixed64Int32MapMessage &other);
SimpleFixed64Int32MapMessage(SimpleFixed64Int32MapMessage &&other) noexcept;
@ -2667,7 +2667,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed32, QtProtobuf::int32>;
SimpleSFixed32Int32MapMessage();
~SimpleSFixed32Int32MapMessage() override;
~SimpleSFixed32Int32MapMessage();
SimpleSFixed32Int32MapMessage(const SimpleSFixed32Int32MapMessage &other);
SimpleSFixed32Int32MapMessage &operator =(const SimpleSFixed32Int32MapMessage &other);
SimpleSFixed32Int32MapMessage(SimpleSFixed32Int32MapMessage &&other) noexcept;
@ -2706,7 +2706,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed64, QtProtobuf::int32>;
SimpleSFixed64Int32MapMessage();
~SimpleSFixed64Int32MapMessage() override;
~SimpleSFixed64Int32MapMessage();
SimpleSFixed64Int32MapMessage(const SimpleSFixed64Int32MapMessage &other);
SimpleSFixed64Int32MapMessage &operator =(const SimpleSFixed64Int32MapMessage &other);
SimpleSFixed64Int32MapMessage(SimpleSFixed64Int32MapMessage &&other) noexcept;
@ -2745,7 +2745,7 @@ public:
using MapFieldEntry = QHash<QString, QtProtobuf::int32>;
SimpleStringInt32MapMessage();
~SimpleStringInt32MapMessage() override;
~SimpleStringInt32MapMessage();
SimpleStringInt32MapMessage(const SimpleStringInt32MapMessage &other);
SimpleStringInt32MapMessage &operator =(const SimpleStringInt32MapMessage &other);
SimpleStringInt32MapMessage(SimpleStringInt32MapMessage &&other) noexcept;
@ -2784,7 +2784,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint32, QtProtobuf::int64>;
SimpleSInt32Int64MapMessage();
~SimpleSInt32Int64MapMessage() override;
~SimpleSInt32Int64MapMessage();
SimpleSInt32Int64MapMessage(const SimpleSInt32Int64MapMessage &other);
SimpleSInt32Int64MapMessage &operator =(const SimpleSInt32Int64MapMessage &other);
SimpleSInt32Int64MapMessage(SimpleSInt32Int64MapMessage &&other) noexcept;
@ -2823,7 +2823,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint64, QtProtobuf::int64>;
SimpleSInt64Int64MapMessage();
~SimpleSInt64Int64MapMessage() override;
~SimpleSInt64Int64MapMessage();
SimpleSInt64Int64MapMessage(const SimpleSInt64Int64MapMessage &other);
SimpleSInt64Int64MapMessage &operator =(const SimpleSInt64Int64MapMessage &other);
SimpleSInt64Int64MapMessage(SimpleSInt64Int64MapMessage &&other) noexcept;
@ -2862,7 +2862,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int32, QtProtobuf::int64>;
SimpleInt32Int64MapMessage();
~SimpleInt32Int64MapMessage() override;
~SimpleInt32Int64MapMessage();
SimpleInt32Int64MapMessage(const SimpleInt32Int64MapMessage &other);
SimpleInt32Int64MapMessage &operator =(const SimpleInt32Int64MapMessage &other);
SimpleInt32Int64MapMessage(SimpleInt32Int64MapMessage &&other) noexcept;
@ -2901,7 +2901,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int64, QtProtobuf::int64>;
SimpleInt64Int64MapMessage();
~SimpleInt64Int64MapMessage() override;
~SimpleInt64Int64MapMessage();
SimpleInt64Int64MapMessage(const SimpleInt64Int64MapMessage &other);
SimpleInt64Int64MapMessage &operator =(const SimpleInt64Int64MapMessage &other);
SimpleInt64Int64MapMessage(SimpleInt64Int64MapMessage &&other) noexcept;
@ -2940,7 +2940,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint32, QtProtobuf::int64>;
SimpleUInt32Int64MapMessage();
~SimpleUInt32Int64MapMessage() override;
~SimpleUInt32Int64MapMessage();
SimpleUInt32Int64MapMessage(const SimpleUInt32Int64MapMessage &other);
SimpleUInt32Int64MapMessage &operator =(const SimpleUInt32Int64MapMessage &other);
SimpleUInt32Int64MapMessage(SimpleUInt32Int64MapMessage &&other) noexcept;
@ -2979,7 +2979,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint64, QtProtobuf::int64>;
SimpleUInt64Int64MapMessage();
~SimpleUInt64Int64MapMessage() override;
~SimpleUInt64Int64MapMessage();
SimpleUInt64Int64MapMessage(const SimpleUInt64Int64MapMessage &other);
SimpleUInt64Int64MapMessage &operator =(const SimpleUInt64Int64MapMessage &other);
SimpleUInt64Int64MapMessage(SimpleUInt64Int64MapMessage &&other) noexcept;
@ -3018,7 +3018,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed32, QtProtobuf::int64>;
SimpleFixed32Int64MapMessage();
~SimpleFixed32Int64MapMessage() override;
~SimpleFixed32Int64MapMessage();
SimpleFixed32Int64MapMessage(const SimpleFixed32Int64MapMessage &other);
SimpleFixed32Int64MapMessage &operator =(const SimpleFixed32Int64MapMessage &other);
SimpleFixed32Int64MapMessage(SimpleFixed32Int64MapMessage &&other) noexcept;
@ -3057,7 +3057,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed64, QtProtobuf::int64>;
SimpleFixed64Int64MapMessage();
~SimpleFixed64Int64MapMessage() override;
~SimpleFixed64Int64MapMessage();
SimpleFixed64Int64MapMessage(const SimpleFixed64Int64MapMessage &other);
SimpleFixed64Int64MapMessage &operator =(const SimpleFixed64Int64MapMessage &other);
SimpleFixed64Int64MapMessage(SimpleFixed64Int64MapMessage &&other) noexcept;
@ -3096,7 +3096,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed32, QtProtobuf::int64>;
SimpleSFixed32Int64MapMessage();
~SimpleSFixed32Int64MapMessage() override;
~SimpleSFixed32Int64MapMessage();
SimpleSFixed32Int64MapMessage(const SimpleSFixed32Int64MapMessage &other);
SimpleSFixed32Int64MapMessage &operator =(const SimpleSFixed32Int64MapMessage &other);
SimpleSFixed32Int64MapMessage(SimpleSFixed32Int64MapMessage &&other) noexcept;
@ -3135,7 +3135,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed64, QtProtobuf::int64>;
SimpleSFixed64Int64MapMessage();
~SimpleSFixed64Int64MapMessage() override;
~SimpleSFixed64Int64MapMessage();
SimpleSFixed64Int64MapMessage(const SimpleSFixed64Int64MapMessage &other);
SimpleSFixed64Int64MapMessage &operator =(const SimpleSFixed64Int64MapMessage &other);
SimpleSFixed64Int64MapMessage(SimpleSFixed64Int64MapMessage &&other) noexcept;
@ -3174,7 +3174,7 @@ public:
using MapFieldEntry = QHash<QString, QtProtobuf::int64>;
SimpleStringInt64MapMessage();
~SimpleStringInt64MapMessage() override;
~SimpleStringInt64MapMessage();
SimpleStringInt64MapMessage(const SimpleStringInt64MapMessage &other);
SimpleStringInt64MapMessage &operator =(const SimpleStringInt64MapMessage &other);
SimpleStringInt64MapMessage(SimpleStringInt64MapMessage &&other) noexcept;
@ -3213,7 +3213,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint32, std::shared_ptr<ComplexMessage>>;
SimpleSInt32ComplexMessageMapMessage();
~SimpleSInt32ComplexMessageMapMessage() override;
~SimpleSInt32ComplexMessageMapMessage();
SimpleSInt32ComplexMessageMapMessage(const SimpleSInt32ComplexMessageMapMessage &other);
SimpleSInt32ComplexMessageMapMessage &operator =(const SimpleSInt32ComplexMessageMapMessage &other);
SimpleSInt32ComplexMessageMapMessage(SimpleSInt32ComplexMessageMapMessage &&other) noexcept;
@ -3252,7 +3252,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sint64, std::shared_ptr<ComplexMessage>>;
SimpleSInt64ComplexMessageMapMessage();
~SimpleSInt64ComplexMessageMapMessage() override;
~SimpleSInt64ComplexMessageMapMessage();
SimpleSInt64ComplexMessageMapMessage(const SimpleSInt64ComplexMessageMapMessage &other);
SimpleSInt64ComplexMessageMapMessage &operator =(const SimpleSInt64ComplexMessageMapMessage &other);
SimpleSInt64ComplexMessageMapMessage(SimpleSInt64ComplexMessageMapMessage &&other) noexcept;
@ -3291,7 +3291,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int32, std::shared_ptr<ComplexMessage>>;
SimpleInt32ComplexMessageMapMessage();
~SimpleInt32ComplexMessageMapMessage() override;
~SimpleInt32ComplexMessageMapMessage();
SimpleInt32ComplexMessageMapMessage(const SimpleInt32ComplexMessageMapMessage &other);
SimpleInt32ComplexMessageMapMessage &operator =(const SimpleInt32ComplexMessageMapMessage &other);
SimpleInt32ComplexMessageMapMessage(SimpleInt32ComplexMessageMapMessage &&other) noexcept;
@ -3330,7 +3330,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::int64, std::shared_ptr<ComplexMessage>>;
SimpleInt64ComplexMessageMapMessage();
~SimpleInt64ComplexMessageMapMessage() override;
~SimpleInt64ComplexMessageMapMessage();
SimpleInt64ComplexMessageMapMessage(const SimpleInt64ComplexMessageMapMessage &other);
SimpleInt64ComplexMessageMapMessage &operator =(const SimpleInt64ComplexMessageMapMessage &other);
SimpleInt64ComplexMessageMapMessage(SimpleInt64ComplexMessageMapMessage &&other) noexcept;
@ -3369,7 +3369,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint32, std::shared_ptr<ComplexMessage>>;
SimpleUInt32ComplexMessageMapMessage();
~SimpleUInt32ComplexMessageMapMessage() override;
~SimpleUInt32ComplexMessageMapMessage();
SimpleUInt32ComplexMessageMapMessage(const SimpleUInt32ComplexMessageMapMessage &other);
SimpleUInt32ComplexMessageMapMessage &operator =(const SimpleUInt32ComplexMessageMapMessage &other);
SimpleUInt32ComplexMessageMapMessage(SimpleUInt32ComplexMessageMapMessage &&other) noexcept;
@ -3408,7 +3408,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::uint64, std::shared_ptr<ComplexMessage>>;
SimpleUInt64ComplexMessageMapMessage();
~SimpleUInt64ComplexMessageMapMessage() override;
~SimpleUInt64ComplexMessageMapMessage();
SimpleUInt64ComplexMessageMapMessage(const SimpleUInt64ComplexMessageMapMessage &other);
SimpleUInt64ComplexMessageMapMessage &operator =(const SimpleUInt64ComplexMessageMapMessage &other);
SimpleUInt64ComplexMessageMapMessage(SimpleUInt64ComplexMessageMapMessage &&other) noexcept;
@ -3447,7 +3447,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed32, std::shared_ptr<ComplexMessage>>;
SimpleFixed32ComplexMessageMapMessage();
~SimpleFixed32ComplexMessageMapMessage() override;
~SimpleFixed32ComplexMessageMapMessage();
SimpleFixed32ComplexMessageMapMessage(const SimpleFixed32ComplexMessageMapMessage &other);
SimpleFixed32ComplexMessageMapMessage &operator =(const SimpleFixed32ComplexMessageMapMessage &other);
SimpleFixed32ComplexMessageMapMessage(SimpleFixed32ComplexMessageMapMessage &&other) noexcept;
@ -3486,7 +3486,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::fixed64, std::shared_ptr<ComplexMessage>>;
SimpleFixed64ComplexMessageMapMessage();
~SimpleFixed64ComplexMessageMapMessage() override;
~SimpleFixed64ComplexMessageMapMessage();
SimpleFixed64ComplexMessageMapMessage(const SimpleFixed64ComplexMessageMapMessage &other);
SimpleFixed64ComplexMessageMapMessage &operator =(const SimpleFixed64ComplexMessageMapMessage &other);
SimpleFixed64ComplexMessageMapMessage(SimpleFixed64ComplexMessageMapMessage &&other) noexcept;
@ -3525,7 +3525,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed32, std::shared_ptr<ComplexMessage>>;
SimpleSFixed32ComplexMessageMapMessage();
~SimpleSFixed32ComplexMessageMapMessage() override;
~SimpleSFixed32ComplexMessageMapMessage();
SimpleSFixed32ComplexMessageMapMessage(const SimpleSFixed32ComplexMessageMapMessage &other);
SimpleSFixed32ComplexMessageMapMessage &operator =(const SimpleSFixed32ComplexMessageMapMessage &other);
SimpleSFixed32ComplexMessageMapMessage(SimpleSFixed32ComplexMessageMapMessage &&other) noexcept;
@ -3564,7 +3564,7 @@ public:
using MapFieldEntry = QHash<QtProtobuf::sfixed64, std::shared_ptr<ComplexMessage>>;
SimpleSFixed64ComplexMessageMapMessage();
~SimpleSFixed64ComplexMessageMapMessage() override;
~SimpleSFixed64ComplexMessageMapMessage();
SimpleSFixed64ComplexMessageMapMessage(const SimpleSFixed64ComplexMessageMapMessage &other);
SimpleSFixed64ComplexMessageMapMessage &operator =(const SimpleSFixed64ComplexMessageMapMessage &other);
SimpleSFixed64ComplexMessageMapMessage(SimpleSFixed64ComplexMessageMapMessage &&other) noexcept;
@ -3603,7 +3603,7 @@ public:
using MapFieldEntry = QHash<QString, std::shared_ptr<ComplexMessage>>;
SimpleStringComplexMessageMapMessage();
~SimpleStringComplexMessageMapMessage() override;
~SimpleStringComplexMessageMapMessage();
SimpleStringComplexMessageMapMessage(const SimpleStringComplexMessageMapMessage &other);
SimpleStringComplexMessageMapMessage &operator =(const SimpleStringComplexMessageMapMessage &other);
SimpleStringComplexMessageMapMessage(SimpleStringComplexMessageMapMessage &&other) noexcept;

View File

@ -65,7 +65,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedStringMessage();
~RepeatedStringMessage() override;
~RepeatedStringMessage();
RepeatedStringMessage(const RepeatedStringMessage &other);
RepeatedStringMessage &operator =(const RepeatedStringMessage &other);
RepeatedStringMessage(RepeatedStringMessage &&other) noexcept;
@ -103,7 +103,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedDoubleMessage();
~RepeatedDoubleMessage() override;
~RepeatedDoubleMessage();
RepeatedDoubleMessage(const RepeatedDoubleMessage &other);
RepeatedDoubleMessage &operator =(const RepeatedDoubleMessage &other);
RepeatedDoubleMessage(RepeatedDoubleMessage &&other) noexcept;
@ -145,7 +145,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedBytesMessage();
~RepeatedBytesMessage() override;
~RepeatedBytesMessage();
RepeatedBytesMessage(const RepeatedBytesMessage &other);
RepeatedBytesMessage &operator =(const RepeatedBytesMessage &other);
RepeatedBytesMessage(RepeatedBytesMessage &&other) noexcept;
@ -183,7 +183,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedFloatMessage();
~RepeatedFloatMessage() override;
~RepeatedFloatMessage();
RepeatedFloatMessage(const RepeatedFloatMessage &other);
RepeatedFloatMessage &operator =(const RepeatedFloatMessage &other);
RepeatedFloatMessage(RepeatedFloatMessage &&other) noexcept;
@ -225,7 +225,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedComplexMessage();
~RepeatedComplexMessage() override;
~RepeatedComplexMessage();
RepeatedComplexMessage(const RepeatedComplexMessage &other);
RepeatedComplexMessage &operator =(const RepeatedComplexMessage &other);
RepeatedComplexMessage(RepeatedComplexMessage &&other) noexcept;
@ -263,7 +263,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedSIntMessage();
~RepeatedSIntMessage() override;
~RepeatedSIntMessage();
RepeatedSIntMessage(const RepeatedSIntMessage &other);
RepeatedSIntMessage &operator =(const RepeatedSIntMessage &other);
RepeatedSIntMessage(RepeatedSIntMessage &&other) noexcept;
@ -305,7 +305,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedIntMessage();
~RepeatedIntMessage() override;
~RepeatedIntMessage();
RepeatedIntMessage(const RepeatedIntMessage &other);
RepeatedIntMessage &operator =(const RepeatedIntMessage &other);
RepeatedIntMessage(RepeatedIntMessage &&other) noexcept;
@ -347,7 +347,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedUIntMessage();
~RepeatedUIntMessage() override;
~RepeatedUIntMessage();
RepeatedUIntMessage(const RepeatedUIntMessage &other);
RepeatedUIntMessage &operator =(const RepeatedUIntMessage &other);
RepeatedUIntMessage(RepeatedUIntMessage &&other) noexcept;
@ -389,7 +389,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedSInt64Message();
~RepeatedSInt64Message() override;
~RepeatedSInt64Message();
RepeatedSInt64Message(const RepeatedSInt64Message &other);
RepeatedSInt64Message &operator =(const RepeatedSInt64Message &other);
RepeatedSInt64Message(RepeatedSInt64Message &&other) noexcept;
@ -431,7 +431,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedInt64Message();
~RepeatedInt64Message() override;
~RepeatedInt64Message();
RepeatedInt64Message(const RepeatedInt64Message &other);
RepeatedInt64Message &operator =(const RepeatedInt64Message &other);
RepeatedInt64Message(RepeatedInt64Message &&other) noexcept;
@ -473,7 +473,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedUInt64Message();
~RepeatedUInt64Message() override;
~RepeatedUInt64Message();
RepeatedUInt64Message(const RepeatedUInt64Message &other);
RepeatedUInt64Message &operator =(const RepeatedUInt64Message &other);
RepeatedUInt64Message(RepeatedUInt64Message &&other) noexcept;
@ -515,7 +515,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedFixedIntMessage();
~RepeatedFixedIntMessage() override;
~RepeatedFixedIntMessage();
RepeatedFixedIntMessage(const RepeatedFixedIntMessage &other);
RepeatedFixedIntMessage &operator =(const RepeatedFixedIntMessage &other);
RepeatedFixedIntMessage(RepeatedFixedIntMessage &&other) noexcept;
@ -557,7 +557,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedSFixedIntMessage();
~RepeatedSFixedIntMessage() override;
~RepeatedSFixedIntMessage();
RepeatedSFixedIntMessage(const RepeatedSFixedIntMessage &other);
RepeatedSFixedIntMessage &operator =(const RepeatedSFixedIntMessage &other);
RepeatedSFixedIntMessage(RepeatedSFixedIntMessage &&other) noexcept;
@ -599,7 +599,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedFixedInt64Message();
~RepeatedFixedInt64Message() override;
~RepeatedFixedInt64Message();
RepeatedFixedInt64Message(const RepeatedFixedInt64Message &other);
RepeatedFixedInt64Message &operator =(const RepeatedFixedInt64Message &other);
RepeatedFixedInt64Message(RepeatedFixedInt64Message &&other) noexcept;
@ -641,7 +641,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedSFixedInt64Message();
~RepeatedSFixedInt64Message() override;
~RepeatedSFixedInt64Message();
RepeatedSFixedInt64Message(const RepeatedSFixedInt64Message &other);
RepeatedSFixedInt64Message &operator =(const RepeatedSFixedInt64Message &other);
RepeatedSFixedInt64Message(RepeatedSFixedInt64Message &&other) noexcept;
@ -683,7 +683,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedBoolMessage();
~RepeatedBoolMessage() override;
~RepeatedBoolMessage();
RepeatedBoolMessage(const RepeatedBoolMessage &other);
RepeatedBoolMessage &operator =(const RepeatedBoolMessage &other);
RepeatedBoolMessage(RepeatedBoolMessage &&other) noexcept;

View File

@ -60,7 +60,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedNonPackedIntMessage();
~RepeatedNonPackedIntMessage() override;
~RepeatedNonPackedIntMessage();
RepeatedNonPackedIntMessage(const RepeatedNonPackedIntMessage &other);
RepeatedNonPackedIntMessage &operator =(const RepeatedNonPackedIntMessage &other);
RepeatedNonPackedIntMessage(RepeatedNonPackedIntMessage &&other) noexcept;
@ -102,7 +102,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedNonPackedSIntMessage();
~RepeatedNonPackedSIntMessage() override;
~RepeatedNonPackedSIntMessage();
RepeatedNonPackedSIntMessage(const RepeatedNonPackedSIntMessage &other);
RepeatedNonPackedSIntMessage &operator =(const RepeatedNonPackedSIntMessage &other);
RepeatedNonPackedSIntMessage(RepeatedNonPackedSIntMessage &&other) noexcept;
@ -144,7 +144,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedNonPackedUIntMessage();
~RepeatedNonPackedUIntMessage() override;
~RepeatedNonPackedUIntMessage();
RepeatedNonPackedUIntMessage(const RepeatedNonPackedUIntMessage &other);
RepeatedNonPackedUIntMessage &operator =(const RepeatedNonPackedUIntMessage &other);
RepeatedNonPackedUIntMessage(RepeatedNonPackedUIntMessage &&other) noexcept;
@ -186,7 +186,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedNonPackedInt64Message();
~RepeatedNonPackedInt64Message() override;
~RepeatedNonPackedInt64Message();
RepeatedNonPackedInt64Message(const RepeatedNonPackedInt64Message &other);
RepeatedNonPackedInt64Message &operator =(const RepeatedNonPackedInt64Message &other);
RepeatedNonPackedInt64Message(RepeatedNonPackedInt64Message &&other) noexcept;
@ -228,7 +228,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedNonPackedSInt64Message();
~RepeatedNonPackedSInt64Message() override;
~RepeatedNonPackedSInt64Message();
RepeatedNonPackedSInt64Message(const RepeatedNonPackedSInt64Message &other);
RepeatedNonPackedSInt64Message &operator =(const RepeatedNonPackedSInt64Message &other);
RepeatedNonPackedSInt64Message(RepeatedNonPackedSInt64Message &&other) noexcept;
@ -270,7 +270,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedNonPackedUInt64Message();
~RepeatedNonPackedUInt64Message() override;
~RepeatedNonPackedUInt64Message();
RepeatedNonPackedUInt64Message(const RepeatedNonPackedUInt64Message &other);
RepeatedNonPackedUInt64Message &operator =(const RepeatedNonPackedUInt64Message &other);
RepeatedNonPackedUInt64Message(RepeatedNonPackedUInt64Message &&other) noexcept;
@ -312,7 +312,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedNonPackedFixedIntMessage();
~RepeatedNonPackedFixedIntMessage() override;
~RepeatedNonPackedFixedIntMessage();
RepeatedNonPackedFixedIntMessage(const RepeatedNonPackedFixedIntMessage &other);
RepeatedNonPackedFixedIntMessage &operator =(const RepeatedNonPackedFixedIntMessage &other);
RepeatedNonPackedFixedIntMessage(RepeatedNonPackedFixedIntMessage &&other) noexcept;
@ -354,7 +354,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedNonPackedSFixedIntMessage();
~RepeatedNonPackedSFixedIntMessage() override;
~RepeatedNonPackedSFixedIntMessage();
RepeatedNonPackedSFixedIntMessage(const RepeatedNonPackedSFixedIntMessage &other);
RepeatedNonPackedSFixedIntMessage &operator =(const RepeatedNonPackedSFixedIntMessage &other);
RepeatedNonPackedSFixedIntMessage(RepeatedNonPackedSFixedIntMessage &&other) noexcept;
@ -396,7 +396,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedNonPackedFixedInt64Message();
~RepeatedNonPackedFixedInt64Message() override;
~RepeatedNonPackedFixedInt64Message();
RepeatedNonPackedFixedInt64Message(const RepeatedNonPackedFixedInt64Message &other);
RepeatedNonPackedFixedInt64Message &operator =(const RepeatedNonPackedFixedInt64Message &other);
RepeatedNonPackedFixedInt64Message(RepeatedNonPackedFixedInt64Message &&other) noexcept;
@ -438,7 +438,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedNonPackedSFixedInt64Message();
~RepeatedNonPackedSFixedInt64Message() override;
~RepeatedNonPackedSFixedInt64Message();
RepeatedNonPackedSFixedInt64Message(const RepeatedNonPackedSFixedInt64Message &other);
RepeatedNonPackedSFixedInt64Message &operator =(const RepeatedNonPackedSFixedInt64Message &other);
RepeatedNonPackedSFixedInt64Message(RepeatedNonPackedSFixedInt64Message &&other) noexcept;
@ -480,7 +480,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedNonPackedBoolMessage();
~RepeatedNonPackedBoolMessage() override;
~RepeatedNonPackedBoolMessage();
RepeatedNonPackedBoolMessage(const RepeatedNonPackedBoolMessage &other);
RepeatedNonPackedBoolMessage &operator =(const RepeatedNonPackedBoolMessage &other);
RepeatedNonPackedBoolMessage(RepeatedNonPackedBoolMessage &&other) noexcept;
@ -522,7 +522,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedNonPackedDoubleMessage();
~RepeatedNonPackedDoubleMessage() override;
~RepeatedNonPackedDoubleMessage();
RepeatedNonPackedDoubleMessage(const RepeatedNonPackedDoubleMessage &other);
RepeatedNonPackedDoubleMessage &operator =(const RepeatedNonPackedDoubleMessage &other);
RepeatedNonPackedDoubleMessage(RepeatedNonPackedDoubleMessage &&other) noexcept;
@ -564,7 +564,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedNonPackedFloatMessage();
~RepeatedNonPackedFloatMessage() override;
~RepeatedNonPackedFloatMessage();
RepeatedNonPackedFloatMessage(const RepeatedNonPackedFloatMessage &other);
RepeatedNonPackedFloatMessage &operator =(const RepeatedNonPackedFloatMessage &other);
RepeatedNonPackedFloatMessage(RepeatedNonPackedFloatMessage &&other) noexcept;
@ -608,7 +608,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
NonPackedIntMessageWithExtraMember();
~NonPackedIntMessageWithExtraMember() override;
~NonPackedIntMessageWithExtraMember();
NonPackedIntMessageWithExtraMember(const NonPackedIntMessageWithExtraMember &other);
NonPackedIntMessageWithExtraMember &operator =(const NonPackedIntMessageWithExtraMember &other);
NonPackedIntMessageWithExtraMember(NonPackedIntMessageWithExtraMember &&other) noexcept;

View File

@ -60,7 +60,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedNonPackedIntMessage();
~RepeatedNonPackedIntMessage() override;
~RepeatedNonPackedIntMessage();
RepeatedNonPackedIntMessage(const RepeatedNonPackedIntMessage &other);
RepeatedNonPackedIntMessage &operator =(const RepeatedNonPackedIntMessage &other);
RepeatedNonPackedIntMessage(RepeatedNonPackedIntMessage &&other) noexcept;
@ -102,7 +102,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedNonPackedSIntMessage();
~RepeatedNonPackedSIntMessage() override;
~RepeatedNonPackedSIntMessage();
RepeatedNonPackedSIntMessage(const RepeatedNonPackedSIntMessage &other);
RepeatedNonPackedSIntMessage &operator =(const RepeatedNonPackedSIntMessage &other);
RepeatedNonPackedSIntMessage(RepeatedNonPackedSIntMessage &&other) noexcept;
@ -144,7 +144,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedNonPackedUIntMessage();
~RepeatedNonPackedUIntMessage() override;
~RepeatedNonPackedUIntMessage();
RepeatedNonPackedUIntMessage(const RepeatedNonPackedUIntMessage &other);
RepeatedNonPackedUIntMessage &operator =(const RepeatedNonPackedUIntMessage &other);
RepeatedNonPackedUIntMessage(RepeatedNonPackedUIntMessage &&other) noexcept;
@ -186,7 +186,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedNonPackedInt64Message();
~RepeatedNonPackedInt64Message() override;
~RepeatedNonPackedInt64Message();
RepeatedNonPackedInt64Message(const RepeatedNonPackedInt64Message &other);
RepeatedNonPackedInt64Message &operator =(const RepeatedNonPackedInt64Message &other);
RepeatedNonPackedInt64Message(RepeatedNonPackedInt64Message &&other) noexcept;
@ -228,7 +228,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedNonPackedSInt64Message();
~RepeatedNonPackedSInt64Message() override;
~RepeatedNonPackedSInt64Message();
RepeatedNonPackedSInt64Message(const RepeatedNonPackedSInt64Message &other);
RepeatedNonPackedSInt64Message &operator =(const RepeatedNonPackedSInt64Message &other);
RepeatedNonPackedSInt64Message(RepeatedNonPackedSInt64Message &&other) noexcept;
@ -270,7 +270,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedNonPackedUInt64Message();
~RepeatedNonPackedUInt64Message() override;
~RepeatedNonPackedUInt64Message();
RepeatedNonPackedUInt64Message(const RepeatedNonPackedUInt64Message &other);
RepeatedNonPackedUInt64Message &operator =(const RepeatedNonPackedUInt64Message &other);
RepeatedNonPackedUInt64Message(RepeatedNonPackedUInt64Message &&other) noexcept;
@ -312,7 +312,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedNonPackedFixedIntMessage();
~RepeatedNonPackedFixedIntMessage() override;
~RepeatedNonPackedFixedIntMessage();
RepeatedNonPackedFixedIntMessage(const RepeatedNonPackedFixedIntMessage &other);
RepeatedNonPackedFixedIntMessage &operator =(const RepeatedNonPackedFixedIntMessage &other);
RepeatedNonPackedFixedIntMessage(RepeatedNonPackedFixedIntMessage &&other) noexcept;
@ -354,7 +354,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedNonPackedSFixedIntMessage();
~RepeatedNonPackedSFixedIntMessage() override;
~RepeatedNonPackedSFixedIntMessage();
RepeatedNonPackedSFixedIntMessage(const RepeatedNonPackedSFixedIntMessage &other);
RepeatedNonPackedSFixedIntMessage &operator =(const RepeatedNonPackedSFixedIntMessage &other);
RepeatedNonPackedSFixedIntMessage(RepeatedNonPackedSFixedIntMessage &&other) noexcept;
@ -396,7 +396,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedNonPackedFixedInt64Message();
~RepeatedNonPackedFixedInt64Message() override;
~RepeatedNonPackedFixedInt64Message();
RepeatedNonPackedFixedInt64Message(const RepeatedNonPackedFixedInt64Message &other);
RepeatedNonPackedFixedInt64Message &operator =(const RepeatedNonPackedFixedInt64Message &other);
RepeatedNonPackedFixedInt64Message(RepeatedNonPackedFixedInt64Message &&other) noexcept;
@ -438,7 +438,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedNonPackedSFixedInt64Message();
~RepeatedNonPackedSFixedInt64Message() override;
~RepeatedNonPackedSFixedInt64Message();
RepeatedNonPackedSFixedInt64Message(const RepeatedNonPackedSFixedInt64Message &other);
RepeatedNonPackedSFixedInt64Message &operator =(const RepeatedNonPackedSFixedInt64Message &other);
RepeatedNonPackedSFixedInt64Message(RepeatedNonPackedSFixedInt64Message &&other) noexcept;
@ -480,7 +480,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedNonPackedBoolMessage();
~RepeatedNonPackedBoolMessage() override;
~RepeatedNonPackedBoolMessage();
RepeatedNonPackedBoolMessage(const RepeatedNonPackedBoolMessage &other);
RepeatedNonPackedBoolMessage &operator =(const RepeatedNonPackedBoolMessage &other);
RepeatedNonPackedBoolMessage(RepeatedNonPackedBoolMessage &&other) noexcept;
@ -522,7 +522,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedNonPackedDoubleMessage();
~RepeatedNonPackedDoubleMessage() override;
~RepeatedNonPackedDoubleMessage();
RepeatedNonPackedDoubleMessage(const RepeatedNonPackedDoubleMessage &other);
RepeatedNonPackedDoubleMessage &operator =(const RepeatedNonPackedDoubleMessage &other);
RepeatedNonPackedDoubleMessage(RepeatedNonPackedDoubleMessage &&other) noexcept;
@ -564,7 +564,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
RepeatedNonPackedFloatMessage();
~RepeatedNonPackedFloatMessage() override;
~RepeatedNonPackedFloatMessage();
RepeatedNonPackedFloatMessage(const RepeatedNonPackedFloatMessage &other);
RepeatedNonPackedFloatMessage &operator =(const RepeatedNonPackedFloatMessage &other);
RepeatedNonPackedFloatMessage(RepeatedNonPackedFloatMessage &&other) noexcept;
@ -608,7 +608,7 @@ public:
Q_ENUM(QtProtobufFieldEnum)
NonPackedIntMessageWithExtraMember();
~NonPackedIntMessageWithExtraMember() override;
~NonPackedIntMessageWithExtraMember();
NonPackedIntMessageWithExtraMember(const NonPackedIntMessageWithExtraMember &other);
NonPackedIntMessageWithExtraMember &operator =(const NonPackedIntMessageWithExtraMember &other);
NonPackedIntMessageWithExtraMember(NonPackedIntMessageWithExtraMember &&other) noexcept;