VTK-m  2.0
Classes | Namespaces | Macros
ExecutionAndControlObjectBase.h File Reference
#include <vtkm/cont/ExecutionObjectBase.h>

Go to the source code of this file.

Classes

struct  vtkm::cont::ExecutionAndControlObjectBase
 Base ExecutionAndControlObjectBase class. More...
 

Namespaces

 vtkm
 Groups connected points that have the same field value.
 
 vtkm::cont
 VTK-m Control Environment.
 

Macros

#define VTKM_IS_EXECUTION_AND_CONTROL_OBJECT(execObject)
 Checks that the argument is a proper execution object. More...
 

Macro Definition Documentation

◆ VTKM_IS_EXECUTION_AND_CONTROL_OBJECT

#define VTKM_IS_EXECUTION_AND_CONTROL_OBJECT (   execObject)
Value:
static_assert(::vtkm::cont::internal::IsExecutionAndControlObjectBase<execObject>::value, \
"Provided type is not a subclass of vtkm::cont::ExecutionAndControlObjectBase."); \
static_assert(::vtkm::cont::internal::HasPrepareForExecution<execObject>::value, \
"Provided type does not have requisite PrepareForExecution method."); \
static_assert(::vtkm::cont::internal::HasPrepareForControl<execObject>::value, \
"Provided type does not have requisite PrepareForControl method.")

Checks that the argument is a proper execution object.