From 1ff3abace02ca6681631ecd0b2a1beb822581ab7 Mon Sep 17 00:00:00 2001 From: bangerth Date: Thu, 2 Dec 2010 16:45:55 +0000 Subject: [PATCH] Make it follow usual style. git-svn-id: https://svn.dealii.org/trunk@22905 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-29/step-29.cc | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) 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 -- 2.39.5