vtk-m2/vtkm/filter/Entropy.h

33 lines
909 B
C
Raw Normal View History

2017-05-23 16:06:31 +00:00
//============================================================================
// Copyright (c) Kitware, Inc.
// All rights reserved.
// See LICENSE.txt for details.
2019-04-15 23:24:21 +00:00
//
2017-05-23 16:06:31 +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_Entropy_h
#define vtk_m_filter_Entropy_h
2022-01-19 14:20:48 +00:00
#include <vtkm/Deprecated.h>
#include <vtkm/filter/density_estimate/Entropy.h>
2017-05-23 16:06:31 +00:00
namespace vtkm
{
namespace filter
{
2017-05-23 16:06:31 +00:00
2022-01-19 14:20:48 +00:00
VTKM_DEPRECATED(1.8, "Use vtkm/filter/density_estimate/Entropy.h instead of vtkm/filter/Entropy.h.")
inline void Entropy_deprecated() {}
2017-05-23 16:06:31 +00:00
2022-01-19 14:20:48 +00:00
inline void Entropy_deprecated_warning()
{
Entropy_deprecated();
}
2017-05-23 16:06:31 +00:00
}
} // namespace vtkm::filter
2022-01-19 14:20:48 +00:00
#endif //vtk_m_filter_Entropy_h