2 * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
3 * Copyright (C) 2011 - Scilab Enterprises - Calixte DENIZET
5 * This file must be used under the terms of the CeCILL.
6 * This source file is licensed as described in the file COPYING, which
7 * you should have received as part of this distribution. The terms
8 * are also available at
9 * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
13 #include "extraction.hpp"
15 using namespace org_modules_xml;
17 int sci_percent_XMLDoc_e(char *fname, unsigned long fname_len)
19 return sci_extraction < org_modules_xml::XMLDocument > (fname, pvApiCtx);
22 /*--------------------------------------------------------------------------*/
23 int sci_percent_XMLElem_e(char *fname, unsigned long fname_len)
25 return sci_extraction < XMLElement > (fname, pvApiCtx);
28 /*--------------------------------------------------------------------------*/
29 int sci_percent_XMLNs_e(char *fname, unsigned long fname_len)
31 return sci_extraction < XMLNs > (fname, pvApiCtx);
34 /*--------------------------------------------------------------------------*/