From: Adam Dickmeiss Date: Mon, 19 Mar 2012 09:12:19 +0000 (+0100) Subject: template: Use full configure for Impl configure X-Git-Tag: v1.3.26~8 X-Git-Url: http://sru.miketaylor.org.uk/?a=commitdiff_plain;ds=sidebyside;h=bbe527cd451b7d260381d36a161b09ed0ae5c6ca;p=metaproxy-moved-to-github.git template: Use full configure for Impl configure --- diff --git a/src/filter_template.cpp b/src/filter_template.cpp index b24a4ff..c026184 100644 --- a/src/filter_template.cpp +++ b/src/filter_template.cpp @@ -35,7 +35,8 @@ namespace metaproxy_1 { Impl(); ~Impl(); void process(metaproxy_1::Package & package) const; - void configure(const xmlNode * ptr); + void configure(const xmlNode * ptr, bool test_only, + const char *path); private: int m_dummy; }; @@ -55,7 +56,7 @@ yf::Template::~Template() void yf::Template::configure(const xmlNode *xmlnode, bool test_only, const char *path) { - m_p->configure(xmlnode); + m_p->configure(xmlnode, test_only, path); } void yf::Template::process(mp::Package &package) const @@ -77,7 +78,8 @@ yf::Template::Impl::~Impl() { } -void yf::Template::Impl::configure(const xmlNode *xmlnode) +void yf::Template::Impl::configure(const xmlNode *xmlnode, bool test_only, + const char *path) { }