diff --git a/src/mesh/element_type_map_filter.hh b/src/mesh/element_type_map_filter.hh index 1a62a6c1b..3f379309f 100644 --- a/src/mesh/element_type_map_filter.hh +++ b/src/mesh/element_type_map_filter.hh @@ -1,316 +1,318 @@ /** * @file element_type_map_filter.hh * * @author Guillaume Anciaux * * @date creation: Tue Sep 02 2014 * @date last modification: Tue Sep 02 2014 * - * @brief Filtered version based on a an akantu::ElementGroup of a akantu::ElementTypeMap + * @brief Filtered version based on a an akantu::ElementGroup of a + *akantu::ElementTypeMap * * @section LICENSE * * Copyright (©) 2014 EPFL (Ecole Polytechnique Fédérale de Lausanne) * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides) * * Akantu 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. * * Akantu 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 Akantu. If not, see . * */ #ifndef __AKANTU_BY_ELEMENT_TYPE_FILTER_HH__ #define __AKANTU_BY_ELEMENT_TYPE_FILTER_HH__ /* -------------------------------------------------------------------------- */ __BEGIN_AKANTU__ /* -------------------------------------------------------------------------- */ /* ArrayFilter */ /* -------------------------------------------------------------------------- */ -template -class ArrayFilter { +template class ArrayFilter { /* ------------------------------------------------------------------------ */ /* Typedefs */ - /* ------------------------------------------------------------------------ */ + /* ------------------------------------------------------------------------ */ public: - - /// standard iterator - template class iterator{ - inline bool operator!=(iterator & other){throw;}; - inline bool operator==(iterator & other){throw;}; - - inline iterator & operator++(){throw;}; - inline T operator*(){throw;return T();}; + template class iterator { + inline bool operator!=(iterator & other) { throw; }; + inline bool operator==(iterator & other) { throw; }; + + inline iterator & operator++() { throw; }; + inline T operator*() { + throw; + return T(); + }; }; /// const iterator - template