//============================================================================= // // 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 2012 Sandia Corporation. // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation, // the U.S. Government retains certain rights in this software. // //============================================================================= #ifndef vtk_m_filter_PolicyExtrude_h #define vtk_m_filter_PolicyExtrude_h #include #include #include #include namespace vtkm { namespace filter { struct VTKM_ALWAYS_EXPORT PolicyExtrude : vtkm::filter::PolicyBase { public: using UnstructuredCellSetList = vtkm::List; using AllCellSetList = vtkm::List; //Todo: add in Cylinder storage tag when it is written using CoordinateStorageList = vtkm::List; }; } } #endif