ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/outil/src/ot_quadrature_gauss.h
Revision: 283
Committed: Tue Sep 13 21:11:20 2011 UTC (13 years, 10 months ago) by francois
Content type: text/plain
Original Path: magic/lib/outil/src/ot_quadrature_gauss.h
File size: 550 byte(s)
Log Message:
structure de l'écriture

File Contents

# User Rev Content
1 francois 283 //---------------------------------------------------------------------------
2    
3     #ifndef ot_quadrature_gaussH
4     #define ot_quadrature_gaussH
5     //---------------------------------------------------------------------------
6    
7    
8     #ifdef WINDOWS_VERSION
9     #ifdef BUILT_DLL_OUTIL
10     #define DLLPORTOUTIL __declspec(dllexport)
11     #else
12     #define DLLPORTOUTIL __declspec(dllimport)
13     #endif
14     #else
15     #define DLLPORTOUTIL
16     #endif
17    
18     class DLLPORTOUTIL OT_QUADRATURE_GAUSS {
19     public:
20     static void gauss_legendre_points(double x1, double x2, double x[], double w[], int n);
21     };
22    
23     #endif
24