Boost C++ Libraries: Ticket #4762: boost::GraphvizDigraph is missing https://svn.boost.org/trac10/ticket/4762 <p> In upgrading from boost 1.43 to 1.44, my code is now failing to compile. The culprit is that a block of code in the file boost/graph/graphviz.hpp has been ifdef'd out in going from 1.43 to 1.44. This removed some typedefs that I was using. In particular the boost::<a class="missing wiki">GraphvizDigraph</a> object. </p> <ol><li>Why were these eliminated? What objects should I use in place of the missing typedefs? Should I just redeclare them in my code? </li><li>I could not find any mention of changes to the boost graph library in the release notes for 1.44, yet there are quite a few changes to the graphviz.hpp file. </li></ol> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/4762 Trac 1.4.3 rppawlo@… Wed, 20 Oct 2010 21:19:14 GMT attachment set https://svn.boost.org/trac10/ticket/4762 https://svn.boost.org/trac10/ticket/4762 <ul> <li><strong>attachment</strong> → <span class="trac-field-new">example_usage.txt</span> </li> </ul> <p> Example of usage of <a class="missing wiki">GraphvizDigraph</a> object </p> Ticket Jeremiah Willcock Tue, 26 Oct 2010 18:33:57 GMT status changed; resolution set https://svn.boost.org/trac10/ticket/4762#comment:1 https://svn.boost.org/trac10/ticket/4762#comment:1 <ul> <li><strong>status</strong> <span class="trac-field-old">new</span> → <span class="trac-field-new">closed</span> </li> <li><strong>resolution</strong> → <span class="trac-field-new">wontfix</span> </li> </ul> <p> I removed this class because it appeared to have been broken for quite a while (the functions to read Graphviz files into that type didn't exist). If you have only a fixed set of attributes on your vertices and edges, which appears to be the case from your code, use any standard graph type and one of the versions of <code>read_graphviz()</code> that use <code>dynamic_properties</code> objects. The file <code>libs/graph/example/graphviz.cpp</code> shows what kind of code to write for that. </p> Ticket