From: Wolfgang Bangerth Date: Wed, 31 Dec 2014 17:15:15 +0000 (-0600) Subject: Remove deprecated function DataOutBase::create_xdmf_entry. X-Git-Tag: v8.3.0-rc1~566^2~13 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d17951497cfaa4e35a15f77407635fd7436ec88a;p=dealii.git Remove deprecated function DataOutBase::create_xdmf_entry. --- diff --git a/doc/news/changes.h b/doc/news/changes.h index 872a1d36c8..97a953ee5f 100644 --- a/doc/news/changes.h +++ b/doc/news/changes.h @@ -58,6 +58,7 @@ inconvenience this causes. - GridGenerator::laplace_transformation. - The version of GridGenerator::parallelogram where the corners are given as a rank-2 tensor rather than as an array of points. + - DataOutBase::create_xdmf_entry with 3 arguments.
  • Removed: The config.h file no longer exports HAVE_* definitions. diff --git a/include/deal.II/base/data_out_base.h b/include/deal.II/base/data_out_base.h index e47a1328ab..6441fce9aa 100644 --- a/include/deal.II/base/data_out_base.h +++ b/include/deal.II/base/data_out_base.h @@ -2318,14 +2318,6 @@ public: */ void write_deal_II_intermediate (std::ostream &out) const; - /** - * Create an XDMFEntry based on the data in this DataOutInterface. - * @deprecated: use create_xdmf_entry(DataOutFilter, ...) instead - */ - XDMFEntry create_xdmf_entry (const std::string &h5_filename, - const double cur_time, - MPI_Comm comm) const DEAL_II_DEPRECATED; - /** * Create an XDMFEntry based on the data in the data_filter. This assumes * the mesh and solution data were written to a single file. See diff --git a/source/base/data_out_base.cc b/source/base/data_out_base.cc index 8d5de27b44..1802763072 100644 --- a/source/base/data_out_base.cc +++ b/source/base/data_out_base.cc @@ -6877,17 +6877,6 @@ write_deal_II_intermediate (std::ostream &out) const } -template -XDMFEntry DataOutInterface:: -create_xdmf_entry (const std::string &h5_filename, const double cur_time, MPI_Comm comm) const -{ - DataOutBase::DataOutFilter data_filter(DataOutBase::DataOutFilterFlags(false, true)); - write_filtered_data(data_filter); - return create_xdmf_entry(data_filter, h5_filename, cur_time, comm); -} - - - template XDMFEntry DataOutInterface:: create_xdmf_entry (const DataOutBase::DataOutFilter &data_filter,