0026937: Eliminate NO_CXX_EXCEPTION macro support
[occt.git] / src / AppCont / AppCont_ContMatrices.hxx
1 // Copyright (c) 1995-1999 Matra Datavision
2 // Copyright (c) 1999-2014 OPEN CASCADE SAS
3 //
4 // This file is part of Open CASCADE Technology software library.
5 //
6 // This library is free software; you can redistribute it and/or modify it under
7 // the terms of the GNU Lesser General Public License 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.
11 //
12 // Alternatively, this file may be used under the terms of Open CASCADE
13 // commercial license or contractual agreement.
14
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(_WIN32) && !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  /* _WIN32 */
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);
40 Standard_EXPORT void InvMMatrix(const Standard_Integer classe, math_Matrix& M);
41
42 //__AppCont_API void MMatrix(const Standard_Integer classe, math_Matrix& M);
43 Standard_EXPORT void MMatrix(const Standard_Integer classe, math_Matrix& M);
44
45 //__AppCont_API void IBPMatrix(const Standard_Integer classe, math_Matrix& M);
46 Standard_EXPORT void IBPMatrix(const Standard_Integer classe, math_Matrix& M);
47
48 //__AppCont_API void IBTMatrix(const Standard_Integer classe, math_Matrix& M);
49 Standard_EXPORT void IBTMatrix(const Standard_Integer classe, math_Matrix& M);
50
51 //__AppCont_API void VBernstein(const Standard_Integer classe, 
52 Standard_EXPORT void VBernstein(const Standard_Integer classe, 
53                 const Standard_Integer nbpoints,
54                 math_Matrix&           M);
55
56
57
58 #endif