Skip to content

Commit

Permalink
Update generated sources to version 2.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mikir committed Oct 30, 2024
1 parent 7f5568c commit 4ae87a9
Show file tree
Hide file tree
Showing 10 changed files with 40 additions and 40 deletions.
6 changes: 3 additions & 3 deletions pmr/src/tutorial/Employee.h
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
/**
* Automatically generated by Zserio C++ generator version 1.0.2 using Zserio core 2.14.1.
* Automatically generated by Zserio C++ generator version 1.1.0 using Zserio core 2.15.0.
* Generator setup: writerCode, pubsubCode, serviceCode, sqlCode, sourcesAmalgamation, polymorphicAllocator.
*/

#ifndef TUTORIAL_EMPLOYEE_H
#define TUTORIAL_EMPLOYEE_H

#include <zserio/CppRuntimeVersion.h>
#if CPP_EXTENSION_RUNTIME_VERSION_NUMBER != 1000002
#if CPP_EXTENSION_RUNTIME_VERSION_NUMBER != 1001000
#error Version mismatch between Zserio runtime library and Zserio C++ generator!
#error Please update your Zserio runtime library to the version 1.0.2.
#error Please update your Zserio runtime library to the version 1.1.0.
#endif

#include <zserio/Traits.h>
Expand Down
6 changes: 3 additions & 3 deletions pmr/src/tutorial/Experience.h
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
/**
* Automatically generated by Zserio C++ generator version 1.0.2 using Zserio core 2.14.1.
* Automatically generated by Zserio C++ generator version 1.1.0 using Zserio core 2.15.0.
* Generator setup: writerCode, pubsubCode, serviceCode, sqlCode, sourcesAmalgamation, polymorphicAllocator.
*/

#ifndef TUTORIAL_EXPERIENCE_H
#define TUTORIAL_EXPERIENCE_H

#include <zserio/CppRuntimeVersion.h>
#if CPP_EXTENSION_RUNTIME_VERSION_NUMBER != 1000002
#if CPP_EXTENSION_RUNTIME_VERSION_NUMBER != 1001000
#error Version mismatch between Zserio runtime library and Zserio C++ generator!
#error Please update your Zserio runtime library to the version 1.0.2.
#error Please update your Zserio runtime library to the version 1.1.0.
#endif

#include <zserio/Traits.h>
Expand Down
6 changes: 3 additions & 3 deletions pmr/src/tutorial/Language.h
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
/**
* Automatically generated by Zserio C++ generator version 1.0.2 using Zserio core 2.14.1.
* Automatically generated by Zserio C++ generator version 1.1.0 using Zserio core 2.15.0.
* Generator setup: writerCode, pubsubCode, serviceCode, sqlCode, sourcesAmalgamation, polymorphicAllocator.
*/

#ifndef TUTORIAL_LANGUAGE_H
#define TUTORIAL_LANGUAGE_H

#include <zserio/CppRuntimeVersion.h>
#if CPP_EXTENSION_RUNTIME_VERSION_NUMBER != 1000002
#if CPP_EXTENSION_RUNTIME_VERSION_NUMBER != 1001000
#error Version mismatch between Zserio runtime library and Zserio C++ generator!
#error Please update your Zserio runtime library to the version 1.0.2.
#error Please update your Zserio runtime library to the version 1.1.0.
#endif

#include <array>
Expand Down
6 changes: 3 additions & 3 deletions pmr/src/tutorial/Role.h
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
/**
* Automatically generated by Zserio C++ generator version 1.0.2 using Zserio core 2.14.1.
* Automatically generated by Zserio C++ generator version 1.1.0 using Zserio core 2.15.0.
* Generator setup: writerCode, pubsubCode, serviceCode, sqlCode, sourcesAmalgamation, polymorphicAllocator.
*/

#ifndef TUTORIAL_ROLE_H
#define TUTORIAL_ROLE_H

#include <zserio/CppRuntimeVersion.h>
#if CPP_EXTENSION_RUNTIME_VERSION_NUMBER != 1000002
#if CPP_EXTENSION_RUNTIME_VERSION_NUMBER != 1001000
#error Version mismatch between Zserio runtime library and Zserio C++ generator!
#error Please update your Zserio runtime library to the version 1.0.2.
#error Please update your Zserio runtime library to the version 1.1.0.
#endif

#include <array>
Expand Down
16 changes: 8 additions & 8 deletions pmr/src/tutorial/Tutorial.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Automatically generated by Zserio C++ generator version 1.0.2 using Zserio core 2.14.1.
* Automatically generated by Zserio C++ generator version 1.1.0 using Zserio core 2.15.0.
* Generator setup: writerCode, pubsubCode, serviceCode, sqlCode, sourcesAmalgamation, polymorphicAllocator.
*/

Expand Down Expand Up @@ -88,7 +88,7 @@ void write(::zserio::BitStreamWriter& out, ::tutorial::Language value)
} // namespace zserio

