From: Guido Kanschat Date: Wed, 17 Jun 2009 13:50:05 +0000 (+0000) Subject: add container type X-Git-Tag: v8.0.0~7610 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=26ed7bb723c28c034acfbb23e249f8e270f282ce;p=dealii.git add container type git-svn-id: https://svn.dealii.org/trunk@18940 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/include/dofs/dof_accessor.h b/deal.II/deal.II/include/dofs/dof_accessor.h index 35c039d3bf..f3151108ea 100644 --- a/deal.II/deal.II/include/dofs/dof_accessor.h +++ b/deal.II/deal.II/include/dofs/dof_accessor.h @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by the deal.II authors +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -764,7 +764,13 @@ class DoFCellAccessor : public DoFAccessor * simpler. */ typedef DoFAccessor BaseClass; - + + /** + * Define the type of the + * container this is part of. + */ + typedef DH Container; + /** * @name Constructors */ diff --git a/deal.II/deal.II/include/grid/tria_accessor.h b/deal.II/deal.II/include/grid/tria_accessor.h index f79ee92b7c..c3a701b9eb 100644 --- a/deal.II/deal.II/include/grid/tria_accessor.h +++ b/deal.II/deal.II/include/grid/tria_accessor.h @@ -1681,6 +1681,12 @@ class CellAccessor : public TriaAccessor * into the present class. */ typedef typename TriaAccessor::AccessorData AccessorData; + + /** + * Define the type of the + * container this is part of. + */ + typedef Triangulation Container; /** * @name Constructors