Changeset 231 in pacpusframework for trunk/src/PacpusLib
- Timestamp:
- Nov 27, 2013, 1:30:18 PM (11 years ago)
- Location:
- trunk/src/PacpusLib
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/PacpusLib/ComponentBase.cpp
r206 r231 28 28 std::basic_ostream<_Elem, _Traits> & operator<<(std::basic_ostream<_Elem, _Traits> & os, const boost::program_options::variables_map & vm) 29 29 { 30 for (po::variables_map::const_iterator i = vm. cbegin(); i != vm.cend(); ++i) {30 for (po::variables_map::const_iterator i = vm.begin(); i != vm.end(); ++i) { 31 31 const po::variable_value & v = i->second; 32 32 if (v.empty()) { -
trunk/src/PacpusLib/ComponentManager.cpp
r207 r231 26 26 { 27 27 typedef QList<_ListElem> ListType; 28 for ( ListType::const_iterator it = list.cbegin(), itend = list.cend(); it != itend; ++it) {28 for (typename ListType::const_iterator it = list.cbegin(), itend = list.cend(); it != itend; ++it) { 29 29 os << *it << "\n"; 30 30 } -
trunk/src/PacpusLib/Log.cpp
r228 r231 34 34 PACPUSLIB_API std::basic_ostream<char>& operator<< (std::basic_ostream<char>& strm, QString const& s); 35 35 36 namespace pacpus { 36 namespace pacpus 37 { 37 38 38 39 void init_log_factories() … … 148 149 149 150 namespace pacpus 151 { 150 152 151 153 LogConfigurator::LogConfigurator() 152 154 {} 153 void LogConfigurator::configureLoggerWithFile(const char * /*configFilename*/) 155 156 LogConfigurator::~LogConfigurator() 157 {} 158 159 void LogConfigurator::configureLoggerWithFile(const char* /*configFilename*/) 154 160 {} 155 161 … … 157 163 158 164 #endif // PACPUS_USE_LOG 165 -
trunk/src/PacpusLib/XmlConfigFile.cpp
r165 r231 9 9 #include <Pacpus/kernel/Log.h> 10 10 11 #include <cassert> 11 12 #include <QFile> 12 13 #include <QTextStream>
Note:
See TracChangeset
for help on using the changeset viewer.