VoidStoredConstMemberFunctionCall0< T, Class > Class Template Reference


Detailed Description

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

Definition at line 169 of file qtconcurrentstoredfunctioncall.h.

#include <qtconcurrentstoredfunctioncall.h>

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

List of all members.

Public Member Functions

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

Constructor & Destructor Documentation

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

Definition at line 172 of file qtconcurrentstoredfunctioncall.h.

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

Member Function Documentation

void runFunctor ( ) [inline, virtual]

Implements RunFunctionTaskBase< T >.

Definition at line 175 of file qtconcurrentstoredfunctioncall.h.

    {
        (object.*fn)();
    }

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