| 959 | |
| 960 | #ifndef OPENDDS_NO_MULTI_TOPIC |
| 961 | DDS::ReturnCode_t |
| 962 | SubscriberImpl::multitopic_reader_enabled(DDS::DataReader_ptr reader) |
| 963 | { |
| 964 | DDS::TopicDescription_var td = reader->get_topicdescription(); |
| 965 | CORBA::String_var topic = td->get_name(); |
| 966 | multitopic_reader_map_[topic.in()] = DDS::DataReader::_duplicate(reader); |
| 967 | return DDS::RETCODE_OK; |
| 968 | } |
| 969 | |
| 970 | void |
| 971 | SubscriberImpl::remove_from_datareader_set(DataReaderImpl* reader) |
nothing calls this directly
no test coverage detected