added a const_iterator typedef

This commit is contained in:
Laurent Rineau 2003-03-19 15:59:46 +00:00
parent b71ec3f205
commit 5dabe7bd02
1 changed files with 2 additions and 0 deletions

View File

@ -14,6 +14,7 @@ public:
typedef typename Cont::reference reference;
typedef typename Cont::iterator iterator;
typedef typename Cont::const_iterator const_iterator;
typedef typename Cont::value_type value_type;
inline
@ -58,6 +59,7 @@ public:
inline
void clear() { cont.clear(); }
};
CGAL_END_NAMESPACE