//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. // This software is distributed WITHOUT ANY WARRANTY; without even // the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR // PURPOSE. See the above copyright notice for more information. // // Copyright 2015 National Technology & Engineering Solutions of Sandia, LLC (NTESS). // Copyright 2015 UT-Battelle, LLC. // Copyright 2015 Los Alamos National Security. // // Under the terms of Contract DE-NA0003525 with NTESS, // the U.S. Government retains certain rights in this software. // // Under the terms of Contract DE-AC52-06NA25396 with Los Alamos National // Laboratory (LANL), the U.S. Government retains certain rights in // this software. //============================================================================ #define vtkm_cont_ArrayHandle_cxx #include namespace vtkm { namespace cont { #define VTKM_ARRAYHANDLE_INSTANTIATE(Type) \ template class VTKM_CONT_EXPORT ArrayHandle; \ template class VTKM_CONT_EXPORT ArrayHandle, StorageTagBasic>; \ template class VTKM_CONT_EXPORT ArrayHandle, StorageTagBasic>; \ template class VTKM_CONT_EXPORT ArrayHandle, StorageTagBasic>; VTKM_ARRAYHANDLE_INSTANTIATE(char) VTKM_ARRAYHANDLE_INSTANTIATE(vtkm::Int8) VTKM_ARRAYHANDLE_INSTANTIATE(vtkm::UInt8) VTKM_ARRAYHANDLE_INSTANTIATE(vtkm::Int16) VTKM_ARRAYHANDLE_INSTANTIATE(vtkm::UInt16) VTKM_ARRAYHANDLE_INSTANTIATE(vtkm::Int32) VTKM_ARRAYHANDLE_INSTANTIATE(vtkm::UInt32) VTKM_ARRAYHANDLE_INSTANTIATE(vtkm::Int64) VTKM_ARRAYHANDLE_INSTANTIATE(vtkm::UInt64) VTKM_ARRAYHANDLE_INSTANTIATE(vtkm::Float32) VTKM_ARRAYHANDLE_INSTANTIATE(vtkm::Float64) #undef VTKM_ARRAYHANDLE_INSTANTIATE } } // end vtkm::cont