| 45 | } |
| 46 | |
| 47 | SubscriptionInstance::~SubscriptionInstance() |
| 48 | { |
| 49 | if (owns_handle_) { |
| 50 | const RcHandle<DataReaderImpl> reader = instance_state_->data_reader().lock(); |
| 51 | if (reader) { |
| 52 | reader->return_handle(instance_handle_); |
| 53 | } |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | bool SubscriptionInstance::matches(CORBA::ULong sample_states, CORBA::ULong view_states, CORBA::ULong instance_states) const |
| 58 | { |
nothing calls this directly
no test coverage detected