COIN-OR::LEMON - Graph Library

Changeset 35:f8ddf1b1541a in lemon


Ignore:
Timestamp:
01/04/08 23:17:09 (16 years ago)
Author:
Peter Kovacs <kpeter@…>
Branch:
default
Phase:
public
Message:

Doc improvements in concepts/maps.h.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/concepts/maps.h

    r28 r35  
    4242    {
    4343    public:
    44       /// Map's key type.
    45       typedef K Key;   
    46       /// Map's value type. (The type of objects associated with the keys).
     44      /// The key type of the map.
     45      typedef K Key;   
     46      /// The value type of the map. (The type of objects associated with the keys).
    4747      typedef T Value;
    4848
     
    8282    {
    8383    public:
    84       /// Map's key type.
    85       typedef K Key;   
    86       /// Map's value type. (The type of objects associated with the keys).
     84      /// The key type of the map.
     85      typedef K Key;   
     86      /// The value type of the map. (The type of objects associated with the keys).
    8787      typedef T Value;
    8888
     
    120120    template<typename K, typename T>
    121121    class ReadWriteMap : public ReadMap<K,T>,
    122                             public WriteMap<K,T>
    123     {
    124     public:
    125       /// Map's key type.
    126       typedef K Key;   
    127       /// Map's value type. (The type of objects associated with the keys).
     122                         public WriteMap<K,T>
     123    {
     124    public:
     125      /// The key type of the map.
     126      typedef K Key;   
     127      /// The value type of the map. (The type of objects associated with the keys).
    128128      typedef T Value;
    129129
     
    153153      /// Tag for reference maps.
    154154      typedef True ReferenceMapTag;
    155       /// Map's key type.
    156       typedef K Key;   
    157       /// Map's value type. (The type of objects associated with the keys).
    158       typedef T Value;
    159       /// Map's reference type.
     155      /// The key type of the map.
     156      typedef K Key;   
     157      /// The value type of the map. (The type of objects associated with the keys).
     158      typedef T Value;
     159      /// The reference type of the map.
    160160      typedef R Reference;
    161       /// Map's const reference type.
     161      /// The const reference type of the map.
    162162      typedef CR ConstReference;
    163163
Note: See TracChangeset for help on using the changeset viewer.