From 6faeca8d73c64bcfba6fde7c1150df78dcebeea5 Mon Sep 17 00:00:00 2001 From: Guido Kanschat Date: Mon, 28 Mar 2005 17:49:28 +0000 Subject: [PATCH] class name in SmartPointer git-svn-id: https://svn.dealii.org/trunk@10253 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/grid/intergrid_map.h | 9 ++++++++- deal.II/deal.II/source/grid/intergrid_map.cc | 12 +++++++++++- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/deal.II/deal.II/include/grid/intergrid_map.h b/deal.II/deal.II/include/grid/intergrid_map.h index f95fb5b40f..237422c9b1 100644 --- a/deal.II/deal.II/include/grid/intergrid_map.h +++ b/deal.II/deal.II/include/grid/intergrid_map.h @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 by the deal.II authors +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2005 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -146,6 +146,13 @@ class InterGridMap */ typedef typename GridClass::cell_iterator cell_iterator; #endif + /** + * Constructor setting the class + * name arguments in the + * SmartPointer members. + */ + InterGridMap(); + /** * Create the mapping between the two * grids. diff --git a/deal.II/deal.II/source/grid/intergrid_map.cc b/deal.II/deal.II/source/grid/intergrid_map.cc index e8175a2827..56181c3730 100644 --- a/deal.II/deal.II/source/grid/intergrid_map.cc +++ b/deal.II/deal.II/source/grid/intergrid_map.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 by the deal.II authors +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -52,6 +52,16 @@ get_n_levels (const Triangulation &grid) } +template