mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-18 14:50:32 +05:00
0020832: EDF 1359 SMESH : Automatic meshing of boundary layers
+ _Self + operator++(int) + bool + operator==(const _Self& __x) const
This commit is contained in:
parent
cbe181b40c
commit
708dbb145f
@ -60,11 +60,21 @@ public:
|
|||||||
operator++()
|
operator++()
|
||||||
{ _value = _piterator->more() ? VALUE( _piterator->next()) : 0; return *this; }
|
{ _value = _piterator->more() ? VALUE( _piterator->next()) : 0; return *this; }
|
||||||
|
|
||||||
|
// Step to the next one
|
||||||
|
_Self
|
||||||
|
operator++(int)
|
||||||
|
{ _Self res = *this; _value = _piterator->more() ? VALUE( _piterator->next()) : 0; return res; }
|
||||||
|
|
||||||
// Test of end
|
// Test of end
|
||||||
bool
|
bool
|
||||||
operator!=(const _Self& __x) const
|
operator!=(const _Self& __x) const
|
||||||
{ return !_EqualVALUE( _value, __x._value); }
|
{ return !_EqualVALUE( _value, __x._value); }
|
||||||
|
|
||||||
|
// Test of equality
|
||||||
|
bool
|
||||||
|
operator==(const _Self& __x) const
|
||||||
|
{ return _EqualVALUE( _value, __x._value); }
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user