2
0
mirror of https://github.com/boostorg/graph.git synced 2026-01-31 20:22:09 +00:00

formatting docs

[SVN r7912]
This commit is contained in:
Jeremy Siek
2000-10-05 17:52:53 +00:00
parent fbcb03de6a
commit 36f236408b

View File

@@ -889,14 +889,13 @@ This sets the property value for <tt>x</tt> to
<tt>value</tt>. <tt>x</tt> is either a vertex or edge descriptor.
<tt>Value</tt> must be convertible to
<tt>typename property_traits&lt;property_map&lt;adjacency_list, Property&gt;::type&gt::value_type</tt>
<hr>
<hr>
<pre>
template &lt;class GraphProperties, class GraphProperty&gt;
typename property_value&lt;GraphProperties, GraphProperty&gt;::type&amp;
get_property(adjacency_list&amp; g, GraphProperty);
template &lt;class GraphProperties, class GraphProperty&gt;
typename property_value&lt;GraphProperties, GraphProperty&gt;::type&amp;
get_property(adjacency_list&amp; g, GraphProperty);
</pre>
Return the property specified by <tt>GraphProperty</tt> that is
attached to the graph object <tt>g</tt>.
@@ -904,9 +903,9 @@ attached to the graph object <tt>g</tt>.
<hr>
<pre>
template &lt;class GraphProperties, class GraphProperty&gt;
const typename property_value&lt;GraphProperties, GraphProperty&gt;::type&amp;
get_property(const adjacency_list&amp; g, GraphProperty);
template &lt;class GraphProperties, class GraphProperty&gt;
const typename property_value&lt;GraphProperties, GraphProperty&gt;::type&amp;
get_property(const adjacency_list&amp; g, GraphProperty);
</pre>
Return the property specified by <tt>GraphProperty</tt> that is
attached to the graph object <tt>g</tt>.