$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: kevin_vanhorn_at_[hidden]
Date: 2001-04-03 13:05:21
--- In boost_at_y..., Jeremy Siek <jsiek_at_l...> wrote:
>
> Oops, forgot to update that. The property tag class needs to
> define num and kind members. The num needs to be a unique integer,
> and the kind needs to specify whether the property is for
> edge, vertex, or graph.
>
> struct flow_t {
> enum { num = 100 };
> typedef edge_property_tag kind;
> };
>
> struct capacity_t {
> enum { num = 101 };
> typedef edge_property_tag kind;
> };
So you don't intend BOOST_INSTALL_PROPERTY for general use?
(That's what I used to handle the problem.)