From: Wolfgang Bangerth Date: Thu, 2 Dec 2010 16:45:55 +0000 (+0000) Subject: Make it follow usual style. X-Git-Tag: v8.0.0~4754 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=07e5606797e722f1ff9f3eb72a0612955a223415;p=dealii.git Make it follow usual style. git-svn-id: https://svn.dealii.org/trunk@22905 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-29/step-29.cc b/deal.II/examples/step-29/step-29.cc index 2ca1113d73..cfe23252d3 100644 --- a/deal.II/examples/step-29/step-29.cc +++ b/deal.II/examples/step-29/step-29.cc @@ -409,18 +409,18 @@ class ComputeIntensity : public DataPostprocessor { public: - void compute_derived_quantities_vector ( - const std::vector< Vector< double > > &, - const std::vector< std::vector< Tensor< 1, dim > > > &, - const std::vector< std::vector< Tensor< 2, dim > > > &, - const std::vector< Point< dim > > &, - const std::vector > &, - std::vector< Vector< double > > & - ) const; - - std::vector get_names () const; - UpdateFlags get_needed_update_flags () const; - unsigned int n_output_variables () const; + virtual + void + compute_derived_quantities_vector (const std::vector< Vector< double > > &uh, + const std::vector< std::vector< Tensor< 1, dim > > > &duh, + const std::vector< std::vector< Tensor< 2, dim > > > &dduh, + const std::vector< Point< dim > > &normals, + const std::vector > &evaluation_points, + std::vector< Vector< double > > &computed_quantities) const; + + virtual std::vector get_names () const; + virtual UpdateFlags get_needed_update_flags () const; + virtual unsigned int n_output_variables () const; }; // The get_names