From: Wolfgang Bangerth Date: Fri, 11 Jan 2013 01:15:32 +0000 (+0000) Subject: Put the attribute on the RefinementListener class rather than all the X-Git-Tag: v8.0.0~1599 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=598bc3afbad2383694686110d4f4fbf9c5e92cf1;p=dealii.git Put the attribute on the RefinementListener class rather than all the member functions. This has the advantage that we can cleanly compile the library. git-svn-id: https://svn.dealii.org/trunk@28012 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/grid/tria.h b/deal.II/include/deal.II/grid/tria.h index 888acd678e..dbae84b6a0 100644 --- a/deal.II/include/deal.II/grid/tria.h +++ b/deal.II/include/deal.II/grid/tria.h @@ -1,7 +1,7 @@ //--------------------------------------------------------------------------- // $Id$ // -// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 by the deal.II authors +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -1475,7 +1475,7 @@ public: * * @deprecated */ - virtual ~RefinementListener () DEAL_II_DEPRECATED; + virtual ~RefinementListener (); /** * Before refinement is actually @@ -1493,7 +1493,7 @@ public: */ virtual void - pre_refinement_notification (const Triangulation &tria) DEAL_II_DEPRECATED; + pre_refinement_notification (const Triangulation &tria); /** * After refinement is actually @@ -1511,7 +1511,7 @@ public: */ virtual void - post_refinement_notification (const Triangulation &tria) DEAL_II_DEPRECATED; + post_refinement_notification (const Triangulation &tria); /** * At the end of a call to @@ -1537,7 +1537,7 @@ public: virtual void copy_notification (const Triangulation &old_tria, - const Triangulation &new_tria) DEAL_II_DEPRECATED; + const Triangulation &new_tria); /** * At the end of a call to @@ -1559,9 +1559,8 @@ public: */ virtual void - create_notification (const Triangulation &tria) DEAL_II_DEPRECATED; - - }; + create_notification (const Triangulation &tria); + } DEAL_II_DEPRECATED; /** * A structure that is used as an