| 114 | |
| 115 | template< typename ModelName, class InstanceTraits> |
| 116 | inline |
| 117 | DDS::DomainParticipant* |
| 118 | OpenDDS::Model::Service< ModelName, InstanceTraits>::createParticipant( |
| 119 | typename Participants::Values participant |
| 120 | ) |
| 121 | { |
| 122 | return this->participants_[participant] = this->delegate_.createParticipant( |
| 123 | this->modelData_.domain( participant), |
| 124 | this->modelData_.qos( participant), |
| 125 | this->modelData_.mask( participant), |
| 126 | this->configName(this->modelData_.transportConfigName(participant)) |
| 127 | ); |
| 128 | } |
| 129 | |
| 130 | template< typename ModelName, class InstanceTraits> |
| 131 | inline |
no test coverage detected