| 241 | |
| 242 | template< typename ModelName, class InstanceTraits> |
| 243 | inline |
| 244 | void |
| 245 | OpenDDS::Model::Service< ModelName, InstanceTraits>::createPublisher( |
| 246 | typename Publishers::Values publisher |
| 247 | ) |
| 248 | { |
| 249 | typename Participants::Values participant = this->modelData_.participant( publisher); |
| 250 | |
| 251 | if( !this->participants_[ participant]) { |
| 252 | this->createParticipant( participant); |
| 253 | } |
| 254 | |
| 255 | this->publishers_[ publisher] = this->delegate_.createPublisher( |
| 256 | this->participants_[ participant], |
| 257 | this->modelData_.qos( publisher), |
| 258 | this->modelData_.mask( publisher), |
| 259 | this->configName(this->modelData_.transportConfigName(publisher)) |
| 260 | ); |
| 261 | } |
| 262 | |
| 263 | template< typename ModelName, class InstanceTraits> |
| 264 | inline |
no test coverage detected