Enabled docdir setting again. Autotools does not set it on FreeBSD
[metaproxy-moved-to-github.git] / src / filter_sru_to_z3950.hpp
index 334601b..0cc642d 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: filter_sru_to_z3950.hpp,v 1.1 2006-09-13 10:43:24 marc Exp $
+/* $Id: filter_sru_to_z3950.hpp,v 1.3 2006-09-29 09:48:36 marc Exp $
    Copyright (c) 2005-2006, Index Data.
 
    See the LICENSE file for details
 namespace metaproxy_1 {
     namespace filter {
         class SRUtoZ3950 : public Base {
-            class Rep;
-            boost::scoped_ptr<Rep> m_p;
+            class Impl;
+            boost::scoped_ptr<Impl> m_p;
         public:
             SRUtoZ3950();
             ~SRUtoZ3950();
+            void configure(const xmlNode *xmlnode);
             void process(metaproxy_1::Package & package) const;
         };
     }