From c9654a0911f8a9c4309bde4a5a65651598b59500 Mon Sep 17 00:00:00 2001 From: bangerth Date: Fri, 11 Jun 2010 19:48:01 +0000 Subject: [PATCH] Fix function name in reference. git-svn-id: https://svn.dealii.org/trunk@21203 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/include/base/data_out_base.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/deal.II/base/include/base/data_out_base.h b/deal.II/base/include/base/data_out_base.h index 3310be5c76..bd583acba6 100644 --- a/deal.II/base/include/base/data_out_base.h +++ b/deal.II/base/include/base/data_out_base.h @@ -1397,7 +1397,7 @@ class DataOutBase * SoftwareVTK format. */ vtu, - + /** * Output in deal.II * intermediate format. @@ -1694,7 +1694,7 @@ class DataOutBase const std::vector > &vector_data_ranges, const VtkFlags &flags, std::ostream &out); - + /** * Write the given list of patches to the output stream in @ref SoftwareVTK @@ -1711,14 +1711,14 @@ class DataOutBase * Some visualization programs, such as ParaView, can read several separate * VTU files to parallelize visualization. In that case, you need a * .pvtu file that describes which VTU files form a group. The - * DataOutInterface::write_pvtu() function can generate such a master record. + * DataOutInterface::write_pvtu_record() function can generate such a master record. */ template static void write_vtu (const std::vector > &patches, const std::vector &data_names, const std::vector > &vector_data_ranges, const VtkFlags &flags, - std::ostream &out); + std::ostream &out); /** * Write the given list of patches to the output stream in deal.II @@ -2224,7 +2224,7 @@ class DataOutInterface : private DataOutBase * DataOutBase::write_vtk. */ void write_vtk (std::ostream &out) const; - + /** * Obtain data through get_patches() * and write it to out @@ -2238,12 +2238,12 @@ class DataOutInterface : private DataOutBase * a .pvtu file that * describes which VTU files form a * group. The - * DataOutInterface::write_pvtu() + * DataOutInterface::write_pvtu_record() * function can generate such a master * record. */ void write_vtu (std::ostream &out) const; - + /** * Some visualization programs, such as * ParaView, can read several separate @@ -2276,9 +2276,9 @@ class DataOutInterface : private DataOutBase * names of the files written by all * parallel processes. */ - void write_pvtu_record (std::ostream &out, - const std::vector &piece_names) const; - + void write_pvtu_record (std::ostream &out, + const std::vector &piece_names) const; + /** * Obtain data through get_patches() -- 2.39.5