diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2011-09-28 20:53:29 +0000 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2011-09-28 20:53:29 +0000 |
| commit | 7746c78cccef6cb35e193c85182a496b33bb0c7a (patch) | |
| tree | a8eee934698c3d71870919eac477ad2c26c9b902 /src/buffer.hh | |
| parent | a30b7c1e9f52ce3c5c22bc09d89ec093fc989b28 (diff) | |
BufferIterator: add operator>{,=}
Diffstat (limited to 'src/buffer.hh')
| -rw-r--r-- | src/buffer.hh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/buffer.hh b/src/buffer.hh index 542a8349..565dfea5 100644 --- a/src/buffer.hh +++ b/src/buffer.hh @@ -42,6 +42,8 @@ public: bool operator!= (const BufferIterator& iterator) const; bool operator< (const BufferIterator& iterator) const; bool operator<= (const BufferIterator& iterator) const; + bool operator> (const BufferIterator& iterator) const; + bool operator>= (const BufferIterator& iterator) const; BufferChar operator* () const; BufferSize operator- (const BufferIterator& iterator) const; |
