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

46 lines
1.6 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.
// 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 2017 National Technology & Engineering Solutions of Sandia, LLC (NTESS).
2017-03-29 14:48:43 +00:00
// Copyright 2017 UT-Battelle, LLC.
// Copyright 2017 Los Alamos National Security.
//
// Under the terms of Contract DE-NA0003525 with NTESS,
2017-03-29 14:48:43 +00:00
// 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.
//============================================================================
#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