QtConcurrent-BlockingMapped-Other-Object-Member-Function-Bind: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
(Add "cleanup" tag)
(Convert ExpressionEngine links)
Line 1: Line 1:
{{Cleanup | reason=Auto-imported from ExpressionEngine.}}
{{Cleanup | reason=Auto-imported from ExpressionEngine.}}


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


<code>
<code>

Revision as of 15:25, 4 March 2015

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 using boost::bind. You can alternatively do this by overloading operator()

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

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<float> result = QtConcurrent::blockingMapped<QVector<float> >(v.begin(), v.end(), boost::bind(&MyClass::Test, &myClass, _1));

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

return 0;

}