1238737Simp// -*- C++ -*-
2238737Simp
3238737Simp// Copyright (C) 2005, 2006 Free Software Foundation, Inc.
4238737Simp//
5238737Simp// This file is part of the GNU ISO C++ Library.  This library is free
6238737Simp// software; you can redistribute it and/or modify it under the terms
7238737Simp// of the GNU General Public License as published by the Free Software
8238737Simp// Foundation; either version 2, or (at your option) any later
9238737Simp// version.
10238737Simp
11238737Simp// This library is distributed in the hope that it will be useful, but
12238737Simp// WITHOUT ANY WARRANTY; without even the implied warranty of
13238737Simp// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14238737Simp// General Public License for more details.
15238737Simp
16238737Simp// You should have received a copy of the GNU General Public License
17238737Simp// along with this library; see the file COPYING.  If not, write to
18238737Simp// the Free Software Foundation, 59 Temple Place - Suite 330, Boston,
19238737Simp// MA 02111-1307, USA.
20238737Simp
21238737Simp// As a special exception, you may use this file as part of a free
22238737Simp// software library without restriction.  Specifically, if other files
23238737Simp// instantiate templates or use macros or inline functions from this
24238737Simp// file, or you compile this file and link it with other files to
25238737Simp// produce an executable, this file does not by itself cause the
26238737Simp// resulting executable to be covered by the GNU General Public
27238737Simp// License.  This exception does not however invalidate any other
28238737Simp// reasons why the executable file might be covered by the GNU General
29238737Simp// Public License.
30238737Simp
31238737Simp// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL.
32238737Simp
33238737Simp// Permission to use, copy, modify, sell, and distribute this software
34238737Simp// is hereby granted without fee, provided that the above copyright
35238737Simp// notice appears in all copies, and that both that copyright notice
36238737Simp// and this permission notice appear in supporting documentation. None
37238737Simp// of the above authors, nor IBM Haifa Research Laboratories, make any
38238737Simp// representation about the suitability of this software for any
39238737Simp// purpose. It is provided "as is" without express or implied
40238737Simp// warranty.
41238737Simp
42238737Simp/**
43238737Simp * @file policy_access_fn_imps.hpp
44238737Simp * Contains an implementation class for bin_search_tree_.
45238737Simp */
46238737Simp
47238737SimpPB_DS_CLASS_T_DEC
48238737Simptypename PB_DS_CLASS_C_DEC::e_access_traits&
49238737SimpPB_DS_CLASS_C_DEC::
50238737Simpget_e_access_traits()
51238737Simp{ return *this; }
52238737Simp
53238737SimpPB_DS_CLASS_T_DEC
54238737Simpconst typename PB_DS_CLASS_C_DEC::e_access_traits&
55238737SimpPB_DS_CLASS_C_DEC::
56238737Simpget_e_access_traits() const
57238737Simp{ return *this; }
58238737Simp
59238737SimpPB_DS_CLASS_T_DEC
60238737Simptypename PB_DS_CLASS_C_DEC::node_update&
61238737SimpPB_DS_CLASS_C_DEC::
62238737Simpget_node_update()
63238737Simp{ return *this; }
64238737Simp
65238737SimpPB_DS_CLASS_T_DEC
66238737Simpconst typename PB_DS_CLASS_C_DEC::node_update&
67238737SimpPB_DS_CLASS_C_DEC::
68238737Simpget_node_update() const
69238737Simp{ return *this; }
70238737Simp