$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Marcin Kalicinski (kalita_at_[hidden])
Date: 2006-04-21 17:28:55
> I mean that only one property (which of course could contain others) could
> be loaded (or saved) at a time. Not the whole tree. For instance, if my
> tree
> corresponds to a windows registry key, it is desirable to load or save a
> single value without loading or saving all the values in the key.
I think this is rather simple, there are no special docs needed to cover
that:
ptree pt;
write_registry(..., pt.get_child("whatever.child.you.want"));
Marcin