vtk-m2/vtkm/filter/WarpScalar.h
2022-02-01 11:51:01 -07:00

40 lines
1.1 KiB
C++

//============================================================================
// 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.
//============================================================================
#ifndef vtk_m_filter_WarpScalar_h
#define vtk_m_filter_WarpScalar_h
#include <vtkm/Deprecated.h>
#include <vtkm/filter/field_transform/WarpScalar.h>
namespace vtkm
{
namespace filter
{
VTKM_DEPRECATED(1.8,
"Use vtkm/filter/field_transform/WarpScalar.h instead of vtkm/filter/WarpScalar.h.")
inline void WarpScalar_deprecated() {}
inline void WarpScalar_deprecated_warning()
{
WarpScalar_deprecated();
}
class VTKM_DEPRECATED(1.8, "Use vtkm::filter::field_transform::WarpScalar.") WarpScalar
: public vtkm::filter::field_transform::WarpScalar
{
using field_transform::WarpScalar::WarpScalar;
};
}
} // namespace vtkm::filter
#endif //vtk_m_filter_WarpScalar_h