Add path to configure method of filter.
[metaproxy-moved-to-github.git] / src / filter_dl.cpp
index 5c2738f..1a83526 100644 (file)
@@ -28,6 +28,8 @@ namespace metaproxy_1 {
         class Filter_dl: public mp::filter::Base {
         public:
             void process(mp::Package & package) const;
+            void configure(const xmlNode * ptr, bool test_only,
+                           const char *path);
         };
     }
 }
@@ -36,6 +38,12 @@ void mp::filter::Filter_dl::process(mp::Package & package) const
 {
 }
 
+void mp::filter::Filter_dl::configure(const xmlNode * ptr, bool test_only,
+                                      const char *path)
+{
+    mp::xml::check_empty(ptr);
+}
+
 static mp::filter::Base* filter_creator()
 {
     return new mp::filter::Filter_dl;