QtConcurrent-BlockingMapped-Other-Object-Member-Function-Operator

From Qt Wiki
Revision as of 15:25, 4 March 2015 by AutoSpider (talk | contribs) (Convert ExpressionEngine links)
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 article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine.
Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean.

Demonstrates how to pass each object in the container to a member function of different class instance. You can alternatively do this using boost::bind

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

class Object{};

class MyClass { public:

float operator()(const Object&amp; object) { return 1.0f;}
typedef float result_type;

};

int main() {

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

MyClass myClass;

QVector<float> result = QtConcurrent::blockingMapped<QVector<float> >(v.begin(), v.end(), myClass);

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

return 0;

}