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

From Qt Wiki
Revision as of 10:57, 24 February 2015 by Maintenance script (talk | contribs)
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.

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()":http://developer.qt.nokia.com/wiki/QtConcurrent-BlockingMapped-Other-Object-Member-Function-Operator


#include <QtConcurrentMap&gt;
#include <QVector&gt;

  1. include <boost/bind.hpp&gt;
  1. include <iostream&gt;

class Object{};

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

int main()
{
QVector&amp;lt;Object&amp;gt; v;
Object a;
v.push_back(a);

MyClass myClass;

QVector&lt;float&gt; result = QtConcurrent::blockingMapped&lt;QVector&lt;float&gt; >(v.begin(), v.end(), boost::bind(&MyClass::Test, &myClass, _1));

std::cout << result[0] << std::endl;
return 0;
}