Skip to content
Snippets Groups Projects
Commit cbf1af65 authored by Adrian Burri's avatar Adrian Burri
Browse files

Added tunneling of Gitter pointer in HexaEmptyPll

git-svn-id: https://dune.mathematik.uni-freiburg.de/svn/alugrid/trunk@259 0d966ed9-3843-0410-af09-ebfb50bd7c74
parent 4da2b888
No related branches found
No related tags found
No related merge requests found
......@@ -731,7 +731,10 @@ class GitterBasisPll : public Gitter :: Geometric, public GitterPll {
typedef hface4_IMPL innerface_t ;
public :
typedef HexaPllBaseX mypllx_t ;
inline HexaEmptyPll (myhface4_t *,int,myhface4_t *,int,myhface4_t *,int,myhface4_t *,int,myhface4_t *,int,myhface4_t *,int) ;
inline HexaEmptyPll (myhface4_t *,int,myhface4_t *,int,
myhface4_t *,int,myhface4_t *,int,
myhface4_t *,int,myhface4_t *,int,
Gitter* gitter) ;
inline ~HexaEmptyPll () {}
virtual ElementPllXIF_t & accessPllX () throw (Parallel :: AccessPllException) ;
virtual const ElementPllXIF_t & accessPllX () const throw (Parallel :: AccessPllException) ;
......@@ -1477,8 +1480,13 @@ inline GitterBasisPll :: ObjectsPll :: Periodic4EmptyPll :: Periodic4EmptyPll (m
// Ende - Neu am 23.5.02 (BS)
inline GitterBasisPll :: ObjectsPll :: HexaEmptyPll :: HexaEmptyPll (myhface4_t * f0, int t0, myhface4_t * f1, int t1, myhface4_t * f2, int t2, myhface4_t * f3, int t3, myhface4_t * f4, int t4, myhface4_t * f5, int t5)
: GitterBasis :: Objects :: HexaEmpty (f0,t0,f1,t1,f2,t2,f3,t3,f4,t4,f5,t5), _pllx (*this) {
inline GitterBasisPll :: ObjectsPll :: HexaEmptyPll ::
HexaEmptyPll (myhface4_t * f0, int t0, myhface4_t * f1, int t1,
myhface4_t * f2, int t2, myhface4_t * f3, int t3,
myhface4_t * f4, int t4, myhface4_t * f5, int t5,
Gitter* gitter) :
GitterBasis::Objects::HexaEmpty(f0,t0,f1,t1,f2,t2,f3,t3,f4,t4,f5,t5,gitter),
_pllx (*this) {
return ;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment