vtk-m2/vtkm/cont/tbb/internal/VirtualObjectTransferTBB.h

36 lines
1.2 KiB
C
Raw Normal View History

2017-03-29 14:48:43 +00:00
//============================================================================
// Copyright (c) Kitware, Inc.
// All rights reserved.
// See LICENSE.txt for details.
2019-04-15 23:24:21 +00:00
//
2017-03-29 14:48:43 +00:00
// 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.
//============================================================================
#ifndef vtk_m_cont_tbb_internal_VirtualObjectTransferTBB_h
#define vtk_m_cont_tbb_internal_VirtualObjectTransferTBB_h
#include <vtkm/cont/internal/VirtualObjectTransfer.h>
#include <vtkm/cont/internal/VirtualObjectTransferShareWithControl.h>
2017-05-18 14:51:24 +00:00
#include <vtkm/cont/tbb/internal/DeviceAdapterTagTBB.h>
2017-03-29 14:48:43 +00:00
2017-05-18 14:29:41 +00:00
namespace vtkm
{
namespace cont
{
namespace internal
{
2017-03-29 14:48:43 +00:00
2017-10-23 13:38:33 +00:00
template <typename VirtualDerivedType>
struct VirtualObjectTransfer<VirtualDerivedType, vtkm::cont::DeviceAdapterTagTBB> final
2017-10-23 13:38:33 +00:00
: VirtualObjectTransferShareWithControl<VirtualDerivedType>
2017-03-29 14:48:43 +00:00
{
using VirtualObjectTransferShareWithControl<
VirtualDerivedType>::VirtualObjectTransferShareWithControl;
2017-03-29 14:48:43 +00:00
};
}
}
} // vtkm::cont::internal
#endif // vtk_m_cont_tbb_internal_VirtualObjectTransferTBB_h