|
BWAPI
|
00001 // Copyright (c) 2003,2004,2005,2006 INRIA Sophia-Antipolis (France) and 00002 // Notre Dame University (U.S.A.). 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/Segment_Delaunay_graph_2/include/CGAL/Segment_Delaunay_graph_2/Traits_wrapper_2.h $ 00015 // $Id: Traits_wrapper_2.h 37424 2007-03-23 19:02:35Z spion $ 00016 // 00017 // 00018 // Author(s) : Menelaos Karavelas <mkaravel@cse.nd.edu> 00019 00020 #ifndef CGAL_SEGMENT_DELAUNAY_GRAPH_2_TRAITS_WRAPPER_2_H 00021 #define CGAL_SEGMENT_DELAUNAY_GRAPH_2_TRAITS_WRAPPER_2_H 00022 00023 #include <CGAL/Segment_Delaunay_graph_2/basic.h> 00024 00025 CGAL_BEGIN_NAMESPACE 00026 00027 template<class Gt_base> 00028 class Segment_Delaunay_graph_traits_wrapper_2 : public Gt_base 00029 { 00030 private: 00031 typedef Segment_Delaunay_graph_traits_wrapper_2<Gt_base> Self; 00032 00033 public: 00034 struct Triangle_2 {}; 00035 00036 Segment_Delaunay_graph_traits_wrapper_2() {} 00037 00038 Segment_Delaunay_graph_traits_wrapper_2(const Gt_base&) {} 00039 }; 00040 00041 CGAL_END_NAMESPACE 00042 00043 #endif // CGAL_SEGMENT_DELAUNAY_GRAPH_2_TRAITS_WRAPPER_2_H
1.7.6.1