Skip to content

Commit 0d64c22

Browse files
readers_ as InternalReader
Signed-off-by: Eugenio Collado <eugeniocollado@eprosima.com>
1 parent c85e31d commit 0d64c22

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

ddsenabler_participants/include/ddsenabler_participants/EnablerParticipant.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ class EnablerParticipant : public ddspipe::participants::SchemaParticipant
164164
bool revoke_service_nts_(
165165
const std::string& service_name);
166166

167-
std::map<ddspipe::core::types::DdsTopic, std::shared_ptr<ddspipe::core::IReader>> readers_;
167+
std::map<ddspipe::core::types::DdsTopic, std::shared_ptr<ddspipe::participants::InternalReader>> readers_;
168168

169169
std::map<std::string, std::shared_ptr<ServiceDiscovered>> services_;
170170

ddsenabler_participants/src/cpp/EnablerParticipant.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ std::shared_ptr<IReader> EnablerParticipant::create_reader(
9090
return std::make_shared<BlankReader>();
9191
}
9292

93-
std::shared_ptr<IReader> reader;
93+
std::shared_ptr<InternalReader> reader;
9494
{
9595
std::lock_guard<std::mutex> lck(mtx_);
9696
auto dds_topic = dynamic_cast<const DdsTopic&>(topic);

0 commit comments

Comments
 (0)