BWAPI
|
00001 // Copyright (c) 2007 GeometryFactory (France). All rights reserved. 00002 // 00003 // This file is part of CGAL (www.cgal.org); you can redistribute it and/or 00004 // modify it under the terms of the GNU Lesser General Public License as 00005 // published by the Free Software Foundation; version 2.1 of the License. 00006 // See the file LICENSE.LGPL 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/BGL/include/CGAL/boost/graph/properties.h $ 00015 // $Id: properties.h 37284 2007-03-19 19:36:49Z afabri $ 00016 // 00017 // 00018 // Author(s) : Andreas Fabri, Fernando Cacciola 00019 00020 00021 #ifndef CGAL_BOOST_GRAPH_BGL_PROPERTIES_H 00022 #define CGAL_BOOST_GRAPH_BGL_PROPERTIES_H 00023 00024 #include <boost/property_map.hpp> 00025 #include <boost/graph/properties.hpp> 00026 00027 #include <CGAL/basic.h> 00028 00029 CGAL_BEGIN_NAMESPACE 00030 00031 enum vertex_is_border_t { vertex_is_border } ; 00032 enum vertex_point_t { vertex_point } ; 00033 enum vertex_external_index_t { vertex_external_index } ; 00034 enum edge_is_border_t { edge_is_border } ; 00035 enum edge_external_index_t { edge_external_index } ; 00036 00037 CGAL_END_NAMESPACE 00038 00039 #endif // CGAL_BOOST_GRAPH_BGL_PROPERTIES_H