vtk-m2/vtkm/filter/Histogram.h

34 lines
943 B
C
Raw Normal View History

2016-08-10 20:34:21 +00:00
//============================================================================
// Copyright (c) Kitware, Inc.
// All rights reserved.
// See LICENSE.txt for details.
2019-04-15 23:24:21 +00:00
//
2016-08-10 20:34:21 +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_filter_Histogram_h
#define vtk_m_filter_Histogram_h
2022-01-17 16:18:42 +00:00
#include <vtkm/Deprecated.h>
#include <vtkm/filter/density_estimate/Histogram.h>
2016-08-10 20:34:21 +00:00
2017-05-18 14:29:41 +00:00
namespace vtkm
{
namespace filter
{
2022-01-17 16:18:42 +00:00
VTKM_DEPRECATED(1.8,
"Use vtkm/filter/density_estimate/Histogram.h instead of vtkm/filter/Histogram.h.")
inline void Histogram_deprecated() {}
2016-08-10 20:34:21 +00:00
2022-01-17 16:18:42 +00:00
inline void Histogram_deprecated_warning()
{
Histogram_deprecated();
}
2016-08-10 20:34:21 +00:00
}
} // namespace vtkm::filter
2022-01-17 16:18:42 +00:00
#endif //vtk_m_filter_Histogram_h