Subclass of task that represents doing nothing.
class empty_task;
#include "tbb/task.h"
An empty_task is a task that does nothing. It is useful as a continuation of a parent task when the continuation should do nothing except wait for its predecessors to complete.
namespace tbb { class empty_task: public task { /*override*/ task* execute() {return NULL;} }; }