diff options
Diffstat (limited to 'forms/source/xforms/xpathlib/xpathlib.hxx')
-rw-r--r-- | forms/source/xforms/xpathlib/xpathlib.hxx | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/forms/source/xforms/xpathlib/xpathlib.hxx b/forms/source/xforms/xpathlib/xpathlib.hxx deleted file mode 100644 index 2a74c1899..000000000 --- a/forms/source/xforms/xpathlib/xpathlib.hxx +++ /dev/null @@ -1,59 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ - - -#include <libxml/tree.h> -#include <libxml/xpath.h> -#include <libxml/xpathInternals.h> - -/* - entry functions for libxml xpath engine - -*/ - -/** - * xmlXPathParserContext: - * - * An XPath parser context. It contains pure parsing informations, - * an xmlXPathContext, and the stack of objects. - */ - -extern "C" -{ - -// XForms - -// XForms Core Functions -// boolean functions -void xforms_booleanFromStringFunction(xmlXPathParserContextPtr ctxt, int nargs); -void xforms_ifFunction(xmlXPathParserContextPtr ctxt, int nargs); - -// Number Functions -void xforms_avgFunction(xmlXPathParserContextPtr ctxt, int nargs); -void xforms_minFunction(xmlXPathParserContextPtr ctxt, int nargs); -void xforms_maxFunction(xmlXPathParserContextPtr ctxt, int nargs); -void xforms_countNonEmptyFunction(xmlXPathParserContextPtr ctxt, int nargs); -void xforms_indexFunction(xmlXPathParserContextPtr ctxt, int nargs); - -// String Functions -void xforms_propertyFunction(xmlXPathParserContextPtr ctxt, int nargs); -void xforms_versionFunction(xmlXPathParserContextPtr ctxt, int nargs); - -// Date and Time Functions -void xforms_nowFunction(xmlXPathParserContextPtr ctxt, int nargs); -void xforms_daysFromDateFunction(xmlXPathParserContextPtr ctxt, int nargs); -void xforms_secondsFromDateTimeFunction(xmlXPathParserContextPtr ctxt, int nargs); -void xforms_secondsFuction(xmlXPathParserContextPtr ctxt, int nargs); -void xforms_monthsFuction(xmlXPathParserContextPtr ctxt, int nargs); - -// Node-set Functions -void xforms_instanceFuction(xmlXPathParserContextPtr ctxt, int nargs); - -// Node-set Functions; XForms 1.1 -void xforms_currentFunction(xmlXPathParserContextPtr ctxt, int nargs); - -// --- lookup --- -xmlXPathFunction xforms_lookupFunc(void *ctxt, const xmlChar *name, const xmlChar *ns_uri); - -} - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |