$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Jeffrey Holle (jeffreyholle_at_[hidden])
Date: 2006-12-06 18:23:34
So true.
Thought brevity was more important.
#include <iostream>
#include <fstream>
#include <vector>
#include <map>
#include <exception>
#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/graphviz.hpp>
Plus, my graph definition:
typedef boost::adjacency_list<boost::vecS,
boost::vecS,
boost::bidirectionalS,
boost::property<boost::vertex_name_t,std::string> > Graph;
Jens Müller wrote:
> Jeffrey Holle schrieb:
>> Since no one replied to this message, I'll answer it myself. Yes, to
>> both questions!
>> This is the code that demonstrates:
>
> There are obviously includes missing in there.