2
0
mirror of https://github.com/boostorg/graph.git synced 2026-02-09 23:22:11 +00:00
Files
graph/test/graph_type.hpp
Jeremy Siek beae839fea more vc++ workarounds
[SVN r9951]
2001-04-23 23:23:21 +00:00

5 lines
329 B
C++

#include <boost/graph/adjacency_list.hpp>
typedef boost::adjacency_list<boost::vecS, boost::vecS, boost::bidirectionalS, boost::property<vertex_id_t, std::size_t>, boost::property<edge_id_t, std::size_t> > Graph;
typedef boost::property<vertex_id_t, std::size_t> VertexId;
typedef boost::property<edge_id_t, std::size_t> EdgeID;