2 * This program is free software: you can redistribute it and/or modify
3 * it under the terms of the GNU Lesser General Public License as
4 * published by the Free Software Foundation, either version 3 of the
5 * License, or (at your option) any later version.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 * @file FunctorOnCells.ih
19 * @author Jeremy Levallois (\c jeremy.levallois@liris.cnrs.fr )
20 * Laboratoire d'InfoRmatique en Image et Systèmes d'information - LIRIS (CNRS, UMR 5205), INSA-Lyon, France
21 * LAboratoire de MAthématiques - LAMA (CNRS, UMR 5127), Université de Savoie, France
25 * Implementation of inline methods defined in FunctorOnCells.h
27 * This file is part of the DGtal library.
31//////////////////////////////////////////////////////////////////////////////
33//////////////////////////////////////////////////////////////////////////////
35///////////////////////////////////////////////////////////////////////////////
36// IMPLEMENTATION of inline methods.
37///////////////////////////////////////////////////////////////////////////////
39///////////////////////////////////////////////////////////////////////////////
40// ----------------------- Standard services ------------------------------
45template <typename TF, typename TKS>
47DGtal::FunctorOnCells<TF, TKS>::~FunctorOnCells()
51///////////////////////////////////////////////////////////////////////////////
52// Interface - public :
55 * Writes/Displays the object on an output stream.
56 * @param out the output stream where the object is written.
58template <typename TF, typename TKS>
61DGtal::FunctorOnCells<TF, TKS>::selfDisplay ( std::ostream & out ) const
63 out << "[FunctorOnCells]";
67 * Checks the validity/consistency of the object.
68 * @return 'true' if the object is valid, 'false' otherwise.
70template <typename TF, typename TKS>
73DGtal::FunctorOnCells<TF, TKS>::isValid() const
80///////////////////////////////////////////////////////////////////////////////
81// Implementation of inline functions //
83template <typename TF, typename TKS>
86DGtal::operator<< ( std::ostream & out,
87 const FunctorOnCells<TF, TKS> & object )
89 object.selfDisplay( out );
94///////////////////////////////////////////////////////////////////////////////