
"Hartmut Kaiser" <hartmut.kaiser@gmail.com> wrote in message news:42897ed7.487b86c2.680f.ffffcc97@mx.gmail.com... | | Thorsten Ottosen wrote: | > I still can't get it to work. Apparently the template | > argument for rule is a scanner...so we cannot pass an | > iterator there, right? | > | > This should be a pretty simple thing...what should I do to | > fix the example? | | Doh! You are right, that's my fault, sorry. | | I never use rule's with Spirits's API functions (probably for this reason). | I'd suggest to don't use it either. The better way is to switch to grammar's | these are scanner agnostic. | | But for the curious souls out there here is the way to write it with rule's | (for the default use case): | | rule<scanner<std::string::iterator, scanner_policies<> > > r = ...; I'm using grammars now. Thanks. -Thorsten