Ignore:
Timestamp:
Sep 22, 2007, 1:43:22 AM (16 years ago)
Author:
Peter
Message:

refs #244

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/yat/utility/vector.h

    r879 r880  
    2929*/
    3030
     31#include "constIterator.h"
    3132#include "Exception.h"
     33#include "Iterator.h"
    3234
    3335#include <iostream>
     
    8789  public:
    8890
     91    typedef Iterator<vector> iterator;
     92    typedef constIterator<const vector> const_iterator;
     93
    8994    /**
    9095       \brief The default constructor.
     
    215220
    216221    /**
     222     */
     223    iterator begin(void);
     224
     225    /**
     226     */
     227    const_iterator begin(void) const;
     228
     229    /**
    217230       \brief Make a copy of \a other.
    218231
     
    229242    */
    230243    void div(const vector& other);
     244
     245    /**
     246     */
     247    iterator end(void);
     248
     249    /**
     250     */
     251    const_iterator end(void) const;
    231252
    232253    /**
Note: See TracChangeset for help on using the changeset viewer.