Skip to content

Commit

Permalink
Use InternalWriter from DDS-Pipe (#114)
Browse files Browse the repository at this point in the history
Signed-off-by: Juan Lopez Fernandez <[email protected]>
  • Loading branch information
juanlofer-eprosima authored Dec 19, 2024
1 parent 205685c commit b0a3937
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 89 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
#include <cpp_utils/types/Atomicable.hpp>

#include <ddspipe_participants/participant/dynamic_types/SchemaParticipant.hpp>
#include <ddspipe_participants/writer/auxiliar/InternalWriter.hpp>

#include <fastddsspy_participants/library/library_dll.h>
#include <fastddsspy_participants/types/ParticipantInfo.hpp>
#include <fastddsspy_participants/writer/InternalWriter.hpp>
#include <fastddsspy_participants/model/SpyModel.hpp>

namespace eprosima {
Expand Down Expand Up @@ -56,9 +56,9 @@ class SpyParticipant : public ddspipe::participants::SchemaParticipant
const ddspipe::core::IRoutingData& data);

//! Participants Internal Reader
std::shared_ptr<InternalWriter> participants_writer_;
std::shared_ptr<ddspipe::participants::InternalWriter> participants_writer_;

std::shared_ptr<InternalWriter> endpoints_writer_;
std::shared_ptr<ddspipe::participants::InternalWriter> endpoints_writer_;

std::shared_ptr<SpyModel> model_;
};
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ SpyParticipant::SpyParticipant(
return this->new_participant_info_(data);
};

participants_writer_ = std::make_shared<InternalWriter>(
participants_writer_ = std::make_shared<ddspipe::participants::InternalWriter>(
participant_configuration->id,
participant_callback);

Expand All @@ -45,7 +45,7 @@ SpyParticipant::SpyParticipant(
return this->new_endpoint_info_(data);
};

endpoints_writer_ = std::make_shared<InternalWriter>(
endpoints_writer_ = std::make_shared<ddspipe::participants::InternalWriter>(
participant_configuration->id,
endpoint_callback);
}
Expand Down
38 changes: 0 additions & 38 deletions fastddsspy_participants/src/cpp/writer/InternalWriter.cpp

This file was deleted.

0 comments on commit b0a3937

Please sign in to comment.