From: Wolfgang Bangerth Date: Mon, 9 Jan 2006 17:47:00 +0000 (+0000) Subject: Try an alternative approach to make things work with icc. X-Git-Tag: v8.0.0~12690 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce5b43dcd6329efb197e98c09f6eccdc5e2179ed;p=dealii.git Try an alternative approach to make things work with icc. git-svn-id: https://svn.dealii.org/trunk@11972 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/include/dofs/hp_dof_handler.h b/deal.II/deal.II/include/dofs/hp_dof_handler.h index d298fa8d76..21117b7394 100644 --- a/deal.II/deal.II/include/dofs/hp_dof_handler.h +++ b/deal.II/deal.II/include/dofs/hp_dof_handler.h @@ -27,9 +27,15 @@ #include +/*!@addtogroup hp */ +/*@{*/ + + /** * A namespace that holds all the classes that have to do with hp finite * elements. + * + * @ingroup hp */ namespace hp { @@ -41,11 +47,11 @@ namespace hp * Manage the distribution and numbering of the degrees of freedom for * hp-FEM algorithms. * - * @ingroup dofs + * @ingroup hp */ template - class DoFHandler : public Subscriptor, - protected Triangulation::RefinementListener + class DoFHandler : public Subscriptor, + protected Triangulation::RefinementListener { typedef internal::DoFIteratorSelector > IteratorSelector; public: @@ -996,12 +1002,12 @@ namespace hp /** * Make accessor objects friends. */ - template class DH> friend class DoFAccessor; + template class DH> friend class ::DoFAccessor; /** * Make accessor objects friends. */ - template class DH> friend class DoFObjectAccessor; + template class DH> friend class ::DoFObjectAccessor; }; @@ -1159,6 +1165,7 @@ namespace hp } +/*@}*/ #endif