template<class BaseLhs, class BaseRhs = BaseLhs, typename ReturnType = void, template< class, class > class CastingPolicy = vtkDispatcherCommon::vtkCaster>
class vtkDoubleDispatcher< BaseLhs, BaseRhs, ReturnType, CastingPolicy >
Dispatch to functor based on two pointer types.
vtkDoubleDispatcher is a class that allows calling a functor based on the derived types of two pointers. This form of dynamic dispatching allows the conversion of runtime polymorphism to a compile time polymorphism. For example it can be used as a replacement for the vtkTemplateMacro when you want to know multiple parameter types, or need to call a specialized implementation for a subset
Note: By default the return type is void.
The functors that are passed around can contain state, and are allowed to be const or non const. If you are using a functor that does have state, make sure your copy constructor is correct.
struct functor{
template<typename T,typename U>
void operator()(T& t,U& u) const
{
}
};
Here is an example of using the double dispatcher.
\code
dispatcher.Go(ptr1,ptr2);
- See also
- vtkDispatcher
- Tests:
- vtkDoubleDispatcher (Tests)
Definition at line 85 of file vtkDoubleDispatcher.h.
template<class BaseLhs, class BaseRhs = BaseLhs, typename ReturnType = void, template< class, class > class CastingPolicy = vtkDispatcherCommon::vtkCaster>
template<class SomeLhs , class SomeRhs , class Functor >
Add in a functor that is mapped to the combination of the two template parameters passed in. When instances of the two parameters are passed in on the Go method we will call the functor and pass along the given parameters. Note: This copies the functor so pass stateful functors by pointer.
Definition at line 99 of file vtkDoubleDispatcher.h.
template<class BaseLhs, class BaseRhs = BaseLhs, typename ReturnType = void, template< class, class > class CastingPolicy = vtkDispatcherCommon::vtkCaster>
template<class SomeLhs , class SomeRhs >
Remove a functor that is bound to the given parameter types. Will return true if we did remove a functor.
Definition at line 106 of file vtkDoubleDispatcher.h.
template<class BaseLhs , class BaseRhs , typename ReturnType , template< class, class > class CastingPolicy>
ReturnType vtkDoubleDispatcher< BaseLhs, BaseRhs, ReturnType, CastingPolicy >::Go |
( |
BaseLhs * |
lhs, |
|
|
BaseRhs * |
rhs |
|
) |
| |
Given two pointers of objects that derive from the BaseLhs and BaseRhs we find the matching functor that was added, and call it passing along the given parameters. It should be noted that the functor will be called with the parameters being the derived type that Functor was registered with. Note: This will only find exact matches. So if you add functor to find vtkDataArray,vtkDataArray, it will not be called if passed with vtkDoubleArray,vtkDoubleArray.
dispatcher.
Go( dataArray1, dataArray2);
Definition at line 201 of file vtkDoubleDispatcher.h.