// file : xsde/cxx/parser/expat/xml-error.cxx // author : Boris Kolpackov // copyright : Copyright (c) 2005-2009 Code Synthesis Tools CC // license : GNU GPL v2 + exceptions; see accompanying LICENSE file #include namespace xsde { namespace cxx { namespace parser { namespace expat { const char* xml_error_text (xml_error e) { return XML_ErrorString (e); } } } } }