//============================================================================ // 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 Sandia Corporation. // Copyright 2015 UT-Battelle, LLC. // Copyright 2015 Los Alamos National Security. // // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, // 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 #ifdef VTKM_MSVC #define _VTKM_SHARED_PTR_INSTANTIATE(Type) \ template class VTKM_CONT_EXPORT std::shared_ptr< vtkm::cont::ArrayHandle::InternalStruct >; \ template class VTKM_CONT_EXPORT std::shared_ptr< vtkm::cont::ArrayHandle, vtkm::cont::StorageTagBasic>::InternalStruct >; \ template class VTKM_CONT_EXPORT std::shared_ptr< vtkm::cont::ArrayHandle, vtkm::cont::StorageTagBasic>::InternalStruct >; \ template class VTKM_CONT_EXPORT std::shared_ptr< vtkm::cont::ArrayHandle, vtkm::cont::StorageTagBasic>::InternalStruct >; _VTKM_SHARED_PTR_INSTANTIATE(char) _VTKM_SHARED_PTR_INSTANTIATE(vtkm::Int8) _VTKM_SHARED_PTR_INSTANTIATE(vtkm::UInt8) _VTKM_SHARED_PTR_INSTANTIATE(vtkm::Int16) _VTKM_SHARED_PTR_INSTANTIATE(vtkm::UInt16) _VTKM_SHARED_PTR_INSTANTIATE(vtkm::Int32) _VTKM_SHARED_PTR_INSTANTIATE(vtkm::UInt32) _VTKM_SHARED_PTR_INSTANTIATE(vtkm::Int64) _VTKM_SHARED_PTR_INSTANTIATE(vtkm::UInt64) _VTKM_SHARED_PTR_INSTANTIATE(vtkm::Float32) _VTKM_SHARED_PTR_INSTANTIATE(vtkm::Float64) #undef _VTKM_SHARED_PTR_INSTANTIATE #endif // VTKM_MSVC 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>; \ namespace internal { \ template class VTKM_CONT_EXPORT ArrayHandleExecutionManagerBase; \ template class VTKM_CONT_EXPORT ArrayHandleExecutionManagerBase, StorageTagBasic>; \ template class VTKM_CONT_EXPORT ArrayHandleExecutionManagerBase, StorageTagBasic>; \ template class VTKM_CONT_EXPORT ArrayHandleExecutionManagerBase, StorageTagBasic>; \ template class VTKM_CONT_EXPORT ArrayPortalFromIterators; \ template class VTKM_CONT_EXPORT ArrayPortalFromIterators*>; \ template class VTKM_CONT_EXPORT ArrayPortalFromIterators*>; \ template class VTKM_CONT_EXPORT ArrayPortalFromIterators*>; \ } /* end namespace internal */ _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