From 26229bc41d10ebd7db7f7413af617674e30f8ee0 Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Tue, 22 May 2001 01:55:52 +0000 Subject: [PATCH] added vertex_property and edge_property [SVN r10182] --- include/boost/graph/properties.hpp | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/include/boost/graph/properties.hpp b/include/boost/graph/properties.hpp index 446a27b6..9dba3b82 100644 --- a/include/boost/graph/properties.hpp +++ b/include/boost/graph/properties.hpp @@ -244,6 +244,17 @@ namespace boost { Property>::type type; }; + template + class vertex_property { + public: + typedef typename Graph::vertex_property_type type; + }; + template + class edge_property { + public: + typedef typename Graph::edge_property_type type; + }; + template class degree_property_map : public put_get_helper::degree_size_type,