$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Carlo Wood (carlo_at_[hidden])
Date: 2006-03-11 16:30:23
Parsing C++ is only possible (unambigiously) after
preprocessing it first, and when at any moment a full
list of every identifier is known: the parser needs
to know which types have been declared, which variables
exist etc, in the scope that it is parsing at that
moment. As a result, any C++ parser has to be almost
a compiler before it can work.
-- Carlo Wood <carlo_at_[hidden]>