|
| 1 | +/****************************************************************************** |
| 2 | +* SOFA, Simulation Open-Framework Architecture * |
| 3 | +* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * |
| 4 | +* * |
| 5 | +* This program is free software; you can redistribute it and/or modify it * |
| 6 | +* under the terms of the GNU Lesser General Public License as published by * |
| 7 | +* the Free Software Foundation; either version 2.1 of the License, or (at * |
| 8 | +* your option) any later version. * |
| 9 | +* * |
| 10 | +* This program is distributed in the hope that it will be useful, but WITHOUT * |
| 11 | +* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * |
| 12 | +* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * |
| 13 | +* for more details. * |
| 14 | +* * |
| 15 | +* You should have received a copy of the GNU Lesser General Public License * |
| 16 | +* along with this program. If not, see <http://www.gnu.org/licenses/>. * |
| 17 | +******************************************************************************* |
| 18 | +* Authors: The SOFA Team and external contributors (see Authors.txt) * |
| 19 | +* * |
| 20 | +* Contact information: contact@sofa-framework.org * |
| 21 | +******************************************************************************/ |
| 22 | +#define SOFA_TYPE_MATSYM_CPP |
| 23 | + |
| 24 | +#include <sofa/type/MatSym.h> |
| 25 | + |
| 26 | +namespace sofa::type |
| 27 | +{ |
| 28 | + |
| 29 | +template class SOFA_TYPE_API MatSym< 1, float>; |
| 30 | +template class SOFA_TYPE_API MatSym< 2, float>; |
| 31 | +template class SOFA_TYPE_API MatSym< 3, float>; |
| 32 | +template class SOFA_TYPE_API MatSym< 4, float>; |
| 33 | +template class SOFA_TYPE_API MatSym< 6, float>; |
| 34 | +template class SOFA_TYPE_API MatSym< 9, float>; |
| 35 | +template class SOFA_TYPE_API MatSym<12, float>; |
| 36 | +template class SOFA_TYPE_API MatSym<24, float>; |
| 37 | + |
| 38 | +template class SOFA_TYPE_API MatSym< 1, double>; |
| 39 | +template class SOFA_TYPE_API MatSym< 2, double>; |
| 40 | +template class SOFA_TYPE_API MatSym< 3, double>; |
| 41 | +template class SOFA_TYPE_API MatSym< 4, double>; |
| 42 | +template class SOFA_TYPE_API MatSym< 6, double>; |
| 43 | +template class SOFA_TYPE_API MatSym< 9, double>; |
| 44 | +template class SOFA_TYPE_API MatSym<12, double>; |
| 45 | +template class SOFA_TYPE_API MatSym<24, double>; |
| 46 | + |
| 47 | +} // namespace sofa::type |
0 commit comments