COIN-OR::LEMON - Graph Library

Changeset 458:2df1fee6c866 in lemon-0.x


Ignore:
Timestamp:
04/28/04 14:58:58 (20 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@606
Message:

Docs.

Location:
src/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/include/time_measure.h

    r440 r458  
    2929  /// TimeStamp's can be added to or substracted from each other and
    3030  /// they can be pushed to a stream.
     31  ///
     32  /// In most cases, perhaps \ref Timer class is what you want to use instead.
     33  ///
     34  ///\author Alpar Juttner
    3135
    3236  class TimeStamp
     
    120124
    121125  ///Class measuring the cpu time and real time usage of the process
     126
     127  ///Class measuring the cpu time and real time usage of the process.
     128  ///It is quite easy-to-use, here is a short example.
     129  ///\code
     130  ///int main()
     131  ///{
     132  ///
     133  ///  ...
     134  ///
     135  ///  Timer T();
     136  ///  doSomething();
     137  ///  cout << T;
     138  ///  T.reset();
     139  ///  doSomethingElse();
     140  ///  cout << T;
     141  ///
     142  ///  ...
     143  ///
     144  ///}
     145  ///\endcode
     146  ///
     147  ///\todo This shouldn't be Unix (Linux) specific.
     148  ///
     149  ///\author Alpar Juttner
    122150  class Timer
    123151  {
  • src/include/xy.h

    r432 r458  
    1515/// The class \ref hugo::BoundingBox "BoundingBox" can be used to determine
    1616/// the rectangular bounding box a set of \ref hugo::xy "xy"'s.
     17///
     18///\author Attila Bernath
    1719
    1820
     
    2224  /// @{
    2325
    24 /** \brief
    25 2 dimensional vector (plainvector) implementation
    26 
    27 */
     26  /// A two dimensional vector (plainvector) implementation
     27
     28  /// A two dimensional vector (plainvector) implementation
     29  ///with the usual vector
     30  /// operators.
     31  ///
     32  ///\author Attila Bernath
    2833  template<typename T>
    2934    class xy {
     
    134139
    135140
    136   /** \brief
    137      Implementation of a bounding box of plainvectors.
    138      
    139   */
     141  /// A class to calculate or store the bounding box of plainvectors.
     142
     143  /// A class to calculate or store the bounding box of plainvectors.
     144  ///
     145  ///\author Attila Bernath
    140146  template<typename T>
    141147    class BoundingBox {
Note: See TracChangeset for help on using the changeset viewer.