QtConcurrent-BlockingMap-Member-Function-of-iterated-objects

From Qt Wiki
Revision as of 10:42, 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.

This demonstrates how to call a function on every object in the collection:


#include <QtConcurrentMap&gt;

  1. include <iostream&gt;

class MyClass
{
public:
void Test()
{
std::cout << "Test&quot; << std::endl;
}
};

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

QtConcurrent::blockingMap(v.begin(), v.end(), &MyClass::Test);

return 0;
}