/**
* Automatically generated by Zserio C++ generator version 1.0.2 using Zserio core 2.14.1.
* Automatically generated by Zserio C++ generator version 1.1.0 using Zserio core 2.15.0.
* Generator setup: writerCode, pubsubCode, serviceCode, sqlCode, sourcesAmalgamation, polymorphicAllocator.
*/

Expand Down Expand Up @@ -174,7 +174,7 @@ void write(::zserio::BitStreamWriter& out, ::tutorial::Role value)
} // namespace zserio

/**
* Automatically generated by Zserio C++ generator version 1.0.2 using Zserio core 2.14.1.
* Automatically generated by Zserio C++ generator version 1.1.0 using Zserio core 2.15.0.
* Generator setup: writerCode, pubsubCode, serviceCode, sqlCode, sourcesAmalgamation, polymorphicAllocator.
*/

Expand Down Expand Up @@ -276,7 +276,7 @@ void Employee::setBonus(uint16_t bonus_)

bool Employee::isBonusUsed() const
{
return (isBonusSet());
return (m_bonus_.hasValue());
}

bool Employee::isBonusSet() const
Expand Down Expand Up @@ -342,7 +342,7 @@ size_t Employee::bitSizeOf(size_t bitPosition) const
endBitPosition += ::zserio::bitSizeOfString(m_name_);
endBitPosition += UINT8_C(16);
endBitPosition += 1;
if (isBonusSet())
if (m_bonus_.hasValue())
{
endBitPosition += UINT8_C(16);
}
Expand All @@ -363,7 +363,7 @@ size_t Employee::initializeOffsets(size_t bitPosition)
endBitPosition += ::zserio::bitSizeOfString(m_name_);
endBitPosition += UINT8_C(16);
endBitPosition += 1;
if (isBonusSet())
if (m_bonus_.hasValue())
{
endBitPosition += UINT8_C(16);
}
Expand Down Expand Up @@ -498,7 +498,7 @@ void Employee::write(::zserio::BitStreamWriter& out) const

out.writeBits(m_salary_, UINT8_C(16));

if (isBonusSet())
if (m_bonus_.hasValue())
{
out.writeBool(true);
out.writeBits(m_bonus_.value(), UINT8_C(16));
Expand Down Expand Up @@ -579,7 +579,7 @@ ::zserio::InplaceOptionalHolder<Employee::ZserioArrayType_skills> Employee::read
} // namespace tutorial

/**
* Automatically generated by Zserio C++ generator version 1.0.2 using Zserio core 2.14.1.
* Automatically generated by Zserio C++ generator version 1.1.0 using Zserio core 2.15.0.
* Generator setup: writerCode, pubsubCode, serviceCode, sqlCode, sourcesAmalgamation, polymorphicAllocator.
*/

Expand Down
6 changes: 3 additions & 3 deletions src/tutorial/Employee.h
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
/**
* Automatically generated by Zserio C++ generator version 1.0.2 using Zserio core 2.14.1.
* Automatically generated by Zserio C++ generator version 1.1.0 using Zserio core 2.15.0.
* Generator setup: writerCode, pubsubCode, serviceCode, sqlCode, sourcesAmalgamation, stdAllocator.
*/

#ifndef TUTORIAL_EMPLOYEE_H
#define TUTORIAL_EMPLOYEE_H

#include <zserio/CppRuntimeVersion.h>
#if CPP_EXTENSION_RUNTIME_VERSION_NUMBER != 1000002
#if CPP_EXTENSION_RUNTIME_VERSION_NUMBER != 1001000
#error Version mismatch between Zserio runtime library and Zserio C++ generator!
#error Please update your Zserio runtime library to the version 1.0.2.
#error Please update your Zserio runtime library to the version 1.1.0.
#endif

#include <zserio/Traits.h>
Expand Down
6 changes: 3 additions & 3 deletions src/tutorial/Experience.h
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
/**
* Automatically generated by Zserio C++ generator version 1.0.2 using Zserio core 2.14.1.
* Automatically generated by Zserio C++ generator version 1.1.0 using Zserio core 2.15.0.
* Generator setup: writerCode, pubsubCode, serviceCode, sqlCode, sourcesAmalgamation, stdAllocator.
*/

#ifndef TUTORIAL_EXPERIENCE_H
#define TUTORIAL_EXPERIENCE_H

#include <zserio/CppRuntimeVersion.h>
#if CPP_EXTENSION_RUNTIME_VERSION_NUMBER != 1000002
#if CPP_EXTENSION_RUNTIME_VERSION_NUMBER != 1001000
#error Version mismatch between Zserio runtime library and Zserio C++ generator!
#error Please update your Zserio runtime library to the version 1.0.2.
#error Please update your Zserio runtime library to the version 1.1.0.
#endif

#include <zserio/Traits.h>
Expand Down
6 changes: 3 additions & 3 deletions src/tutorial/Language.h
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
/**
* Automatically generated by Zserio C++ generator version 1.0.2 using Zserio core 2.14.1.
* Automatically generated by Zserio C++ generator version 1.1.0 using Zserio core 2.15.0.
* Generator setup: writerCode, pubsubCode, serviceCode, sqlCode, sourcesAmalgamation, stdAllocator.
*/

