#include <orthomesh.h>
Public Member Functions | |
IteratorAccessor () | |
IteratorAccessor (const Acc &acc) | |
Acc & | operator* () |
bool | operator!= (IteratorAccessor< Acc > it) |
Acc * | operator-> () |
const Acc * | operator-> () const |
void | operator++ (int) |
Protected Attributes | |
Acc | m_data |
Definition at line 71 of file orthomesh.h.
IteratorAccessor< Acc >::IteratorAccessor | ( | ) | [inline] |
Definition at line 77 of file orthomesh.h.
IteratorAccessor< Acc >::IteratorAccessor | ( | const Acc & | acc | ) | [inline] |
Definition at line 78 of file orthomesh.h.
00078 :m_data(acc){}
bool IteratorAccessor< Acc >::operator!= | ( | IteratorAccessor< Acc > | it | ) | [inline] |
Definition at line 80 of file orthomesh.h.
00080 {return (*it) != m_data;}
Acc& IteratorAccessor< Acc >::operator* | ( | ) | [inline] |
Definition at line 79 of file orthomesh.h.
00079 {return m_data;}
void IteratorAccessor< Acc >::operator++ | ( | int | ) | [inline] |
Reimplemented in InnerIteratorAccessor< Acc >.
Definition at line 83 of file orthomesh.h.
00083 {m_data++;}
const Acc* IteratorAccessor< Acc >::operator-> | ( | ) | const [inline] |
Definition at line 82 of file orthomesh.h.
00082 {return &m_data;}
Acc* IteratorAccessor< Acc >::operator-> | ( | ) | [inline] |
Definition at line 81 of file orthomesh.h.
00081 {return &m_data;}
Acc IteratorAccessor< Acc >::m_data [protected] |
Definition at line 74 of file orthomesh.h.