StoredConstMemberFunctionPointerCall0< T, Class > Class Template Reference


Detailed Description

template<typename T, typename Class>
class QtConcurrent::StoredConstMemberFunctionPointerCall0< T, Class >

Definition at line 231 of file qtconcurrentstoredfunctioncall.h.

#include <qtconcurrentstoredfunctioncall.h>

Inheritance diagram for StoredConstMemberFunctionPointerCall0< T, Class >:
Inheritance graph
[legend]

List of all members.

Public Member Functions

  StoredConstMemberFunctionPointerCall0 (T(Class::*_fn)() const, Class const *_object)
void  runFunctor ()

Constructor & Destructor Documentation

StoredConstMemberFunctionPointerCall0 ( T(Class::*)() const  _fn,
Class const *  _object 
) [inline]

Definition at line 234 of file qtconcurrentstoredfunctioncall.h.

    : fn(_fn), object(_object){ }

Member Function Documentation

void runFunctor ( ) [inline, virtual]

Implements RunFunctionTaskBase< T >.

Definition at line 237 of file qtconcurrentstoredfunctioncall.h.

    {
        this->result = (object->*fn)();
    }

The documentation for this class was generated from the following file: