Put proper reference IDs in response PDUs properly.
[metaproxy-moved-to-github.git] / src / filter_virt_db.hpp
index d5065b5..00cb5b4 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: filter_virt_db.hpp,v 1.6 2006-01-04 11:55:32 adam 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,11 +18,18 @@ 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;
         };