Skip to content

Commit

Permalink
Refs #18687. Regenerated data type source code
Browse files Browse the repository at this point in the history
Signed-off-by: Ricardo González Moreno <ricardo@richiware.dev>
  • Loading branch information
richiware committed Sep 20, 2023
1 parent fffdd54 commit 3595fe1
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 6 deletions.
8 changes: 3 additions & 5 deletions fastdds_python/test/types/test_completeCdrAux.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,15 @@

constexpr uint32_t CompleteTestType_max_cdr_typesize {41752UL};
constexpr uint32_t CompleteTestType_max_key_cdr_typesize {0UL};


constexpr uint32_t StructType_max_cdr_typesize {328UL};
constexpr uint32_t StructType_max_key_cdr_typesize {0UL};






constexpr uint32_t KeyedCompleteTestType_max_cdr_typesize {41752UL};
constexpr uint32_t KeyedCompleteTestType_max_key_cdr_typesize {4UL};


namespace eprosima {
namespace fastcdr {
Expand Down
21 changes: 21 additions & 0 deletions fastdds_python/test/types/test_completePubSubTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,13 @@ class StructTypePubSubType : public eprosima::fastdds::dds::TopicDataType
return false;
}

eProsima_user_DllExport inline bool is_plain(
eprosima::fastdds::dds::DataRepresentationId_t data_representation) const override
{
static_cast<void>(data_representation);
return false;
}

#endif // TOPIC_DATA_TYPE_API_HAS_IS_PLAIN

#ifdef TOPIC_DATA_TYPE_API_HAS_CONSTRUCT_SAMPLE
Expand Down Expand Up @@ -185,6 +192,13 @@ class CompleteTestTypePubSubType : public eprosima::fastdds::dds::TopicDataType
return false;
}

eProsima_user_DllExport inline bool is_plain(
eprosima::fastdds::dds::DataRepresentationId_t data_representation) const override
{
static_cast<void>(data_representation);
return false;
}

#endif // TOPIC_DATA_TYPE_API_HAS_IS_PLAIN

#ifdef TOPIC_DATA_TYPE_API_HAS_CONSTRUCT_SAMPLE
Expand Down Expand Up @@ -266,6 +280,13 @@ class KeyedCompleteTestTypePubSubType : public eprosima::fastdds::dds::TopicData
return false;
}

eProsima_user_DllExport inline bool is_plain(
eprosima::fastdds::dds::DataRepresentationId_t data_representation) const override
{
static_cast<void>(data_representation);
return false;
}

#endif // TOPIC_DATA_TYPE_API_HAS_IS_PLAIN

#ifdef TOPIC_DATA_TYPE_API_HAS_CONSTRUCT_SAMPLE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

constexpr uint32_t HelloWorld_max_cdr_typesize {268UL};
constexpr uint32_t HelloWorld_max_key_cdr_typesize {0UL};


namespace eprosima {
namespace fastcdr {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,13 @@ class HelloWorldPubSubType : public eprosima::fastdds::dds::TopicDataType
return false;
}

eProsima_user_DllExport inline bool is_plain(
eprosima::fastdds::dds::DataRepresentationId_t data_representation) const override
{
static_cast<void>(data_representation);
return false;
}

#endif // TOPIC_DATA_TYPE_API_HAS_IS_PLAIN

#ifdef TOPIC_DATA_TYPE_API_HAS_CONSTRUCT_SAMPLE
Expand Down

0 comments on commit 3595fe1

Please sign in to comment.