Main Page   Class Hierarchy   Compound List   File List   Compound Members  

intccq_.cpp

00001 /*=============================================================================
00002         File: intccq.cpp
00003      Purpose:       
00004     Revision: $Id: intccq_.cpp,v 1.2 2002/05/13 21:07:45 philosophil Exp $
00005   Created by: Philippe Lavoie          (3 Oct, 1996)
00006  Modified by: 
00007 
00008  Copyright notice:
00009           Copyright (C) 1996-1998 Philippe Lavoie
00010  
00011           This library is free software; you can redistribute it and/or
00012           modify it under the terms of the GNU Library General Public
00013           License as published by the Free Software Foundation; either
00014           version 2 of the License, or (at your option) any later version.
00015  
00016           This library is distributed in the hope that it will be useful,
00017           but WITHOUT ANY WARRANTY; without even the implied warranty of
00018           MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00019           Library General Public License for more details.
00020  
00021           You should have received a copy of the GNU Library General Public
00022           License along with this library; if not, write to the Free
00023           Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
00024 =============================================================================*/
00025 
00026 #include "intccq.cpp"
00027 
00028 namespace PLib {
00029 
00030 #ifdef NO_IMPLICIT_TEMPLATES
00031 
00032   template class ClassPO<float>;
00033   template class ClassPOvoid<float>;
00034   
00035   template void intccini(BasicArray<float> &w) ;
00036   template float intcc(ClassPO<float>* f, float a, float b, float eps, 
00037                        BasicArray<float> &w, float &err) ;
00038   template float integrate(ClassPO<float>* f, float a, float b, float eps, int n, float &err) ;
00039   template float intcc(ClassPOvoid<float>* f,void*, float a, float b, float eps, BasicArray<float> &w, float &err) ;
00040   template float integrate(ClassPOvoid<float>* f,void*, float a, float b, float eps, int n, float &err) ;
00041   template float intcc2(ClassPO<float>* f, float a, float b, float eps, 
00042                         BasicArray<float> w, float &err) ;
00043   template float integrate2(ClassPO<float>* f, float a, float b, float eps, int n, float &err) ;
00044   template float intcc2(ClassPOvoid<float>* f,void*, float a, float b, float eps, BasicArray<float> w, float &err) ;
00045   template float integrate2(ClassPOvoid<float>* f,void*, float a, float b, float eps, int n, float &err) ;
00046   
00047   
00048   template class ClassPO<double>;
00049   template class ClassPOvoid<double>;
00050   
00051   template void intccini(BasicArray<double> &w) ;
00052   template double intcc(ClassPO<double>* f, double a, double b, double eps, 
00053                         BasicArray<double> &w, double &err) ;
00054   template double integrate(ClassPO<double>* f, double a, double b, double eps, int n, double &err) ;
00055   template double intcc(ClassPOvoid<double>* f,void*, double a, double b, double eps, BasicArray<double> &w, double &err) ;
00056   template double integrate(ClassPOvoid<double>* f,void*, double a, double b, double eps, int n, double &err) ;
00057   template double intcc2(ClassPO<double>* f, double a, double b, double eps, 
00058                          BasicArray<double> w, double &err) ;
00059   template double integrate2(ClassPO<double>* f, double a, double b, double eps, int n, double &err) ;
00060   template double intcc2(ClassPOvoid<double>* f,void*, double a, double b, double eps, BasicArray<double> w, double &err) ;
00061   template double integrate2(ClassPOvoid<double>* f,void*, double a, double b, double eps, int n, double &err) ;
00062   
00063 #endif
00064 
00065 }

Generated on Tue Jun 24 13:26:55 2003 for NURBS++ by doxygen1.2.14 written by Dimitri van Heesch, © 1997-2002