From 60586928cb28e1d77df5b4a52a584ee439dfe6cc Mon Sep 17 00:00:00 2001 From: bangerth Date: Fri, 11 Jan 2013 01:15:32 +0000 Subject: [PATCH] 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 --- deal.II/include/deal.II/grid/tria.h | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) 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 -- 2.39.5