| 2963 | |
| 2964 | #ifndef OPENDDS_NO_CONTENT_FILTERED_TOPIC |
| 2965 | void |
| 2966 | DataReaderImpl::enable_filtering(ContentFilteredTopicImpl* cft) |
| 2967 | { |
| 2968 | cft->add_reader(*this); |
| 2969 | { |
| 2970 | ACE_Guard<ACE_Thread_Mutex> guard(content_filtered_topic_mutex_); |
| 2971 | content_filtered_topic_ = cft; |
| 2972 | } |
| 2973 | } |
| 2974 | |
| 2975 | DDS::ContentFilteredTopic_ptr |
| 2976 | DataReaderImpl::get_cf_topic() const |
no test coverage detected