Skip to content

Commit

Permalink
Regenerate types with Gen v4.0.1 (#247)
Browse files Browse the repository at this point in the history
Signed-off-by: JesusPoderoso <[email protected]>
  • Loading branch information
JesusPoderoso authored Sep 12, 2024
1 parent 2484640 commit 35f5313
Show file tree
Hide file tree
Showing 12 changed files with 2,024 additions and 1,938 deletions.
13 changes: 8 additions & 5 deletions examples/cpp/HelloWorldExample/HelloWorld.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ class HelloWorld
eProsima_user_DllExport HelloWorld(
const HelloWorld& x)
{
m_index = x.m_index;
m_index = x.m_index;

m_message = x.m_message;
m_message = x.m_message;

}

Expand All @@ -105,9 +105,9 @@ class HelloWorld
const HelloWorld& x)
{

m_index = x.m_index;
m_index = x.m_index;

m_message = x.m_message;
m_message = x.m_message;

return *this;
}
Expand All @@ -133,7 +133,7 @@ class HelloWorld
const HelloWorld& x) const
{
return (m_index == x.m_index &&
m_message == x.m_message);
m_message == x.m_message);
}

/*!
Expand Down Expand Up @@ -174,6 +174,7 @@ class HelloWorld
return m_index;
}


/*!
* @brief This function copies the value in member message
* @param _message New value to be copied in member message
Expand Down Expand Up @@ -212,6 +213,8 @@ class HelloWorld
return m_message;
}



private:

uint32_t m_index{0};
Expand Down
Loading

0 comments on commit 35f5313

Please sign in to comment.