src/lemon/maps.h
changeset 946 c94ef40a22ce
parent 911 89a4fbb99cad
child 959 c80ef5912903
equal deleted inserted replaced
5:9b087dd88391 0:220aed1c8185
     1 /* -*- C++ -*-
     1 /* -*- C++ -*-
     2  * src/hugo/maps.h - Part of HUGOlib, a generic C++ optimization library
     2  * src/lemon/maps.h - Part of LEMON, a generic C++ optimization library
     3  *
     3  *
     4  * Copyright (C) 2004 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
     4  * Copyright (C) 2004 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
     5  * (Egervary Combinatorial Optimization Research Group, EGRES).
     5  * (Egervary Combinatorial Optimization Research Group, EGRES).
     6  *
     6  *
     7  * Permission to use, modify and distribute this software is granted
     7  * Permission to use, modify and distribute this software is granted
    12  * express or implied, and with no claim as to its suitability for any
    12  * express or implied, and with no claim as to its suitability for any
    13  * purpose.
    13  * purpose.
    14  *
    14  *
    15  */
    15  */
    16 
    16 
    17 #ifndef HUGO_MAPS_H
    17 #ifndef LEMON_MAPS_H
    18 #define HUGO_MAPS_H
    18 #define LEMON_MAPS_H
    19 
    19 
    20 ///\file
    20 ///\file
    21 ///\brief Miscellaneous property maps
    21 ///\brief Miscellaneous property maps
    22 ///
    22 ///
    23 ///\todo This file has the same name as the concept file in skeletons,
    23 ///\todo This file has the same name as the concept file in skeletons,
    24 /// and this is not easily detectable in docs...
    24 /// and this is not easily detectable in docs...
    25 
    25 
    26 #include <map>
    26 #include <map>
    27 
    27 
    28 namespace hugo {
    28 namespace lemon {
    29 
    29 
    30   /// Base class of maps.
    30   /// Base class of maps.
    31 
    31 
    32   /// Base class of maps.
    32   /// Base class of maps.
    33   /// It provides the necessary <tt>typedef</tt>s required by the map concept.
    33   /// It provides the necessary <tt>typedef</tt>s required by the map concept.
   171       typedef StdMap<Key,T1,Compare> other;
   171       typedef StdMap<Key,T1,Compare> other;
   172     };
   172     };
   173   };
   173   };
   174   
   174   
   175 }
   175 }
   176 #endif // HUGO_MAPS_H
   176 #endif // LEMON_MAPS_H