Hello, here in components some other pieces to delete. Again some small parts in case I was to generous in deleting. regards >From 1535d5e774e7d1ef08696344be8fcdfc6828f2c3 Mon Sep 17 00:00:00 2001 From: pjacquod <pjacquod@alumni.ethz.ch> Date: Sun, 21 Nov 2010 12:10:15 +0100 Subject: [PATCH 1/5] remove dead code components workben
60 lines
1.8 KiB
C++
60 lines
1.8 KiB
C++
/* -*- 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: */
|