// $Id$
// Version: $Name$
//
-// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 by the deal.II authors
+// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by the deal.II authors
//
// This file is subject to QPL and may not be distributed
// without copyright and license information. Please refer
class Triangulation : public Subscriptor
{
private:
- /**
- * Default boundary object. This is used
- * for those boundaries for which no
- * boundary object has been explicitly
- * set using set_boundary().
- */
- static const StraightBoundary<dim> straight_boundary;
/**
* An internal typedef to make
typedef internal::Triangulation::Iterators<dim> IteratorSelector;
public:
+ /**
+ * Default boundary object. This is used
+ * for those boundaries for which no
+ * boundary object has been explicitly
+ * set using set_boundary().
+ */
+ static const StraightBoundary<dim> straight_boundary;
/**
* Declare some symbolic names
<ol>
+ <li> <p>Improved: The StraightBoundary object Triangulation::straight_boundary
+ is now made public. This allows to use Triangulation::straight_boundary instead
+ of recreating a StraightBoundary object when needed.
+ <br>
+ (RH, 2008/04/04)
+ </p></li>
+
<li> <p>Extendend: SolutionTransfer has an additional template parameters DH
for the dof handler class to use, which defaults to DoFHandler. However, an
instantiation is also provided for hp::DoFHandler.