Page MenuHomec4science

aka_fwd.hh
No OneTemporary

File Metadata

Created
Sat, Jun 22, 00:29

aka_fwd.hh

/**
* Copyright (©) 2012-2023 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* This file is part of Akantu
*
* 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 <http://www.gnu.org/licenses/>.
*/
/* -------------------------------------------------------------------------- */
#ifndef AKANTU_FWD_HH_
#define AKANTU_FWD_HH_
namespace cppargparse {
class ArgumentParser;
}
namespace akantu {
// forward declaration
template <int dim, class model_type> struct ContactData;
template <typename T, bool is_scal = aka::is_scalar<T>::value> class Array;
template <typename T, typename SupportType = ElementType>
class ElementTypeMapArray;
template <class T> class SpatialGrid;
// Model element
template <class ModelPolicy> class ModelElement;
extern const Array<Int> empty_filter;
class Parser;
class ParserSection;
extern Parser static_parser; // NOLINT
extern cppargparse::ArgumentParser static_argparser; // NOLINT
class Mesh;
class SparseMatrix;
} // namespace akantu
namespace aka {
template <class T> struct is_array : public std::false_type {};
template <class T> struct is_array<akantu::Array<T>> : public std::true_type {};
} // namespace aka
#endif /* AKANTU_FWD_HH_ */

Event Timeline