-
Notifications
You must be signed in to change notification settings - Fork 392
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Iox #65 initial implementation cyclonedds to iox gateway #135
Conversation
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
ffeb2d0
to
79c71c2
Compare
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
…re an InputChannel for the dds to iox direction. Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
…base class. Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
…ass. Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
…ass. Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
…to base class. Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
…channel instead of the terminals. Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
…channels when testing. Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
…oryx_eclipse into iox-eclipse-iceoryx#65-initial-implementation-cyclonedds-to-iox-gateway
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
#include <cpptoml.h> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why is this included?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good question.
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
…e possible Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
…oryx_eclipse into iox-eclipse-iceoryx#65-initial-implementation-cyclonedds-to-iox-gateway
…ion-iox-to-dds-gateway
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
…e possible Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
Signed-off-by: Ithier Jeff (CC-AD/EYF1) <[email protected]>
…ion-iox-to-dds-gateway
…s-to-iox-gateway' into iox-eclipse-iceoryx#65-initial-implementation-cyclonedds-to-iox-gateway Signed-off-by: Lehmann Marika (CC-AD/ESW1) <[email protected]>
254d97d
to
26dd024
Compare
template <typename channel_t = iox::dds::Channel<iox::popo::Publisher, iox::dds::data_reader_t>> | ||
class DDS2IceoryxGateway : public iox::dds::DDSGatewayGeneric<channel_t> | ||
{ | ||
using ChannelFactory = std::function<channel_t(const iox::capro::ServiceDescription)>; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When this doesn't need to be certified then std::function is fine
code contributed by @ithier