Changeset 272 in pacpusframework
- Timestamp:
- Mar 13, 2014, 10:41:41 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/Pacpus/kernel/ComponentBase.h
r206 r272 30 30 #include <Pacpus/kernel/XmlComponentConfig.h> 31 31 32 #include <boost/program_options/options_description.hpp> 33 #include <boost/program_options/value_semantic.hpp> 32 34 #include <QString> 33 35 #include <QMap> 34 35 #include <boost/program_options/options_description.hpp>36 #include <boost/program_options/value_semantic.hpp>37 36 #include <string> 38 37 … … 135 134 typedef QMap<QString, OutputInterfaceBase *> OutputsMap; 136 135 137 // TODO: use std::function<void (const DataType &)>138 // TODO: use std::mem_fun<void (const DataType &)>139 136 template <typename DataType, class ComponentType, typename Function> 140 137 void addInput(const char * name, Function function) -
trunk/src/PacpusLib/ComponentBase.cpp
r271 r272 23 23 vector<string> convertAttributesToArgumentVector(const QDomNamedNodeMap & attributes); 24 24 25 namespace std { 25 namespace std 26 { 26 27 27 28 template <typename _Elem, typename _Traits>
Note:
See TracChangeset
for help on using the changeset viewer.