$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Eoin (eoin-keyword-boostusers.07781a_at_[hidden])
Date: 2006-08-13 18:11:19
> Parser(ErrorWriterPtr writer)
> : writer_(writer)
> {
> }
>
> What is the equivalent to:
>
> Parser testParser(0);
I believe that this constructor would work for you.
Parser(ErrorWriter* writer)
: writer_(writer)
{
}
I hope that is helpful. If not I'm sure someone else will have some
suggestions.
Kind regards, Eoin.