From 47b574af2ed178501d3b96bc21e762c3c1e47b2f Mon Sep 17 00:00:00 2001 From: Dennis Schafroth Date: Mon, 29 Apr 2013 18:50:48 +0200 Subject: [PATCH] Fix: support new configure API --- example-module/filter_myfilter.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/example-module/filter_myfilter.cpp b/example-module/filter_myfilter.cpp index e321e15..96be870 100644 --- a/example-module/filter_myfilter.cpp +++ b/example-module/filter_myfilter.cpp @@ -30,7 +30,7 @@ namespace metaproxy_1 { class Filter_myfilter: public mp::filter::Base { public: void process(mp::Package & package) const; - void configure(const xmlNode *ptr, bool test_only); + void configure(const xmlNode *ptr, bool test_only, const char *path); }; } } @@ -63,9 +63,9 @@ void mp::filter::Filter_myfilter::process(mp::Package & package) const } } -void mp::filter::Filter_myfilter::configure(const xmlNode *ptr, bool test_only) +void mp::filter::Filter_myfilter::configure(const xmlNode *ptr, bool test_only, const char *path) { - yaz_log(YLOG_LOG, "myfilter::configure"); + yaz_log(YLOG_LOG, "myfilter::configure called with test_only %d and %s", test_only, path); for (ptr = ptr->children; ptr; ptr = ptr->next) { if (ptr->type != XML_ELEMENT_NODE) -- 1.7.10.4