Ignore:
Timestamp:
Oct 11, 2007, 7:01:01 PM (16 years ago)
Author:
Peter
Message:

fixing some doxygen warnings

File:
1 edited

Legend:

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

    r899 r966  
    8888  public:
    8989
     90    /// \brief vector::iterator
    9091    typedef Iterator<double&, vector> iterator;
     92    /// \brief vector::const_iterator
    9193    typedef Iterator<const double, const vector> const_iterator;
    9294
     
    219221
    220222    /**
     223       \return mutable iterator to start of vector
    221224     */
    222225    iterator begin(void);
    223226
    224227    /**
     228       \return read-only iterator to start of vector
    225229     */
    226230    const_iterator begin(void) const;
     
    243247
    244248    /**
     249       \return mutable iterator to end of vector
    245250     */
    246251    iterator end(void);
    247252
    248253    /**
     254       \return read-only iterator to end of vector
    249255     */
    250256    const_iterator end(void) const;
Note: See TracChangeset for help on using the changeset viewer.