This repository has been archived on 2021-03-01. You can view files and clone it, but cannot push or open issues or pull requests.
prpa/src/filterSample/merge.hh

14 lines
213 B
C++

#ifndef MERGE_HH_
# define MERGE_HH_
# include "tbb/pipeline.h"
class Merge: public tbb::filter
{
public:
Merge(): filter(tbb::filter::parallel) {}
void* operator()(void*);
};
#endif /* !MERGE_HH_ */