Im folgenden Beispiel frage ich mich, ob es eine Alternative zu boost::mpl::for_each
gibt, die einen Functor ohne Argumente aufruft.boost :: mpl :: for_each ohne Instanziierung
#include <boost/mpl/vector.hpp>
#include <boost/mpl/for_each.hpp>
struct EasyFixEngineA { static const char* const name() { return "a"; } };
struct EasyFixEngineB { static const char* const name() { return "b"; } };
struct Registrator {
// Would prefer a template<class T> void operator()()
template<class T> void operator()(T t) {
RegisterInFactory<EasyFixEngine, T> dummy(T::name());
}
};
// ...
typedef boost::mpl::vector<EasyFixEngineA,EasyFixEngineB> Engines;
boost::mpl::for_each<Engines>(Registrator());
Es scheint, wie for_each
ist default-Instanziierung die Typen.
Danke, funktioniert wie ein Charme :) – abergmeier