// $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
*/
typedef typename GridClass<dim>::cell_iterator cell_iterator;
#endif
+ /**
+ * Constructor setting the class
+ * name arguments in the
+ * SmartPointer members.
+ */
+ InterGridMap();
+
/**
* Create the mapping between the two
* grids.
// $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
}
+template <template <int> class GridClass, int dim>
+InterGridMap<GridClass,dim>::InterGridMap ()
+ :
+ source_grid(0, typeid(*this).name()),
+ destination_grid(0, typeid(*this).name())
+{}
+
+
+
+
template <template <int> class GridClass, int dim>
void InterGridMap<GridClass,dim>::make_mapping (const GridClass<dim> &source_grid,
const GridClass<dim> &destination_grid)