![]() |
00001 // Copyright (C) 2003 Johan Hoffman and Anders Logg. 00002 // Licensed under the GNU GPL Version 2. 00003 00004 #ifndef __GAUSS_QUADRATURE_H 00005 #define __GAUSS_QUADRATURE_H 00006 00007 #include <dolfin/dolfin_log.h> 00008 #include <dolfin/GaussianQuadrature.h> 00009 00010 namespace dolfin { 00011 00020 00021 class GaussQuadrature : public GaussianQuadrature { 00022 public: 00023 00024 GaussQuadrature(unsigned int n); 00025 00026 void show() const; 00027 00028 private: 00029 00030 void computePoints(); 00031 00032 }; 00033 00034 } 00035 00036 #endif
Documentation automatically generated with Doxygen on 10 Sep 2004.