QSet< T >::const_iterator Class Reference

QSet< T >::const_iterator Class Reference

#include <qset.h>

Class Description

template<class T>
class QSet< T >::const_iterator

Definition at line 132 of file qset.h.

Public Types

typedef std::bidirectional_iterator_tag iterator_category
 
typedef qptrdiff difference_type
 
typedef T value_type
 
typedef const T * pointer
 
typedef const T & reference
 

Public Member Functions

 const_iterator ()
 
 const_iterator (typename Hash::const_iterator o)
 
 const_iterator (const const_iterator &o)
 
 const_iterator (const iterator &o)
 
const_iteratoroperator= (const const_iterator &o)
 
const T & operator* () const
 
const T * operator-> () const
 
bool operator== (const const_iterator &o) const
 
bool operator!= (const const_iterator &o) const
 
const_iteratoroperator++ ()
 
const_iterator operator++ (int)
 
const_iteratoroperator-- ()
 
const_iterator operator-- (int)
 
const_iterator operator+ (int j) const
 
const_iterator operator- (int j) const
 
const_iteratoroperator+= (int j)
 
const_iteratoroperator-= (int j)
 

Friends

class iterator
 

Member Typedef Documentation

typedef std::bidirectional_iterator_tag iterator_category

Definition at line 139 of file qset.h.

typedef qptrdiff difference_type

Definition at line 140 of file qset.h.

typedef T value_type

Definition at line 141 of file qset.h.

typedef const T* pointer

Definition at line 142 of file qset.h.

typedef const T& reference

Definition at line 143 of file qset.h.

Constructor & Destructor Documentation

const_iterator ( )
inline

Definition at line 145 of file qset.h.

145 {}
const_iterator ( typename Hash::const_iterator  o)
inline

Definition at line 146 of file qset.h.

146 : i(o) {}
const_iterator ( const const_iterator o)
inline

Definition at line 147 of file qset.h.

147 : i(o.i) {}
const_iterator ( const iterator o)
inline

Definition at line 148 of file qset.h.

149  : i(o.i) {}

Member Function Documentation

const_iterator& operator= ( const const_iterator o)
inline

Definition at line 150 of file qset.h.

150 { i = o.i; return *this; }
const T& operator* ( ) const
inline

Definition at line 151 of file qset.h.

151 { return i.key(); }
const T* operator-> ( void  ) const
inline

Definition at line 152 of file qset.h.

152 { return &i.key(); }
bool operator== ( const const_iterator o) const
inline

Definition at line 153 of file qset.h.

153 { return i == o.i; }
bool operator!= ( const const_iterator o) const
inline

Definition at line 154 of file qset.h.

154 { return i != o.i; }
const_iterator& operator++ ( )
inline

Definition at line 155 of file qset.h.

155 { ++i; return *this; }
const_iterator operator++ ( int  )
inline

Definition at line 156 of file qset.h.

156 { const_iterator r = *this; ++i; return r; }
GLdouble GLdouble GLdouble r
Definition: GLee.h:1189
const_iterator& operator-- ( )
inline

Definition at line 157 of file qset.h.

157 { --i; return *this; }
const_iterator operator-- ( int  )
inline

Definition at line 158 of file qset.h.

158 { const_iterator r = *this; --i; return r; }
GLdouble GLdouble GLdouble r
Definition: GLee.h:1189
const_iterator operator+ ( int  j) const
inline

Definition at line 159 of file qset.h.

159 { return i + j; }
const_iterator operator- ( int  j) const
inline

Definition at line 160 of file qset.h.

160 { return i - j; }
const_iterator& operator+= ( int  j)
inline

Definition at line 161 of file qset.h.

161 { i += j; return *this; }
const_iterator& operator-= ( int  j)
inline

Definition at line 162 of file qset.h.

162 { i -= j; return *this; }

Friends And Related Function Documentation

friend class iterator
friend

Definition at line 136 of file qset.h.


The documentation for this class was generated from the following file: