BWAPI
|
00001 // Copyright (c) 2002 Utrecht University (The Netherlands). 00002 // All rights reserved. 00003 // 00004 // This file is part of CGAL (www.cgal.org); you may redistribute it under 00005 // the terms of the Q Public License version 1.0. 00006 // See the file LICENSE.QPL distributed with CGAL. 00007 // 00008 // Licensees holding a valid commercial license may use this file in 00009 // accordance with the commercial license agreement provided with the software. 00010 // 00011 // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 00012 // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 00013 // 00014 // $URL: svn+ssh://scm.gforge.inria.fr/svn/cgal/branches/CGAL-3.5-branch/Spatial_searching/include/CGAL/Search_traits.h $ 00015 // $Id: Search_traits.h 28567 2006-02-16 14:30:13Z lsaboret $ 00016 // 00017 // 00018 // Author(s) : Hans Tangelder (<hanst@cs.uu.nl>) 00019 00020 00021 #ifndef CGAL_KD_TREE_TRAITS_POINT_H 00022 #define CGAL_KD_TREE_TRAITS_POINT_H 00023 00024 00025 namespace CGAL { 00026 00027 template <class FT_, class Point, class CartesianCoordinateIterator, class ConstructCartesianCoordinateIterator> 00028 class Search_traits { 00029 00030 public: 00031 typedef CartesianCoordinateIterator Cartesian_const_iterator_d; 00032 typedef ConstructCartesianCoordinateIterator Construct_cartesian_const_iterator_d; 00033 typedef Point Point_d; 00034 typedef FT_ FT; 00035 00036 }; 00037 00038 00039 } // namespace CGAL 00040 #endif // KD_TREE_TRAITS_POINT_H