0024428: Implementation of LGPL license
[occt.git] / src / AppCont / AppCont_ContMatrices.hxx
CommitLineData
b311480e 1// Copyright (c) 1995-1999 Matra Datavision
973c2be1 2// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 3//
973c2be1 4// This file is part of Open CASCADE Technology software library.
b311480e 5//
973c2be1 6// This library is free software; you can redistribute it and / or modify it
7// under the terms of the GNU Lesser General Public version 2.1 as published
8// by the Free Software Foundation, with special exception defined in the file
9// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
10// distribution for complete text of the license and disclaimer of any warranty.
b311480e 11//
973c2be1 12// Alternatively, this file may be used under the terms of Open CASCADE
13// commercial license or contractual agreement.
b311480e 14
7fd59977 15#ifndef math_ContMatrices_HeaderFile
16#define math_ContMatrices_HeaderFile
17#include <math_Vector.hxx>
18#include <Standard_Real.hxx>
19
20//#ifndef __AppCont_API
21//#if defined(WNT) && !defined(HAVE_NO_DLL)
22//# ifdef __AppCont_DLL
23//# define __AppCont_API __declspec( dllexport )
24//# else
25//# define __AppCont_API __declspec( dllimport )
26//# endif /* __AppCont_DLL */
27//# else
28//# define __AppCont_API
29//# endif /* WNT */
30//#endif /* __AppCont_API */
31
32
33// Stockage des matrices de resolution d approxiamtion continue.
34// La classe est limitee a 26 pour MMatrix et InvMMatrix, (pas de contraintes)
35// pour IBPMatrix (contraintes de passage aux extremites)
36// et IBTMatrix (contraintes de tangence aux extremites).
37
38
39//__AppCont_API void InvMMatrix(const Standard_Integer classe, math_Matrix& M);
40Standard_EXPORT void InvMMatrix(const Standard_Integer classe, math_Matrix& M);
41
42//__AppCont_API void MMatrix(const Standard_Integer classe, math_Matrix& M);
43Standard_EXPORT void MMatrix(const Standard_Integer classe, math_Matrix& M);
44
45//__AppCont_API void IBPMatrix(const Standard_Integer classe, math_Matrix& M);
46Standard_EXPORT void IBPMatrix(const Standard_Integer classe, math_Matrix& M);
47
48//__AppCont_API void IBTMatrix(const Standard_Integer classe, math_Matrix& M);
49Standard_EXPORT void IBTMatrix(const Standard_Integer classe, math_Matrix& M);
50
51//__AppCont_API void VBernstein(const Standard_Integer classe,
52Standard_EXPORT void VBernstein(const Standard_Integer classe,
53 const Standard_Integer nbpoints,
54 math_Matrix& M);
55
56
57
58#endif