QtConcurrent-BlockingMapped-Other-Object-Member-Function-Bind

From Qt Wiki
Revision as of 11:46, 24 March 2016 by Wieland (talk | contribs) (clean-up)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This demonstrates how to pass each object in the container to a member function of different class instance using boost::bind. You can alternatively do this by overloading operator()

  1. include <QtConcurrentMap>
  2. include <QVector>
  3. include <boost/bind.hpp>
  4. include <iostream>

class Object{};

class MyClass { public:

float Test(const Object& object) const { return 1.0f; } // Note, this function MUST be const!

};

int main() {

QVector<Object> v;
Object a;
v.push_back(a);
MyClass myClass;
QVector<float> result = QtConcurrent::blockingMapped<QVector<float> >(v.begin(), v.end(), boost::bind(&MyClass::Test, &myClass, _1));
std::cout << result[0] << std::endl;
return 0;

}