// This file is part of ff3d - http://www.freefem.org/ff3d // Copyright (C) 2001, 2002, 2003 Stéphane Del Pino // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2, or (at your option) // any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software Foundation, // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // $Id: MeshSimplifier.hpp,v 1.1 2003/04/27 16:57:38 delpinux Exp $ #ifndef MESHSIMPLIFIER_HPP #define MESHSIMPLIFIER_HPP #include class MeshSimplifier : public MeshGenerator { private: template void __proceed(const MeshType& m); public: /** * Constructor * * @param originalMesh the mesh to simplify * */ MeshSimplifier(ReferenceCounting originalMesh); /** * Copy constructor * */ MeshSimplifier(const MeshSimplifier& m); /** * Destructor * * * @return */ ~MeshSimplifier() { ; } }; #endif // MESHSIMPLIFIER_HPP