Changeset 120 in pacpusframework for branches/2.0-beta1/src/PacpusLib
- Timestamp:
- Jul 15, 2013, 4:59:37 PM (11 years ago)
- Location:
- branches/2.0-beta1/src/PacpusLib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.0-beta1/src/PacpusLib/CMakeLists.txt
r111 r120 65 65 ${PACPUS_INCLUDE_DIR}/Pacpus/kernel/inputOutputInterface.h 66 66 ${PACPUS_INCLUDE_DIR}/Pacpus/kernel/PacpusEvent.h 67 #${PACPUS_INCLUDE_DIR}/Pacpus/kernel/ CommunicationComponent.h67 #${PACPUS_INCLUDE_DIR}/Pacpus/kernel/pacpusStruct.h 68 68 69 69 ./ComponentBase.cpp … … 75 75 ./XmlConfigFile.cpp 76 76 ./inputOutputBase.cpp 77 #./pacpusStruct.cpp 77 78 ) 78 79 … … 82 83 ) 83 84 84 85 qt5_wrap_cpp( 85 86 PROJECT_MOC_SRCS 86 87 ${FILES_TO_MOC} … … 97 98 98 99 if(UNIX) 99 set(LIBS optimized FileLib debug FileLib_d)100 set(OPT_LIBRARIES optimized FileLib debug FileLib_d) 100 101 else() 101 set(LIBS 102 optimized ROAD_TIME debug ROAD_TIME_d 103 ) 102 set(OPT_LIBRARIES optimized ROAD_TIME debug ROAD_TIME_d) 104 103 endif() 105 104 … … 111 110 ${QT_LIBRARIES} 112 111 ${PACPUS_DEPENDENCIES_LIB} 113 ${ LIBS}112 ${OPT_LIBRARIES} 114 113 ) 115 114 -
branches/2.0-beta1/src/PacpusLib/ComponentBase.cpp
r110 r120 104 104 } 105 105 } 106 107 void ComponentBase::addInput() 108 { 109 110 } 111 112 void ComponentBase::addOutput() 113 { 114 115 } -
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.