From: bangerth Date: Wed, 24 Aug 2011 19:16:00 +0000 (+0000) Subject: Reorder member functions. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e5c0803d0a1e6c85e35df25e94a039e117d333e;p=dealii-svn.git Reorder member functions. git-svn-id: https://svn.dealii.org/trunk@24183 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/base/quadrature.h b/deal.II/include/deal.II/base/quadrature.h index a2aba45f49..003c52b014 100644 --- a/deal.II/include/deal.II/base/quadrature.h +++ b/deal.II/include/deal.II/base/quadrature.h @@ -182,6 +182,11 @@ class Quadrature : public Subscriptor */ Quadrature (const Point &point); + /** + * Virtual destructor. + */ + virtual ~Quadrature (); + /** * Assignment operator. Copies * contents of #weights and @@ -189,7 +194,7 @@ class Quadrature : public Subscriptor * size. */ Quadrature& operator = (const Quadrature&); - + /** * Test for equality of two quadratures. */ @@ -202,11 +207,6 @@ class Quadrature : public Subscriptor */ void initialize(const std::vector > &points, const std::vector &weights); - - /** - * Virtual destructor. - */ - virtual ~Quadrature (); /** * Number of quadrature points. @@ -247,9 +247,9 @@ class Quadrature : public Subscriptor std::size_t memory_consumption () const; /** - * Write or read the data of this object to or + * Write or read the data of this object to or * from a stream for the purpose of serialization. - */ + */ template void serialize (Archive & ar, const unsigned int version);