Skip to content

Commit f196dfa

Browse files
committed
Apply Review
Signed-off-by: cferreiragonz <carlosferreira@eprosima.com>
1 parent 8914782 commit f196dfa

2 files changed

Lines changed: 0 additions & 31 deletions

File tree

ddspipe_participants/include/ddspipe_participants/participant/dynamic_types/DynTypesParticipant.hpp

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -71,23 +71,6 @@ class DynTypesParticipant : public rtps::SimpleParticipant
7171
std::shared_ptr<core::IReader> create_reader(
7272
const core::ITopic& topic) override;
7373

74-
// DynTypesParticipant makes use of both RTPS and DDS listeners
75-
76-
/**
77-
* @brief This class is the RTPS Listener for DynTypesParticipant. It inherits from
78-
* \c rtps::CommonParticipant::RtpsListener .
79-
*/
80-
class DynTypesRtpsListener : public rtps::CommonParticipant::RtpsListener
81-
{
82-
public:
83-
84-
DDSPIPE_PARTICIPANTS_DllAPI
85-
explicit DynTypesRtpsListener(
86-
std::shared_ptr<ParticipantConfiguration> conf,
87-
std::shared_ptr<core::DiscoveryDatabase> ddb);
88-
89-
};
90-
9174
/**
9275
* @brief This class is the DDS Listener for DynTypesParticipant. It inherits directly from
9376
* \c fastdds::dds::DomainParticipantListener and implements the methods needed to process type objects and

ddspipe_participants/src/cpp/participant/dynamic_types/DynTypesParticipant.cpp

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -94,15 +94,6 @@ std::shared_ptr<IReader> DynTypesParticipant::create_reader(
9494
return rtps::SimpleParticipant::create_reader(topic);
9595
}
9696

97-
DynTypesParticipant::DynTypesRtpsListener::DynTypesRtpsListener(
98-
std::shared_ptr<ParticipantConfiguration> conf,
99-
std::shared_ptr<core::DiscoveryDatabase> ddb)
100-
: rtps::CommonParticipant::RtpsListener(
101-
conf,
102-
ddb)
103-
{
104-
}
105-
10697
DynTypesParticipant::DynTypesDdsListener::DynTypesDdsListener(
10798
std::shared_ptr<InternalReader> type_object_reader,
10899
core::types::ParticipantId participant_id)
@@ -319,11 +310,6 @@ void DynTypesParticipant::initialize_internal_dds_participant_()
319310
}
320311
}
321312

322-
std::unique_ptr<fastrtps::rtps::RTPSParticipantListener> DynTypesParticipant::create_listener_()
323-
{
324-
return std::make_unique<DynTypesRtpsListener>(configuration_, discovery_database_);
325-
}
326-
327313
std::unique_ptr<fastdds::dds::DomainParticipantListener> DynTypesParticipant::create_dds_listener_()
328314
{
329315
// Note that when the DDS listener is created, the RTPS participant is already created and enabled.

0 commit comments

Comments
 (0)