Changeset 120 in pacpusframework for branches/2.0-beta1/src/PacpusLib/ComponentManager.cpp
- Timestamp:
- Jul 15, 2013, 4:59:37 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0-beta1/src/PacpusLib/ComponentManager.cpp
r110 r120 263 263 LOG_WARN("component '" << componentName << "' does not exist"); 264 264 } else { 265 // Pacpus 2.0 : add input and output 266 component->addInput(); 267 component->addOutput(); 268 265 269 if (component->configuration_ == ComponentBase::CONFIGURATION_DELAYED) { 266 270 LOG_DEBUG("try to configure component '" << componentName << "'"); … … 299 303 int connectionPriority = cfg.getConnectionPriority(); 300 304 305 306 //TODO set connection mode from string 307 308 //InputInterfaceBase::GetLast; 309 //InputInterfaceBase::NeverSkip; 310 //InputInterfaceBase::TimeBounded; 311 312 301 313 if (!createConnection(connectionOutput, connectionInput, connectionType,connectionPriority)) { 302 314 LOG_ERROR("cannot create connection '" << connectionOutput+"=>"+connectionInput << "'"); 303 315 continue; 304 316 } 305 } 317 } // for 306 318 307 319 return componentMap_.count();
Note:
See TracChangeset
for help on using the changeset viewer.