Changeset 349 in pacpusframework
- Timestamp:
- Sep 23, 2015, 9:35:59 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/Pacpus/kernel/ComponentBase.h
r312 r349 101 101 /// @return Value of the current state. 102 102 COMPONENT_STATE getState(); 103 COMPONENT_STATE state(); 103 104 104 105 /// Checks whether the component if configurer or not. … … 109 110 /// @return Name of the component. 110 111 QString getName() const; 112 QString name() const; 111 113 112 114 /// @returns @b true if the component has been started and is active (working) -
trunk/scripts/build-linux.sh
r348 r349 35 35 -DPACPUS_USE_LOG=TRUE -DCMAKE_BUILD_TYPE=Release \ 36 36 -DPACPUS_INSTALL_WITH_VERSION_NUMBER=TRUE 37 make 37 make -j4 38 38 sudo make install 39 39 cmake .. -DPACPUS_INSTALL_DIR=$1 -DPACPUS_INSTALL_3RD=TRUE \ 40 40 -DPACPUS_USE_LOG=TRUE -DCMAKE_BUILD_TYPE=Debug 41 41 -DPACPUS_INSTALL_WITH_VERSION_NUMBER=TRUE \ 42 make 42 make -j4 43 43 sudo make install 44 44 echo "Build finished" -
trunk/src/FileLib/test/CMakeLists.txt
r314 r349 44 44 ) 45 45 46 if(WIN32) 47 list(APPEND LIBS 48 optimized FileLib debug FileLib_d 49 optimized PacpusLib debug PacpusLib_d 50 ) 51 endif() 46 list(APPEND LIBS 47 optimized FileLib debug FileLib_d 48 optimized PacpusLib debug PacpusLib_d 49 ) 52 50 53 51 # LINK -
trunk/src/PacpusLib/ColorSeverityFormatter.hpp
r303 r349 303 303 } 304 304 305 BOOST_DELETED_FUNCTION(FormatSeverityWithColorsTerminal()) 305 //BOOST_DELETED_FUNCTION(FormatSeverityWithColorsTerminal()) 306 FormatSeverityWithColorsTerminal() = delete; 306 307 }; 307 308 -
trunk/src/PacpusLib/ComponentBase.cpp
r312 r349 207 207 } 208 208 209 // FIXME: this should be const. 210 ComponentBase::COMPONENT_STATE ComponentBase::state() 211 { 212 return getState(); 213 } 214 215 209 216 ComponentBase::COMPONENT_CONFIGURATION ComponentBase::configurationState() const 210 217 { … … 225 232 { 226 233 return m_componentName; 234 } 235 236 QString ComponentBase::name() const 237 { 238 return getName(); 227 239 } 228 240
Note:
See TracChangeset
for help on using the changeset viewer.