#ifndef TUTORIAL_LANGUAGE_H
#define TUTORIAL_LANGUAGE_H

#include <zserio/CppRuntimeVersion.h>
#if CPP_EXTENSION_RUNTIME_VERSION_NUMBER != 1000002
#if CPP_EXTENSION_RUNTIME_VERSION_NUMBER != 1001000
#error Version mismatch between Zserio runtime library and Zserio C++ generator!
#error Please update your Zserio runtime library to the version 1.0.2.
#error Please update your Zserio runtime library to the version 1.1.0.
#endif

#include <array>
Expand Down
6 changes: 3 additions & 3 deletions src/tutorial/Role.h
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
/**
* Automatically generated by Zserio C++ generator version 1.0.2 using Zserio core 2.14.1.
* Automatically generated by Zserio C++ generator version 1.1.0 using Zserio core 2.15.0.
* Generator setup: writerCode, pubsubCode, serviceCode, sqlCode, sourcesAmalgamation, stdAllocator.
*/

#ifndef TUTORIAL_ROLE_H
#define TUTORIAL_ROLE_H

#include <zserio/CppRuntimeVersion.h>
#if CPP_EXTENSION_RUNTIME_VERSION_NUMBER != 1000002
#if CPP_EXTENSION_RUNTIME_VERSION_NUMBER != 1001000
#error Version mismatch between Zserio runtime library and Zserio C++ generator!
#error Please update your Zserio runtime library to the version 1.0.2.
#error Please update your Zserio runtime library to the version 1.1.0.
#endif

#include <array>
Expand Down
16 changes: 8 additions & 8 deletions src/tutorial/Tutorial.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Automatically generated by Zserio C++ generator version 1.0.2 using Zserio core 2.14.1.
* Automatically generated by Zserio C++ generator version 1.1.0 using Zserio core 2.15.0.
* Generator setup: writerCode, pubsubCode, serviceCode, sqlCode, sourcesAmalgamation, stdAllocator.
*/

Expand Down Expand Up @@ -88,7 +88,7 @@ void write(::zserio::BitStreamWriter& out, ::tutorial::Language value)
} // namespace zserio

/**
* Automatically generated by Zserio C++ generator version 1.0.2 using Zserio core 2.14.1.
* Automatically generated by Zserio C++ generator version 1.1.0 using Zserio core 2.15.0.
* Generator setup: writerCode, pubsubCode, serviceCode, sqlCode, sourcesAmalgamation, stdAllocator.
*/

Expand Down Expand Up @@ -174,7 +174,7 @@ void write(::zserio::BitStreamWriter& out, ::tutorial::Role value)
} // namespace zserio

/**
* Automatically generated by Zserio C++ generator version 1.0.2 using Zserio core 2.14.1.
* Automatically generated by Zserio C++ generator version 1.1.0 using Zserio core 2.15.0.
* Generator setup: writerCode, pubsubCode, serviceCode, sqlCode, sourcesAmalgamation, stdAllocator.
*/

Expand Down Expand Up @@ -276,7 +276,7 @@ void Employee::setBonus(uint16_t bonus_)

bool Employee::isBonusUsed() const
{
return (isBonusSet());
return (m_bonus_.hasValue());
}

bool Employee::isBonusSet() const
Expand Down Expand Up @@ -342,7 +342,7 @@ size_t Employee::bitSizeOf(size_t bitPosition) const
endBitPosition += ::zserio::bitSizeOfString(m_name_);
endBitPosition += UINT8_C(16);
endBitPosition += 1;
if (isBonusSet())
if (m_bonus_.hasValue())
{
endBitPosition += UINT8_C(16);
}
Expand All @@ -363,7 +363,7 @@ size_t Employee::initializeOffsets(size_t bitPosition)
endBitPosition += ::zserio::bitSizeOfString(m_name_);
endBitPosition += UINT8_C(16);
endBitPosition += 1;
if (isBonusSet())
if (m_bonus_.hasValue())
{
endBitPosition += UINT8_C(16);
}
Expand Down Expand Up @@ -498,7 +498,7 @@ void Employee::write(::zserio::BitStreamWriter& out) const

out.writeBits(m_salary_, UINT8_C(16));

if (isBonusSet())
if (m_bonus_.hasValue())
{
out.writeBool(true);
out.writeBits(m_bonus_.value(), UINT8_C(16));
Expand Down Expand Up @@ -579,7 +579,7 @@ ::zserio::InplaceOptionalHolder<Employee::ZserioArrayType_skills> Employee::read
} // namespace tutorial

/**
* Automatically generated by Zserio C++ generator version 1.0.2 using Zserio core 2.14.1.
* Automatically generated by Zserio C++ generator version 1.1.0 using Zserio core 2.15.0.
* Generator setup: writerCode, pubsubCode, serviceCode, sqlCode, sourcesAmalgamation, stdAllocator.
*/

Expand Down

0 comments on commit 4ae87a9

Please sign in to comment.