bitmap_allocator_base.h revision 169692
1100513Sru// Base to std::allocator -*- C++ -*-
242660Smarkm
393139Sru// Copyright (C) 2004, 2005 Free Software Foundation, Inc.
493139Sru//
593139Sru// This file is part of the GNU ISO C++ Library.  This library is free
642660Smarkm// software; you can redistribute it and/or modify it under the
742660Smarkm// terms of the GNU General Public License as published by the
8100513Sru// Free Software Foundation; either version 2, or (at your option)
993139Sru// any later version.
1093139Sru
1193139Sru// This library is distributed in the hope that it will be useful,
1293139Sru// but WITHOUT ANY WARRANTY; without even the implied warranty of
1393139Sru// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1493139Sru// GNU General Public License for more details.
15100513Sru
1693139Sru// You should have received a copy of the GNU General Public License along
1793139Sru// with this library; see the file COPYING.  If not, write to the Free
18100513Sru// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
1942660Smarkm// USA.
2042660Smarkm
21100513Sru// As a special exception, you may use this file as part of a free software
22100513Sru// library without restriction.  Specifically, if other files instantiate
2342660Smarkm// templates or use macros or inline functions from this file, or you compile
2442660Smarkm// this file and link it with other files to produce an executable, this
25100513Sru// file does not by itself cause the resulting executable to be covered by
2693139Sru// the GNU General Public License.  This exception does not however
2742660Smarkm// invalidate any other reasons why the executable file might be covered by
28146515Sru// the GNU General Public License.
29146515Sru
30146515Sru/** @file c++allocator.h
31100513Sru *  This is an internal header file, included by other library headers.
3293139Sru *  You should not attempt to use it directly.
3342660Smarkm */
3493139Sru
3593139Sru#ifndef _CXX_ALLOCATOR_H
3693139Sru#define _CXX_ALLOCATOR_H 1
3756160Sru
38146515Sru// Define bitmap_allocator as the base class to std::allocator.
39146515Sru#include <ext/bitmap_allocator.h>
40146515Sru#define __glibcxx_base_allocator  __gnu_cxx::bitmap_allocator
41146515Sru
42146515Sru#endif
43146515Sru