| 15 | namespace Test { |
| 16 | |
| 17 | Writer::Writer( |
| 18 | ::DDS::DataWriter_ptr writer, |
| 19 | const PublicationProfile& profile, |
| 20 | bool verbose |
| 21 | |
| 22 | ) : writer_( ::DDS::DataWriter::_duplicate( writer)), |
| 23 | publicationId_(writer->get_instance_handle()), |
| 24 | profile_( profile), |
| 25 | verbose_( verbose), |
| 26 | done_( false), |
| 27 | messages_( 0) |
| 28 | { |
| 29 | } |
| 30 | |
| 31 | Writer::~Writer() |
| 32 | { |
nothing calls this directly
no test coverage detected