/* -*- C++ -*- */
/*************************************************************************
 * Copyright(c) 1995~2005  Masaharu Goto (cint@pcroot.cern.ch)
 *
 * For the licensing terms see the file COPYING
 *
 ************************************************************************/
#if !defined(G__MAP_DLL) && !defined(G__NOCINTDLL)
#pragma include_noerr <pair.dll>
#pragma include_noerr <map.dll>
#pragma include_noerr <map2.dll>
#endif

#ifdef __MAKECINT__
#include <prec_stl/map>
#else
//#include <prec_stl/map>
//#include <_map.h>  // cint can not instantiate map template body
#ifndef G__OLDIMPLEMENTATION2103
template <class Key, class T, 
          class Compare=less<Key>,
          class Allocator=allocator<pair<const Key, T> > > class map;
#endif
#endif

#include <_multimap>
