vtk-m2/vtkm/filter/GhostCellRemove.h

41 lines
1.2 KiB
C
Raw Normal View History

2018-09-06 15:39:04 +00:00
//============================================================================
// Copyright (c) Kitware, Inc.
// All rights reserved.
// See LICENSE.txt for details.
2019-04-15 23:24:21 +00:00
//
2018-09-06 15:39:04 +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.
//============================================================================
2019-03-25 13:08:16 +00:00
#ifndef vtk_m_filter_GhostCellRemove_h
#define vtk_m_filter_GhostCellRemove_h
2018-09-06 15:39:04 +00:00
2022-01-10 16:15:30 +00:00
#include <vtkm/Deprecated.h>
#include <vtkm/filter/entity_extraction/GhostCellRemove.h>
2018-09-06 15:39:04 +00:00
namespace vtkm
{
namespace filter
{
2022-01-10 16:15:30 +00:00
VTKM_DEPRECATED(
1.8,
"Use vtkm/filter/entity_extraction/GhostCellRemove.h instead of vtkm/filter/GhostCellRemove.h.")
inline void GhostCellRemove_deprecated() {}
2018-09-06 15:39:04 +00:00
2022-01-10 16:15:30 +00:00
inline void GhostCellRemove_deprecated_warning()
2018-09-06 15:39:04 +00:00
{
2022-01-10 16:15:30 +00:00
GhostCellRemove_deprecated();
}
2018-09-06 15:39:04 +00:00
2022-01-10 16:15:30 +00:00
class VTKM_DEPRECATED(1.8, "Use vtkm::filter::entity_extraction::GhostCellRemove.") GhostCellRemove
: public vtkm::filter::entity_extraction::GhostCellRemove
{
using entity_extraction::GhostCellRemove::GhostCellRemove;
2018-09-06 15:39:04 +00:00
};
2022-01-10 16:15:30 +00:00
2018-09-06 15:39:04 +00:00
}
} // namespace vtkm::filter
2022-01-10 16:15:30 +00:00
#endif //vtk_m_filter_GhostCellRemove_h