1ffeaf689SAlexander Kabaev// Debugging map/multimap implementation -*- C++ -*-
2ffeaf689SAlexander Kabaev
3*f8a1b7d9SAlexander Kabaev// Copyright (C) 2003, 2006
4ffeaf689SAlexander Kabaev// Free Software Foundation, Inc.
5ffeaf689SAlexander Kabaev//
6ffeaf689SAlexander Kabaev// This file is part of the GNU ISO C++ Library.  This library is free
7ffeaf689SAlexander Kabaev// software; you can redistribute it and/or modify it under the
8ffeaf689SAlexander Kabaev// terms of the GNU General Public License as published by the
9ffeaf689SAlexander Kabaev// Free Software Foundation; either version 2, or (at your option)
10ffeaf689SAlexander Kabaev// any later version.
11ffeaf689SAlexander Kabaev
12ffeaf689SAlexander Kabaev// This library is distributed in the hope that it will be useful,
13ffeaf689SAlexander Kabaev// but WITHOUT ANY WARRANTY; without even the implied warranty of
14ffeaf689SAlexander Kabaev// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15ffeaf689SAlexander Kabaev// GNU General Public License for more details.
16ffeaf689SAlexander Kabaev
17ffeaf689SAlexander Kabaev// You should have received a copy of the GNU General Public License along
18ffeaf689SAlexander Kabaev// with this library; see the file COPYING.  If not, write to the Free
19*f8a1b7d9SAlexander Kabaev// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
20ffeaf689SAlexander Kabaev// USA.
21ffeaf689SAlexander Kabaev
22ffeaf689SAlexander Kabaev// As a special exception, you may use this file as part of a free software
23ffeaf689SAlexander Kabaev// library without restriction.  Specifically, if other files instantiate
24ffeaf689SAlexander Kabaev// templates or use macros or inline functions from this file, or you compile
25ffeaf689SAlexander Kabaev// this file and link it with other files to produce an executable, this
26ffeaf689SAlexander Kabaev// file does not by itself cause the resulting executable to be covered by
27ffeaf689SAlexander Kabaev// the GNU General Public License.  This exception does not however
28ffeaf689SAlexander Kabaev// invalidate any other reasons why the executable file might be covered by
29ffeaf689SAlexander Kabaev// the GNU General Public License.
30ffeaf689SAlexander Kabaev
31*f8a1b7d9SAlexander Kabaev/** @file debug/map
32*f8a1b7d9SAlexander Kabaev *  This file is a GNU debug extension to the Standard C++ Library.
33*f8a1b7d9SAlexander Kabaev */
34*f8a1b7d9SAlexander Kabaev
35ffeaf689SAlexander Kabaev#ifndef _GLIBCXX_DEBUG_MAP
36ffeaf689SAlexander Kabaev#define _GLIBCXX_DEBUG_MAP 1
37ffeaf689SAlexander Kabaev
38ffeaf689SAlexander Kabaev#include <map>
39ffeaf689SAlexander Kabaev#include <debug/map.h>
40ffeaf689SAlexander Kabaev#include <debug/multimap.h>
41ffeaf689SAlexander Kabaev
42ffeaf689SAlexander Kabaev#endif
43