From bbe527cd451b7d260381d36a161b09ed0ae5c6ca Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Mon, 19 Mar 2012 10:12:19 +0100 Subject: [PATCH] template: Use full configure for Impl configure --- src/filter_template.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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) { } -- 1.7.10.4