ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/outil/src/ot_quadrature_gauss.h
Revision: 27
Committed: Thu Jul 5 15:26:40 2007 UTC (18 years ago) by foucault
Content type: text/plain
Original Path: magic/lib/outil/outil/src/ot_quadrature_gauss.h
File size: 649 byte(s)
Log Message:

File Contents

# User Rev Content
1 foucault 27 //---------------------------------------------------------------------------
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