Skip to content
Snippets Groups Projects
Commit 9b429124 authored by Stéphane Albert's avatar Stéphane Albert
Browse files

ENH: Added missing otb::ObjectList::operator += () and ::operator -= ().

parent e2602256
No related branches found
No related tags found
No related merge requests found
......@@ -200,7 +200,6 @@ public:
Iterator lIter(m_Iter + i);
return lIter;
}
/**
* Remove
*/
......@@ -209,6 +208,20 @@ public:
Iterator lIter(m_Iter - i);
return lIter;
}
/**
*/
Iterator
operator += ( int i )
{
return m_Iter + i;
}
/**
*/
Iterator
operator -= ( int i )
{
return m_Iter - i;
}
/**
* Difference comparison operator.
*/
......
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