VTK-m  2.0
TypeCheck.h
Go to the documentation of this file.
1 //============================================================================
2 // Copyright (c) Kitware, Inc.
3 // All rights reserved.
4 // See LICENSE.txt for details.
5 //
6 // This software is distributed WITHOUT ANY WARRANTY; without even
7 // the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
8 // PURPOSE. See the above copyright notice for more information.
9 //============================================================================
10 #ifndef vtk_m_cont_arg_TypeCheck_h
11 #define vtk_m_cont_arg_TypeCheck_h
12 
13 namespace vtkm
14 {
15 namespace cont
16 {
17 namespace arg
18 {
19 
33 template <typename TypeCheckTag, typename Type>
34 struct TypeCheck
35 {
39  static constexpr bool value = false;
40 };
41 }
42 }
43 } // namespace vtkm::cont::arg
44 
45 #endif //vtk_m_cont_arg_TypeCheck_h
vtkm
Groups connected points that have the same field value.
Definition: Atomic.h:19
vtkm::cont::arg::TypeCheck
Class for checking that a type matches the semantics for an argument.
Definition: TypeCheck.h:34
vtkm::cont::arg::TypeCheck::value
static constexpr bool value
The static constant boolean value is set to true if the type is valid for the given check tag and fal...
Definition: TypeCheck.h:39