diff --git a/src/model/materials/mfront_material.hh b/src/model/materials/mfront_material.hh index 8dc227e..34ba460 100644 --- a/src/model/materials/mfront_material.hh +++ b/src/model/materials/mfront_material.hh @@ -1,45 +1,44 @@ /* * SPDX-License-Indentifier: AGPL-3.0-or-later * * Copyright (©) 2016-2022 EPFL (École Polytechnique Fédérale de Lausanne), * Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published * by the Free Software Foundation, either version 3 of the License, 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 Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * */ /* -------------------------------------------------------------------------- */ #ifndef MFRONT_MATERIAL_HH #define MFRONT_MATERIAL_HH /* -------------------------------------------------------------------------- */ #include "material.hh" #include "model_type.hh" /* -------------------------------------------------------------------------- */ namespace tamaas { /* -------------------------------------------------------------------------- */ template class MFrontMaterial : Material { using parent = Material; using trait = typename parent::trait; static constexpr UInt dim = parent::trait::dimension; using Field = typename parent::Field; public: /// Constructor MFrontMaterial(std::string material); - }; } // namespace tamaas /* -------------------------------------------------------------------------- */ #endif // MFRONT_MATERIAL_HH