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/reverse.hh

14 lines
223 B
C++

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