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;
};
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
{
}
-void yf::Template::Impl::configure(const xmlNode *xmlnode)
+void yf::Template::Impl::configure(const xmlNode *xmlnode, bool test_only,
+ const char *path)
{
}