in reply to need regex to parse c++ functions

Might I recommend the cdecl tool for your prototype parsing? Or you might want to look at C::DynaLib and Inline::CPP and see how they do it.
HTH

_________
broquaint

Replies are listed 'Best First'.
Re: Re: need regex to parse c++ functions
by Chief of Chaos (Friar) on Nov 28, 2002 at 07:51 UTC
    Thanks,

    Inline::CPP::Grammar holds the gramma for the cpp function parsing, this can be used in Parse::RecDescent.

    Great help.