#include "../config/pathan_config.h" /* * Copyright (c) 2001, DecisionSoft Limited All rights reserved. * Please see LICENSE.TXT for more information. */ #include #include #include ConstantFoldingFunction::ConstantFoldingFunction(const XMLCh* name, unsigned int argsFrom, unsigned int argsTo, const char* paramDecl, const VectorOfDataItems &args, XPath2MemoryManager* memMgr) : DataItemFunction(name, argsFrom, argsTo, paramDecl, args, memMgr) { } ConstantFoldingFunction::~ConstantFoldingFunction() { } DataItem* ConstantFoldingFunction::staticResolution(StaticContext *context, StaticResolutionContext *src) { return resolveDataItems(_args, context, src, true); }