summaryrefslogtreecommitdiff
path: root/project2/xml/xpathRows.h
diff options
context:
space:
mode:
Diffstat (limited to 'project2/xml/xpathRows.h')
-rw-r--r--project2/xml/xpathRows.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/project2/xml/xpathRows.h b/project2/xml/xpathRows.h
index 47d34eb..03929ab 100644
--- a/project2/xml/xpathRows.h
+++ b/project2/xml/xpathRows.h
@@ -17,7 +17,7 @@ class XPathRows : public RowSet, XmlDocumentCache, VariableCurlHelper {
XPathRows(ScriptNodePtr p);
~XPathRows();
- void execute(const Glib::ustring &, const RowProcessor *) const;
+ void execute(const Glib::ustring &, const RowProcessorCallback &, ExecContext *) const;
private:
class FilterViewColumn : public Column {
@@ -40,9 +40,9 @@ class XPathRows : public RowSet, XmlDocumentCache, VariableCurlHelper {
typedef std::map<const Glib::ustring, FilterViewPtr> FilterViews;
FilterViews fvs;
- virtual CurlPtr newCurl() const;
- virtual bool asHtml() const;
- virtual bool withWarnings() const;
+ virtual CurlPtr newCurl(ExecContext *) const;
+ virtual bool asHtml(ExecContext *) const;
+ virtual bool withWarnings(ExecContext *) const;
typedef std::map<const Glib::ustring, Glib::ustring> Namespaces;
Namespaces namespaces;