Page MenuHomec4science

filter_compatibility.hh
No OneTemporary

File Metadata

Created
Wed, Jul 10, 10:22

filter_compatibility.hh

/**
* @file filter_compatibility.hh
*
* @author Guillaume Anciaux <guillaume.anciaux@epfl.ch>
*
* @date Wed Apr 03 23:50:25 2013
*
* @brief Generic filter to be used internally by LM
*
* @section LICENSE
*
* Copyright (©) 2010-2011 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* LibMultiScale is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* LibMultiScale 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 Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with LibMultiScale. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef __LIBMULTISCALE_FILTER_COMPATIBILITY_HH__
#define __LIBMULTISCALE_FILTER_COMPATIBILITY_HH__
/* -------------------------------------------------------------------------- */
#include "filter.hh"
/* -------------------------------------------------------------------------- */
__BEGIN_LIBMULTISCALE__
template <typename _Input>
class FilterCompatibility : public Filter<_Input> {
/* ------------------------------------------------------------------------ */
/* Constructors/Destructors */
/* ------------------------------------------------------------------------ */
public:
FilterCompatibility(const FilterID & name, UInt dim):Filter<_Input>(name,dim){};
FilterCompatibility(const FilterID & name, _Input & container,UInt dim):
Filter<_Input>(name,container,dim){};
virtual ~FilterCompatibility(){};
/* ------------------------------------------------------------------------ */
/* Methods */
/* ------------------------------------------------------------------------ */
public:
void build(){};
void build(_Input & input){};
void visit(ComponentLMOut<_Input> & obj){LM_TOIMPLEMENT;};
};
__END_LIBMULTISCALE__
/* -------------------------------------------------------------------------- */
#endif /* __LIBMULTISCALE_FILTER_COMPATIBILITY_HH__ */

Event Timeline