mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-18 08:50:33 +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++()
|
||||
{ _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
|
||||
bool
|
||||
operator!=(const _Self& __x) const
|
||||
{ return !_EqualVALUE( _value, __x._value); }
|
||||
|
||||
// Test of equality
|
||||
bool
|
||||
operator==(const _Self& __x) const
|
||||
{ return _EqualVALUE( _value, __x._value); }
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user