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

14 lines
223 B
C++

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