Home ⌂Doc Index ◂Up ▴
Intel(R) Threading Building Blocks Doxygen Documentation  version 4.2.3
tbb::interface6::internal::filter_node_leaf< T, U, Body > Class Template Reference

Node in parse tree representing result of make_filter. More...

#include <pipeline.h>

Inheritance diagram for tbb::interface6::internal::filter_node_leaf< T, U, Body >:
Collaboration diagram for tbb::interface6::internal::filter_node_leaf< T, U, Body >:

Public Member Functions

 filter_node_leaf (tbb::filter::mode m, const Body &b)
 
- Public Member Functions inherited from tbb::interface6::internal::filter_node
void add_ref ()
 Increment reference count. More...
 
void remove_ref ()
 Decrement reference count and delete if it becomes zero. More...
 
virtual ~filter_node ()
 

Private Member Functions

void add_to (pipeline &p) __TBB_override
 Add concrete_filter to pipeline. More...
 

Private Attributes

const tbb::filter::mode mode
 
const Body body
 

Additional Inherited Members

- Protected Member Functions inherited from tbb::interface6::internal::filter_node
 filter_node ()
 

Detailed Description

template<typename T, typename U, typename Body>
class tbb::interface6::internal::filter_node_leaf< T, U, Body >

Node in parse tree representing result of make_filter.

Definition at line 558 of file pipeline.h.

Constructor & Destructor Documentation

◆ filter_node_leaf()

template<typename T , typename U , typename Body >
tbb::interface6::internal::filter_node_leaf< T, U, Body >::filter_node_leaf ( tbb::filter::mode  m,
const Body &  b 
)
inline

Definition at line 566 of file pipeline.h.

Member Function Documentation

◆ add_to()

template<typename T , typename U , typename Body >
void tbb::interface6::internal::filter_node_leaf< T, U, Body >::add_to ( pipeline &  )
inlineprivatevirtual

Add concrete_filter to pipeline.

Implements tbb::interface6::internal::filter_node.

Definition at line 561 of file pipeline.h.

561  {
562  concrete_filter<T,U,Body>* f = new concrete_filter<T,U,Body>(mode,body);
563  p.add_filter( *f );
564  }
void const char const char int ITT_FORMAT __itt_group_sync p

References tbb::interface6::internal::filter_node_leaf< T, U, Body >::body, tbb::interface6::internal::filter_node_leaf< T, U, Body >::mode, and p.

Member Data Documentation

◆ body

template<typename T , typename U , typename Body >
const Body tbb::interface6::internal::filter_node_leaf< T, U, Body >::body
private

◆ mode

template<typename T , typename U , typename Body >
const tbb::filter::mode tbb::interface6::internal::filter_node_leaf< T, U, Body >::mode
private

The documentation for this class was generated from the following file:

Copyright © 2005-2020 Intel Corporation. All Rights Reserved.

Intel, Pentium, Intel Xeon, Itanium, Intel XScale and VTune are registered trademarks or trademarks of Intel Corporation or its subsidiaries in the United States and other countries.

* Other names and brands may be claimed as the property of others.