1 // Copyright (C) 2005 Free Software Foundation, Inc.
2 // Contributed by Nathan Sidwell 27 May 2005 <nathan@codesourcery.com>
4 // Origin:Andrew Pinski pinskia@gcc.gnu.org
5 // PR 21455 bogus error with pointer to member of incomplete
9 typedef bool (XMLFile::*ParserFunctionPtr)();
13 ParserFunctionPtr getPreFunc() const { return preFunc; }
14 ParserFunctionPtr getPostFunc() const { return postFunc; }
15 ParserFunctionPtr preFunc;
16 ParserFunctionPtr postFunc;