ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/ccscs20/Iterator.hpp
(Generate patch)

Comparing Iterator.hpp (file contents):
Revision 8 by Douglas Thrift, 2004-05-14T11:26:01-07:00 vs.
Revision 9 by Douglas Thrift, 2004-05-14T11:54:07-07:00

# Line 28 | Line 28 | public:
28          Iterator<Type>& operator--() { here = here->getPrevious(); return *this; }
29          Iterator<Type> operator--(int);
30          const Type& operator*() { return here->getValue(); }
31 +        const Type* operator->() { return &here->getValue(); }
32   };
33  
34   template<typename Type>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines