| 7 | #include "dds/DCPS/WaitSet.h" |
| 8 | |
| 9 | Puller::Puller(const Factory& f, |
| 10 | const DDS::DomainParticipantFactory_var& factory, |
| 11 | const DDS::DomainParticipant_var& participant, |
| 12 | const DDS::DataReaderListener_var& listener) : |
| 13 | dpf(factory), |
| 14 | dp(participant), |
| 15 | topic(f.topic(dp)), |
| 16 | sub(f.subscriber(dp)), |
| 17 | reader_(f.reader(sub, topic, listener)) { } |
| 18 | |
| 19 | Puller::Puller(const Factory& f, |
| 20 | const DDS::DomainParticipantFactory_var& factory, |
nothing calls this directly
no test coverage detected