23 #ifndef ICL_CORE_MAP_H_INCLUDED 24 #define ICL_CORE_MAP_H_INCLUDED 32 template <
typename TKey,
typename TValue>
33 class Map :
public std::map<TKey, TValue>
38 Map(
const std::map<TKey, TValue>& c) :
std::map<TKey, TValue>(c) { }
39 template <
typename TInputIterator>
40 Map(TInputIterator start, TInputIterator end) :
std::map<TKey, TValue>(start, end) { }
Map(const std::map< TKey, TValue > &c)
Map(TInputIterator start, TInputIterator end)