File tree Expand file tree Collapse file tree
include/ddspipe_participants/participant/dynamic_types
src/cpp/participant/dynamic_types Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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-
10697DynTypesParticipant::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-
327313std::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.
You can’t perform that action at this time.
0 commit comments