X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;ds=sidebyside;f=src%2Ffilter_template.cpp;h=c026184e7cb988e2b8223b21c392882872aed3ea;hb=d0199347137c1614ee18af04fb1e52ff4a613cba;hp=b24a4ffcbc548805d146ef9f5784eafbf78a1430;hpb=50597d2f7d3607e91c94601eb8eb495d73be3eae;p=metaproxy-moved-to-github.git 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) { }