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

14 lines
233 B
C++

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