<div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
to pass my properties from the graph to the visitor ... there has to be a better<br>
way to do this. How can I put the visitor definition into the .cpp, and only<br>
declare it in the .hpp?<br>
</blockquote><div><br>If the only place you&#39;re using the visitor is within the cpp file, then you just put it where it&#39;s being used. If you&#39;re going to be using the same visitor in multiple sources, it has to be in an hpp - unless you want to #include a cpp file, but that&#39;s not done very often.<br>
<br>As for the rest... it looks okay, but I only really gave a cursory glance. Property maps are (almost) always passed by value, so you don&#39;t need to worry about keeping references to them.<br> </div></div>Andrew Sutton<br>
<a href="mailto:andrew.n.sutton@gmail.com">andrew.n.sutton@gmail.com</a><br>

