$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-users] [spirit] first steps
From: Igor R (boost.lists_at_[hidden])
Date: 2010-02-18 12:59:26
Hello,
How to use the string parser?
I tried this way:
std::string s1;
bool r = qi::phrase_parse(first, last,
(
string[ref(s1) = _1]
)
,
space);
But it doesn't compile.
Thanks.