#include <orthomesh.h>
Public Member Functions | |
InnerIteratorAccessor (Acc &acc) | |
void | operator++ (int) |
Define iterators to walk in mesh elementes inside the mesh. elements are the boundary are not accessed during the iterator loop This iterator is exactly the same as the one above, its difference is only the ++ method that call the methos advance_inner from the element accessor class
Definition at line 96 of file orthomesh.h.
InnerIteratorAccessor< Acc >::InnerIteratorAccessor | ( | Acc & | acc | ) | [inline] |
Definition at line 100 of file orthomesh.h.
00100 :IteratorAccessor<Acc>(acc){}
void InnerIteratorAccessor< Acc >::operator++ | ( | int | ) | [inline] |
Reimplemented from IteratorAccessor< Acc >.
Definition at line 101 of file orthomesh.h.
00101 {this->m_data.advance_inner();}