Put proper reference IDs in response PDUs properly.
[metaproxy-moved-to-github.git] / src / filter_virt_db.hpp
index 8c514f6..00cb5b4 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: filter_virt_db.hpp,v 1.4 2005-10-31 09:40:18 marc Exp $
+/* $Id: filter_virt_db.hpp,v 1.10 2006-01-13 15:09:35 adam Exp $
    Copyright (c) 2005, Index Data.
 
 %LICENSE%
@@ -10,6 +10,7 @@
 #include <stdexcept>
 #include <list>
 #include <boost/scoped_ptr.hpp>
+#include <boost/shared_ptr.hpp>
 
 #include "filter.hpp"
 
@@ -17,17 +18,28 @@ namespace yp2 {
     namespace filter {
         class Virt_db : public Base {
             class Rep;
+            class Frontend;
+            class Map;
+            class Set;
+            class Backend;
+            typedef boost::shared_ptr<Virt_db::Backend> BackendPtr;
         public:
             ~Virt_db();
             Virt_db();
             void process(yp2::Package & package) const;
-            void add_map_db2vhost(std::string db, std::string vhost);
+            void configure(const xmlNode * ptr);
+            void add_map_db2vhost(std::string db, std::string vhost,
+                                  std::string route);
         private:
             boost::scoped_ptr<Rep> m_p;
         };
     }
 }
 
+extern "C" {
+    extern struct yp2_filter_struct yp2_filter_virt_db;
+}
+
 #endif
 /*
  * Local variables: