Filter virt_db allows multiple databases.. Each of these is
[metaproxy-moved-to-github.git] / src / filter_log.hpp
index c589e34..b6238b5 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: filter_log.hpp,v 1.4 2005-10-19 21:44:01 marc Exp $
+/* $Id: filter_log.hpp,v 1.13 2006-01-11 08:53:52 adam Exp $
    Copyright (c) 2005, Index Data.
 
 %LICENSE%
@@ -7,21 +7,29 @@
 #ifndef FILTER_LOG_HPP
 #define FILTER_LOG_HPP
 
-#include <stdexcept>
-#include <vector>
+#include <boost/scoped_ptr.hpp>
 
 #include "filter.hpp"
 
 namespace yp2 {
     namespace filter {
         class Log : public Base {
+            class Rep;
+            boost::scoped_ptr<Rep> m_p;
         public:
             Log();
+            Log(const std::string &x);
+            ~Log();
             void process(yp2::Package & package) const;
+            void configure(const xmlNode * ptr);
         };
     }
 }
 
+extern "C" {
+    extern struct yp2_filter_struct yp2_filter_log;
+}
+
 #endif
 /*
  * Local variables: